:root {
  color-scheme: light;
  --ink: #2a1745;
  --muted: #71647f;
  --paper: #fff8f8;
  --white: #ffffff;
  --pink: #ec3f7f;
  --pink-soft: #ffe7ef;
  --purple: #6e42a6;
  --purple-deep: #3b1d62;
  --teal: #11a7b8;
  --gold: #d8ad4f;
  --cream: #fff3dd;
  --line: rgba(61, 29, 98, 0.14);
  --shadow: 0 24px 70px rgba(59, 29, 98, 0.14);
  --soft-shadow: 0 14px 36px rgba(59, 29, 98, 0.09);
  --radius: 8px;
  --container: min(1140px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rubik", "Varela Round", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 6%, rgba(236, 63, 127, 0.14), transparent 22rem),
    radial-gradient(circle at 86% 10%, rgba(17, 167, 184, 0.14), transparent 19rem),
    linear-gradient(180deg, #fff7fb 0%, #fffaf7 42%, #ffffff 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--purple-deep);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-band {
  position: relative;
  padding: clamp(58px, 8vw, 94px) 0;
}

.section-flow::before {
  content: "";
  position: absolute;
  top: -28px;
  right: 50%;
  width: min(560px, 78vw);
  height: 56px;
  transform: translateX(50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(236, 63, 127, 0.18), transparent 24%),
    radial-gradient(circle at 49% 50%, rgba(216, 173, 79, 0.18), transparent 22%),
    radial-gradient(circle at 78% 50%, rgba(17, 167, 184, 0.16), transparent 24%);
  filter: blur(4px);
  opacity: 0.88;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 24px));
  min-height: 84px;
  margin: 12px auto 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(59, 29, 98, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: clamp(62px, 9vw, 78px);
  max-height: 78px;
  object-fit: contain;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--pink);
  transition: width 180ms ease;
}

.main-nav a:hover {
  color: var(--pink);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta,
.btn,
.package-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 10px 14px;
  background: var(--purple-deep);
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 12px 28px rgba(59, 29, 98, 0.16);
}

.btn {
  min-width: 188px;
  padding: 13px 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #ff75a4);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(236, 63, 127, 0.25);
}

.btn-soft {
  border: 1px solid rgba(110, 66, 166, 0.2);
  background: rgba(255, 255, 255, 0.74);
  color: var(--purple-deep);
}

.btn:hover,
.header-cta:hover,
.package-card a:hover {
  transform: translateY(-2px);
}

.wa-icon {
  display: block;
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  align-items: center;
  padding-top: clamp(36px, 5vw, 66px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
}

.hero-orbit span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.58;
  animation: drift 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-orbit span:nth-child(1) {
  top: 18%;
  right: 7%;
  width: 56px;
  aspect-ratio: 0.82;
  background: linear-gradient(145deg, #ff8db1, var(--pink));
}

.hero-orbit span:nth-child(2) {
  top: 32%;
  left: 8%;
  width: 72px;
  aspect-ratio: 0.82;
  background: linear-gradient(145deg, #9ee9f1, var(--teal));
  animation-delay: -2.4s;
}

.hero-orbit span:nth-child(3) {
  bottom: 18%;
  left: 18%;
  width: 44px;
  aspect-ratio: 0.82;
  background: linear-gradient(145deg, #ffe19a, var(--gold));
  animation-delay: -4.8s;
}

.hero-orbit span::after {
  content: "";
  position: absolute;
  top: 94%;
  left: 50%;
  width: 1px;
  height: 78px;
  background: rgba(59, 29, 98, 0.2);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid rgba(236, 63, 127, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 231, 239, 0.72);
  color: var(--pink);
  font-size: 0.86rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 6.6vw, 4.2rem);
  font-weight: 800;
}

h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 5.5vw, 3.15rem);
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.1rem, 2.6vw, 1.28rem);
  line-height: 1.25;
}

.hero-lead,
.section-heading p,
.cta-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.18rem);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--purple-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 330px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 4% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.94), rgba(255, 231, 239, 0.7) 54%, transparent 74%);
  filter: blur(7px);
}

.hero-visual img {
  width: min(100%, 550px);
  filter: drop-shadow(0 26px 38px rgba(59, 29, 98, 0.2));
  animation: floatHero 5.8s ease-in-out infinite;
}

.hero-note {
  position: absolute;
  right: 2%;
  bottom: 5%;
  width: min(210px, 46vw);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.hero-note small,
.hero-note strong {
  display: block;
}

.hero-note small {
  color: var(--muted);
  font-weight: 800;
}

.hero-note strong {
  color: var(--pink);
  font-size: 1.55rem;
  line-height: 1.1;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.products-section {
  background: linear-gradient(180deg, #ffffff, #fff7fb);
}

.products-grid {
  display: grid;
  gap: 16px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  padding: 10px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(59, 29, 98, 0.13);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.product-card div:not(.package-head) {
  padding: 0 8px;
}

.product-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 800;
}

.product-card p,
.package-card p,
.service-card p,
.benefit-card p,
.faq-list p,
.fine-print {
  color: var(--muted);
}

.product-card strong {
  display: inline-flex;
  width: fit-content;
  margin: 10px 8px 0;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--purple-deep);
  font-size: 0.9rem;
}

.packages-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(17, 167, 184, 0.1), transparent 22rem),
    linear-gradient(180deg, #fff7fb, #ffffff);
}

.packages-grid {
  display: grid;
  gap: 16px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--pink), var(--gold));
}

.package-card.featured {
  border-color: rgba(236, 63, 127, 0.32);
  background: linear-gradient(180deg, #ffffff, #fff0f6);
  box-shadow: 0 28px 76px rgba(236, 63, 127, 0.16);
}

.ribbon {
  position: absolute;
  top: 17px;
  left: 17px;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--pink);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.package-head {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding-left: 76px;
}

.package-head span {
  font-size: 1.2rem;
  font-weight: 800;
}

.package-head strong {
  color: var(--pink);
  font-size: clamp(2rem, 7vw, 2.75rem);
  line-height: 1;
}

.package-card ul,
.cta-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.package-card li,
.cta-card li {
  position: relative;
  padding-right: 34px;
  color: var(--ink);
  font-weight: 700;
}

.package-card li::before,
.cta-card li::before {
  content: "";
  position: absolute;
  top: 0.18em;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 12.3 10.2 16.4 18.5 7.8' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}

.package-card a {
  width: 100%;
  margin-top: auto;
  background: var(--purple-deep);
  color: var(--white);
}

.tracks-section {
  background: #ffffff;
}

.service-grid {
  display: grid;
  gap: 16px;
}

.rental-pricing {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 0.86fr));
  gap: 1px;
  background: rgba(61, 29, 98, 0.12);
}

.pricing-row span {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font-weight: 800;
}

.pricing-row span:not(:first-child) {
  justify-content: center;
  color: var(--purple);
  text-align: center;
}

.pricing-head span {
  min-height: 58px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white);
}

.pricing-head span:not(:first-child) {
  color: var(--white);
}

.pricing-row:not(.pricing-head) span:nth-child(4) {
  color: var(--pink);
}

.pricing-notes {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.pricing-notes p {
  margin: 0;
  padding: 13px 16px;
  border: 1px solid rgba(17, 167, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(223, 248, 239, 0.72);
  color: #21644f;
  font-weight: 700;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 248, 0.92)),
    #ffffff;
  box-shadow: var(--soft-shadow);
}

.service-card.vip {
  background:
    linear-gradient(135deg, rgba(59, 29, 98, 0.96), rgba(110, 66, 166, 0.92)),
    var(--purple-deep);
  color: var(--white);
}

.service-card.vip p,
.service-card.vip dt {
  color: rgba(255, 255, 255, 0.76);
}

.service-card.vip dd {
  color: var(--white);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  font-weight: 800;
}

.service-card.vip .service-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.service-card dl {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
}

.service-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(61, 29, 98, 0.1);
}

.service-card.vip dl div {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.service-card dt,
.service-card dd {
  margin: 0;
}

.service-card dt {
  color: var(--muted);
  font-weight: 600;
}

.service-card dd {
  color: var(--purple);
  font-weight: 800;
  white-space: nowrap;
}

.fine-print {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(17, 167, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(223, 248, 239, 0.68);
  font-weight: 700;
}

.benefits-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(236, 63, 127, 0.12), transparent 20rem),
    radial-gradient(circle at 90% 76%, rgba(216, 173, 79, 0.16), transparent 19rem),
    linear-gradient(135deg, #fff7fb, #f7fffc);
}

.benefits-layout {
  display: grid;
  gap: 28px;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-card {
  position: relative;
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  font-weight: 800;
}

.faq-section {
  background: linear-gradient(180deg, #ffffff, #fff8f8);
}

.faq-layout {
  display: grid;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(59, 29, 98, 0.06);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: left;
  color: var(--pink);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.final-cta {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.8), transparent 14rem),
    linear-gradient(135deg, #fff2f7, #f4fbff);
}

.cta-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 6vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 251, 0.88)),
    radial-gradient(circle at 12% 24%, rgba(216, 173, 79, 0.18), transparent 17rem);
  box-shadow: var(--shadow);
}

.cta-copy h2 {
  max-width: 720px;
}

.cta-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.cta-card .btn {
  width: 100%;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
  color: var(--purple-deep);
  font-weight: 800;
}

.smart-whatsapp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(59, 29, 98, 0.08);
}

.smart-whatsapp-form label {
  display: grid;
  gap: 6px;
}

.smart-whatsapp-form span {
  color: var(--purple-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.smart-whatsapp-form input,
.smart-whatsapp-form select,
.smart-whatsapp-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(61, 29, 98, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.smart-whatsapp-form textarea {
  resize: vertical;
  min-height: 92px;
}

.smart-whatsapp-form input:focus,
.smart-whatsapp-form select:focus,
.smart-whatsapp-form textarea:focus {
  border-color: rgba(236, 63, 127, 0.62);
  box-shadow: 0 0 0 3px rgba(236, 63, 127, 0.12);
}

.wide-field {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 38px 0 96px;
  background:
    radial-gradient(circle at 14% 20%, rgba(236, 63, 127, 0.18), transparent 18rem),
    linear-gradient(135deg, #2b1548, var(--purple-deep));
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 18px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 128px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.footer-grid a {
  opacity: 0.92;
  font-weight: 700;
}

.alpha-credit {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.alpha-credit:hover {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
  font-size: 1.34rem;
}

.floating-whatsapp .wa-icon {
  width: 32px;
  height: 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease calc(var(--i, 0) * 70ms),
    transform 560ms ease calc(var(--i, 0) * 70ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -18px, 0);
  }
}

@media (min-width: 680px) {
  .products-grid,
  .packages-grid,
  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
    justify-items: start;
    text-align: start;
  }
}

@media (min-width: 920px) {
  .main-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-layout,
  .faq-layout,
  .cta-panel {
    grid-template-columns: 0.88fr 1.12fr;
  }
}

@media (min-width: 1180px) {
  .products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .packages-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 22px, 1140px);
  }

  .site-header {
    width: calc(100% - 16px);
    gap: 8px;
  }

  .brand img {
    width: auto;
    height: 60px;
    max-height: 60px;
  }

  .header-cta {
    min-width: 44px;
    padding-inline: 12px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.05rem, 10.2vw, 2.65rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .product-card {
    grid-template-columns: 112px 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 10px;
  }

  .product-card img {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .product-card strong {
    margin: 0;
  }

  .rental-pricing {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .pricing-head {
    display: none;
  }

  .pricing-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
  }

  .pricing-row span {
    justify-content: space-between;
    min-height: 42px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(61, 29, 98, 0.1);
    background: transparent;
  }

  .pricing-row span:first-child {
    color: var(--pink);
    font-size: 1.08rem;
  }

  .pricing-row span:not(:first-child) {
    justify-content: space-between;
    text-align: start;
  }

  .pricing-row span:not(:first-child)::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 700;
  }

  .pricing-row span:last-child {
    border-bottom: 0;
  }

  .smart-whatsapp-form {
    grid-template-columns: 1fr;
  }

  .package-head {
    padding-left: 0;
  }

  .ribbon {
    position: static;
    width: fit-content;
    margin-bottom: 12px;
  }

  .floating-whatsapp {
    width: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
