/* =========================================================
   REGRESA A TI — recuperatuautoestima.com
   Sistema visual premium · Zuzana Sai
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Colores alto contraste */
  --zs-fucsia: #E71487;
  --zs-fucsia-hover: #C8126F;
  --zs-fucsia-light: #FCE4F0;
  --zs-morado: #9F2077;
  --zs-morado-deep: #7A1859;
  --zs-gris-oscuro: #333333;
  --zs-navy: #1B2A4E;

  /* Colores bajo contraste */
  --zs-dorado: #DBCB95;
  --zs-crema-medio: #ECDDB5;
  --zs-crema-claro: #F2EBDF;
  --zs-blanco: #FFFFFF;

  /* Neutrales */
  --zs-gris-medio: #6B6B6B;
  --zs-gris-suave: #E5E5E5;

  /* Tipografía */
  --zs-font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --zs-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Escala premium ampliada */
  --text-display-xl: clamp(2.75rem, 6vw + 1rem, 6rem);   /* hero */
  --text-display-lg: clamp(2.25rem, 4.5vw + 0.5rem, 4.5rem); /* pivote, CTA final */
  --text-display-md: clamp(1.875rem, 3vw + 0.75rem, 3.5rem);
  --text-display-sm: clamp(1.5rem, 2vw + 0.75rem, 2.5rem);
  --text-body-lg: clamp(1.0625rem, 0.4vw + 1rem, 1.25rem);
  --text-body-md: 1rem;
  --text-body-sm: 0.9375rem;
  --text-eyebrow: 0.8125rem;

  /* Tracking */
  --tr-tight: -0.015em;
  --tr-snug: -0.008em;
  --tr-normal: 0;
  --tr-wide: 0.08em;
  --tr-wider: 0.18em;

  /* Espaciado */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --section-y: clamp(5rem, 10vw, 9rem);
  --container-x: clamp(1.25rem, 5vw, 2rem);
  --container-max: 1200px;
  --content-max: 720px;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.5rem;
  --radius-pill: 9999px;

  /* Sombras tintadas (premium signature) */
  --shadow-soft: 0 1px 2px rgba(159, 32, 119, 0.04), 0 8px 24px rgba(159, 32, 119, 0.08);
  --shadow-card-hover: 0 4px 8px rgba(159, 32, 119, 0.06), 0 16px 40px rgba(159, 32, 119, 0.14);
  --shadow-cta: 0 4px 14px rgba(231, 20, 135, 0.28), 0 1px 2px rgba(231, 20, 135, 0.10);
  --shadow-cta-hover: 0 10px 28px rgba(231, 20, 135, 0.38), 0 2px 4px rgba(231, 20, 135, 0.16);
  --shadow-cta-light: 0 8px 28px rgba(0, 0, 0, 0.18);

  /* Curvas y duraciones */
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-snap: cubic-bezier(0.34, 1.4, 0.64, 1);
  --dur-fast: 200ms;
  --dur-medium: 380ms;
  --dur-slow: 700ms;
}

/* ---------- 2. RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  background: var(--zs-navy);
  overscroll-behavior: none;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--zs-font-body);
  font-size: var(--text-body-md);
  line-height: 1.6;
  color: var(--zs-gris-oscuro);
  background: var(--zs-crema-claro);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  overscroll-behavior: none;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--zs-fucsia);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-x);
}

.container--narrow {
  max-width: var(--content-max);
}

/* ---------- 4. TIPOGRAFÍA ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--zs-font-body);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--zs-fucsia);
  margin: 0 0 var(--space-6);
}

.eyebrow--center {
  display: block;
  text-align: center;
}

/* ---------- 5. BOTONES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--zs-font-body);
  font-size: var(--text-body-md);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 1.125rem 2rem;
  transition: transform var(--dur-fast) var(--ease-out-soft),
              box-shadow var(--dur-fast) var(--ease-out-soft),
              background var(--dur-fast) var(--ease-out-soft);
  will-change: transform;
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.0625rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--zs-fucsia) 0%, var(--zs-morado) 100%);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
}

.btn--primary:active {
  transform: translateY(0);
  transition-duration: 80ms;
}

.btn--on-dark {
  background: var(--zs-blanco);
  color: var(--zs-morado-deep);
  box-shadow: var(--shadow-cta-light);
}

.btn--on-dark:hover,
.btn--on-dark:focus-visible {
  transform: translateY(-2px);
  background: var(--zs-crema-claro);
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-out-soft);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ---------- 6. NAV (legacy, retirado) ---------- */

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding-block: 0;
  background: var(--zs-crema-claro);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 45% at 15% 20%,
      rgba(159, 32, 119, 0.08) 0%,
      transparent 60%),
    radial-gradient(ellipse 55% 60% at 88% 80%,
      rgba(27, 42, 78, 0.06) 0%,
      transparent 65%),
    radial-gradient(ellipse 65% 55% at 50% 65%,
      rgba(219, 203, 149, 0.32) 0%,
      transparent 70%);
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: multiply;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-block: 40px;
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    padding-block: 80px;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.hero__product {
  font-family: var(--zs-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.2vw + 0.75rem, 1.75rem);
  line-height: 1.1;
  letter-spacing: var(--tr-snug);
  color: var(--zs-fucsia);
  margin: 0 0 var(--space-4);
  position: relative;
  padding-left: clamp(2.25rem, 3.5vw, 3rem);
}

.hero__product::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: clamp(1.5rem, 2.5vw, 2.25rem);
  height: 1px;
  background: linear-gradient(90deg, var(--zs-fucsia), var(--zs-dorado));
}

.hero__title {
  font-family: var(--zs-font-display);
  font-size: clamp(2rem, 2.8vw + 1rem, 3.625rem);
  font-weight: 500;
  letter-spacing: var(--tr-tight);
  line-height: 1.08;
  color: var(--zs-navy);
  margin: 0 0 var(--space-6);
  max-width: 20ch;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--zs-morado-deep);
  display: block;
  margin-top: 0.1em;
}

/* Hero visual / foto */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 2px 6px rgba(159, 32, 119, 0.10),
    0 28px 60px rgba(159, 32, 119, 0.20),
    0 14px 32px rgba(27, 42, 78, 0.12);
  isolation: isolate;
  transform: translateZ(0);
}

.hero__photo iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(244, 233, 211, 0) 60%,
    rgba(159, 32, 119, 0.08) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero__photo-glow {
  position: absolute;
  z-index: -1;
  top: -8%;
  right: -10%;
  bottom: -8%;
  left: -10%;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%,
      rgba(231, 20, 135, 0.20) 0%,
      transparent 70%),
    radial-gradient(ellipse 60% 60% at 70% 70%,
      rgba(219, 203, 149, 0.30) 0%,
      transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

@media (max-width: 959px) {
  .hero__photo {
    max-width: 300px;
    margin-inline: auto;
  }
}

.hero__sub {
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.125rem);
  line-height: 1.55;
  color: var(--zs-gris-oscuro);
  max-width: 50ch;
  margin: 0 0 var(--space-8);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.hero__reassurance,
.final__reassurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-body-sm);
  color: var(--zs-gris-medio);
  margin: 0;
}

.hero__note {
  grid-column: 1 / -1;
  margin: var(--space-4) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(159, 32, 119, 0.25);
  font-size: clamp(1.0625rem, 0.3vw + 1rem, 1.1875rem);
  line-height: 1.65;
  color: var(--zs-morado-deep);
  max-width: 75ch;
  text-align: center;
}

.dot {
  color: var(--zs-dorado);
  font-weight: 700;
}

/* ---------- 8. SECTIONS BASE ---------- */
section {
  position: relative;
  padding-block: var(--section-y);
  isolation: isolate;
}

/* ---------- 9. MIRROR (DOLOR) ---------- */
.mirror {
  background: var(--zs-crema-medio);
  text-align: center;
}

.mirror__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%,
      rgba(219, 203, 149, 0.5) 0%,
      transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%,
      rgba(159, 32, 119, 0.05) 0%,
      transparent 70%);
}

.mirror .container {
  position: relative;
  z-index: 1;
}

.mirror__heading {
  font-family: var(--zs-font-display);
  font-size: var(--text-display-md);
  font-weight: 600;
  letter-spacing: var(--tr-snug);
  line-height: 1.15;
  color: var(--zs-navy);
  margin: 0 0 var(--space-12);
  max-width: 22ch;
  margin-inline: auto;
}

.mirror__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: 0 auto var(--space-16);
  text-align: left;
  max-width: 760px;
}

.mirror__item {
  position: relative;
  display: flex;
  gap: var(--space-6);
  align-items: center;
  padding: clamp(1.5rem, 2vw + 0.75rem, 2rem) clamp(1.5rem, 2vw + 0.75rem, 2.25rem);
  background: var(--zs-blanco);
  border: 1px solid rgba(219, 203, 149, 0.6);
  border-left: 3px solid var(--zs-dorado);
  border-radius: var(--radius-md);
  box-shadow:
    0 1px 2px rgba(27, 42, 78, 0.04),
    0 12px 28px rgba(27, 42, 78, 0.06);
  transition: transform var(--dur-medium) var(--ease-out-soft),
              box-shadow var(--dur-medium) var(--ease-out-soft),
              border-left-color var(--dur-medium) var(--ease-out-soft);
}

.mirror__item:hover {
  transform: translateX(4px);
  border-left-color: var(--zs-morado);
  box-shadow:
    0 2px 6px rgba(27, 42, 78, 0.06),
    0 20px 44px rgba(27, 42, 78, 0.10);
}

.mirror__mark {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  width: 1.2em;
  height: 1.2em;
  font-family: var(--zs-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.25rem, 1.5vw + 1.25rem, 3rem);
  line-height: 0.9;
  color: var(--zs-dorado);
  margin-top: 0.1em;
}

.mirror__item p {
  margin: 0;
  font-family: var(--zs-font-body);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.0625rem, 0.5vw + 0.95rem, 1.25rem);
  line-height: 1.5;
  color: var(--zs-navy);
  letter-spacing: -0.005em;
}

.mirror__close {
  font-size: var(--text-body-lg);
  line-height: 1.65;
  color: var(--zs-morado-deep);
  max-width: 56ch;
  margin: 0 auto;
  font-weight: 500;
}

/* ---------- 10. PIVOT ---------- */
.pivot {
  background: linear-gradient(135deg, var(--zs-navy) 0%, var(--zs-morado-deep) 55%, var(--zs-morado) 100%);
  color: var(--zs-crema-claro);
  text-align: center;
  padding-block: clamp(7rem, 14vw, 12rem);
  overflow: hidden;
}

.pivot__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%,
      rgba(219, 203, 149, 0.22) 0%,
      transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%,
      rgba(255, 255, 255, 0.10) 0%,
      transparent 60%);
}

.pivot .container {
  position: relative;
  z-index: 1;
}

.pivot__heading {
  font-family: var(--zs-font-display);
  font-size: var(--text-display-lg);
  font-weight: 500;
  letter-spacing: var(--tr-tight);
  line-height: 1.1;
  color: var(--zs-blanco);
  margin: 0 0 var(--space-8);
}

.pivot__heading em {
  font-style: italic;
  display: block;
  color: var(--zs-dorado);
  margin-top: 0.2em;
}

.pivot__body {
  font-size: var(--text-body-lg);
  line-height: 1.7;
  color: rgba(242, 235, 223, 0.9);
  max-width: 52ch;
  margin: 0 auto;
}

.pivot__list {
  list-style: none;
  margin: var(--space-8) auto;
  padding: 0;
  max-width: 40ch;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: center;
}

.pivot__list li {
  font-family: var(--zs-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.125rem, 1vw + 0.85rem, 1.5rem);
  line-height: 1.35;
  color: var(--zs-dorado);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(219, 203, 149, 0.22);
}

.pivot__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pivot__close {
  font-size: var(--text-body-lg);
  line-height: 1.7;
  color: var(--zs-blanco);
  font-weight: 500;
  max-width: 52ch;
  margin: 0 auto;
}

/* ---------- 11. WHAT (Qué es) ---------- */
.what {
  background: #FBF6EA;
  border-top: 1px solid rgba(219, 203, 149, 0.4);
}

.what__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%,
      rgba(219, 203, 149, 0.28) 0%,
      transparent 60%);
}

.what__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .what__grid {
    grid-template-columns: 5fr 6fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: stretch;
  }
  .what__left-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
  }
}

.what__left-inner {
  will-change: transform;
}

.what__heading {
  font-family: var(--zs-font-display);
  font-size: var(--text-display-md);
  font-weight: 500;
  letter-spacing: var(--tr-snug);
  line-height: 1.1;
  color: var(--zs-navy);
  margin: 0;
  max-width: 14ch;
}

.what__lead {
  font-size: var(--text-body-lg);
  line-height: 1.65;
  color: var(--zs-gris-oscuro);
  margin: 0 0 var(--space-12);
  max-width: 58ch;
}

.what__lead strong {
  font-weight: 600;
  color: var(--zs-navy);
}

.what__points {
  --rail-pad: clamp(2.25rem, 3vw + 0.5rem, 3rem);
  --rail-pos: 0.6rem;
  --dot-size: 11px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  padding-left: var(--rail-pad);
  list-style: none;
}

/* Rail base (carril tenue) */
.what__points::before {
  content: "";
  position: absolute;
  left: calc(var(--rail-pos) - 1px);
  top: 0.55em;
  bottom: 0.55em;
  width: 2px;
  background: rgba(159, 32, 119, 0.18);
  border-radius: 2px;
  pointer-events: none;
}

/* Rail fill (se dibuja con el scroll) */
.what__points::after {
  content: "";
  position: absolute;
  left: calc(var(--rail-pos) - 1.5px);
  top: 0.55em;
  bottom: 0.55em;
  width: 3px;
  background: linear-gradient(180deg,
    var(--zs-morado-deep) 0%,
    var(--zs-morado) 45%,
    var(--zs-fucsia) 100%);
  border-radius: 3px;
  transform-origin: top center;
  transform: scaleY(var(--rail-progress, 0));
  box-shadow: 0 0 10px rgba(231, 20, 135, 0.40);
  pointer-events: none;
  will-change: transform;
}

.what__point {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: baseline;
}

.what__num {
  position: relative;
  font-family: var(--zs-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  color: var(--zs-morado-deep);
}

.what__num-dot {
  position: absolute;
  left: calc(-1 * var(--rail-pad) + var(--rail-pos) - (var(--dot-size) / 2));
  top: 0.45em;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: #FBF6EA;
  border: 1.5px solid rgba(159, 32, 119, 0.4);
  box-shadow: 0 0 0 0 rgba(231, 20, 135, 0);
  transition: background 0.45s var(--ease-out-soft),
              border-color 0.45s var(--ease-out-soft),
              box-shadow 0.45s var(--ease-out-soft),
              transform 0.45s var(--ease-out-snap);
  z-index: 1;
}

.what__num-dot.is-lit {
  background: var(--zs-fucsia);
  border-color: var(--zs-fucsia);
  box-shadow: 0 0 0 5px rgba(231, 20, 135, 0.14),
              0 0 14px rgba(231, 20, 135, 0.55);
  transform: scale(1.25);
}

.what__point h3 {
  font-family: var(--zs-font-display);
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.625rem);
  font-weight: 500;
  letter-spacing: var(--tr-snug);
  line-height: 1.2;
  color: var(--zs-navy);
  margin: 0 0 var(--space-3);
}

.what__point p {
  font-size: var(--text-body-md);
  line-height: 1.65;
  color: var(--zs-gris-oscuro);
  margin: 0;
  max-width: 50ch;
}

/* Bloque de cierre de la sección "Qué es" — statement destacado */
.what__note {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1.75rem, 4vw, 4rem);
  background: linear-gradient(135deg, var(--zs-navy) 0%, var(--zs-morado-deep) 55%, var(--zs-morado) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(122, 24, 89, 0.28);
}

/* Capa atmosférica sutil dentro del bloque */
.what__note::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 15%, rgba(231, 20, 135, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 85% 85%, rgba(219, 203, 149, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.what__note-title {
  font-family: var(--zs-font-display);
  font-size: clamp(1.625rem, 2.2vw + 0.85rem, 2.75rem);
  font-weight: 600;
  letter-spacing: var(--tr-tight);
  line-height: 1.2;
  color: var(--zs-blanco);
  margin: 0 auto var(--space-8);
  max-width: 24ch;
}

.what__note-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: var(--space-6) auto 0;
  background: linear-gradient(90deg, var(--zs-fucsia), var(--zs-dorado));
  border-radius: 2px;
}

.what__note p {
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.1875rem);
  line-height: 1.75;
  color: rgba(242, 235, 223, 0.92);
  margin: 0 auto var(--space-6);
  max-width: 62ch;
}

.what__note p:last-child {
  margin-bottom: 0;
  font-family: var(--zs-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.125rem, 0.8vw + 1rem, 1.5rem);
  color: var(--zs-dorado);
}

/* ---------- 12. MODULES ---------- */
.modules {
  background: var(--zs-crema-medio);
  border-top: 1px solid rgba(159, 32, 119, 0.08);
}

.modules__head {
  text-align: center;
  max-width: 940px;
  margin: 0 auto var(--space-16);
}

.modules__heading {
  font-family: var(--zs-font-display);
  font-size: var(--text-display-md);
  font-weight: 500;
  letter-spacing: var(--tr-snug);
  line-height: 1.15;
  color: var(--zs-navy);
  margin: 0;
}

/* Mockup destacado de "Qué incluye" */
.modules__mockup {
  position: relative;
  isolation: isolate;
  max-width: 1080px;
  margin: 0 auto var(--space-24);
  padding: 0;
}

.modules__mockup img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow:
    0 2px 6px rgba(159, 32, 119, 0.10),
    0 30px 60px rgba(159, 32, 119, 0.20),
    0 14px 32px rgba(27, 42, 78, 0.10);
  transition: transform 0.8s var(--ease-out-soft);
}

.modules__mockup:hover img {
  transform: translateY(-4px);
}

.modules__mockup-glow {
  position: absolute;
  z-index: 0;
  inset: -8% -6% -10% -6%;
  background:
    radial-gradient(ellipse 55% 55% at 20% 30%, rgba(231, 20, 135, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 80% 70%, rgba(219, 203, 149, 0.30) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

@media (max-width: 720px) {
  .modules__mockup {
    margin-bottom: var(--space-16);
  }
  .modules__mockup img {
    border-radius: var(--radius-md);
  }
}

.modules__grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-24);
}

@media (min-width: 800px) {
  .modules__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.module {
  background: var(--zs-blanco);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(219, 203, 149, 0.45);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-medium) var(--ease-out-soft),
              box-shadow var(--dur-medium) var(--ease-out-soft);
}

.module:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.module__num {
  font-family: var(--zs-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--zs-morado-deep);
  margin: 0 0 var(--space-4);
}

.module__title {
  font-family: var(--zs-font-display);
  font-size: clamp(1.375rem, 1.5vw + 0.75rem, 1.875rem);
  font-weight: 500;
  letter-spacing: var(--tr-snug);
  line-height: 1.15;
  color: var(--zs-navy);
  margin: 0 0 var(--space-6);
}

.module__lead {
  font-size: var(--text-body-md);
  line-height: 1.6;
  color: var(--zs-gris-oscuro);
  margin: 0 0 var(--space-6);
}

.module__lead strong,
.zuzana__body strong {
  font-weight: 600;
  color: var(--zs-navy);
}

.module__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.module__list li {
  font-size: 0.9375rem;
  color: var(--zs-gris-oscuro);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.module__quote {
  margin: auto 0 0;
  font-family: var(--zs-font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--zs-morado);
  border-top: 1px solid rgba(219, 203, 149, 0.6);
  padding-top: var(--space-6);
}

/* Extras */
.extras {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 3rem);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(219, 203, 149, 0.6);
  backdrop-filter: blur(6px);
}

.extras__heading {
  font-family: var(--zs-font-display);
  font-size: clamp(1.375rem, 1.5vw + 0.5rem, 1.875rem);
  font-weight: 600;
  letter-spacing: var(--tr-snug);
  color: var(--zs-navy);
  margin: 0 0 var(--space-12);
}

.extras__grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  text-align: left;
}

@media (min-width: 720px) {
  .extras__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8) var(--space-12);
  }
}

.resource {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
}

.resource__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.15em;
  border-radius: 50%;
  background: rgba(231, 20, 135, 0.10);
}

.resource__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--zs-fucsia);
}

.resource__name {
  font-family: var(--zs-font-display);
  font-size: clamp(1.0625rem, 0.6vw + 0.9rem, 1.25rem);
  font-weight: 600;
  letter-spacing: var(--tr-snug);
  line-height: 1.25;
  color: var(--zs-navy);
  margin: 0 0 var(--space-2);
}

.resource__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--zs-gris-medio);
  margin: 0;
}

.extras__close {
  max-width: 640px;
  margin: 0 auto;
  padding-top: var(--space-12);
  border-top: 1px solid rgba(219, 203, 149, 0.6);
  text-align: center;
}

.extras__close > p {
  font-family: var(--zs-font-display);
  font-size: clamp(1.125rem, 1vw + 0.85rem, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--zs-navy);
  margin: 0 0 var(--space-8);
}

.extras__close ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

.extras__close li {
  position: relative;
  padding-top: var(--space-4);
  font-size: var(--text-body-md);
  line-height: 1.5;
  color: var(--zs-gris-oscuro);
  font-weight: 500;
  max-width: 52ch;
}

.extras__close li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--zs-fucsia), var(--zs-dorado));
}

/* ---------- 13. FIT (Para quién es / no) ---------- */
.fit {
  background: #FBF6EA;
  border-top: 1px solid rgba(219, 203, 149, 0.5);
}

.fit__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-16);
}

.fit__heading {
  font-family: var(--zs-font-display);
  font-size: var(--text-display-md);
  font-weight: 500;
  letter-spacing: var(--tr-snug);
  line-height: 1.15;
  color: var(--zs-navy);
  margin: 0;
}

.fit__grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 800px) {
  .fit__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.fit__col {
  position: relative;
  padding: clamp(2rem, 3.5vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(219, 203, 149, 0.5);
}

.fit__col--yes {
  background: var(--zs-blanco);
  box-shadow: var(--shadow-soft);
}

.fit__col--no {
  background: rgba(255, 255, 255, 0.45);
}

/* Check / cruz inline en cada item del fit */
.fit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-right: var(--space-3);
  margin-top: 0.12em;
  border-radius: 50%;
}

.fit-mark svg {
  width: 14px;
  height: 14px;
  display: block;
}

.fit-mark--yes {
  background: rgba(159, 32, 119, 0.10);
  box-shadow: 0 0 0 0 rgba(159, 32, 119, 0.0);
  transition: background 0.4s var(--ease-out-soft), box-shadow 0.5s var(--ease-out-soft);
}

.reveal-scroll-stagger.is-visible .fit-mark--yes {
  background: rgba(159, 32, 119, 0.16);
  box-shadow: 0 0 0 3px rgba(159, 32, 119, 0.10);
}

.fit-mark--yes svg {
  overflow: visible;
}

.fit-mark__check {
  stroke: var(--zs-morado-deep);
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  transition: stroke-dashoffset 0.55s var(--ease-out-soft) 0.1s;
}

.reveal-scroll-stagger.is-visible .fit-mark__check {
  stroke-dashoffset: 0;
}

.fit-mark--no {
  background: rgba(107, 107, 107, 0.06);
}

.fit-mark--no svg path {
  stroke: var(--zs-gris-medio);
}

@media (prefers-reduced-motion: reduce) {
  .fit-mark__check {
    stroke-dashoffset: 0 !important;
  }
}

.fit__label {
  font-family: var(--zs-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  margin: 0 0 var(--space-8);
}

.fit__col--yes .fit__label {
  color: var(--zs-fucsia);
}

.fit__col--no .fit__label {
  color: var(--zs-gris-medio);
}

.fit__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.fit__list li {
  font-size: var(--text-body-md);
  line-height: 1.55;
  color: var(--zs-gris-oscuro);
  display: flex;
  align-items: flex-start;
}

.fit__col--no .fit__list li {
  color: var(--zs-gris-medio);
}

/* ---------- 14. ZUZANA ---------- */
.zuzana {
  background: var(--zs-crema-medio);
  border-top: 1px solid rgba(159, 32, 119, 0.08);
}

.zuzana__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 35% at 30% 30%,
      rgba(231, 20, 135, 0.10) 0%,
      transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%,
      rgba(219, 203, 149, 0.30) 0%,
      transparent 65%);
}

.zuzana__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .zuzana__grid {
    grid-template-columns: 5fr 6fr;
  }
}

.zuzana__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  isolation: isolate;
}

.zuzana__photo-glow {
  position: absolute;
  z-index: -1;
  inset: -12% -10% -8% -10%;
  background:
    radial-gradient(ellipse 55% 55% at 30% 35%,
      rgba(231, 20, 135, 0.22) 0%,
      transparent 70%),
    radial-gradient(ellipse 55% 55% at 70% 70%,
      rgba(219, 203, 149, 0.32) 0%,
      transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: zuzanaGlow 12s ease-in-out infinite alternate;
}

@keyframes zuzanaGlow {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate3d(2%, -2%, 0) scale(1.04); opacity: 1; }
}

.zuzana__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 2px 6px rgba(159, 32, 119, 0.10),
    0 28px 60px rgba(159, 32, 119, 0.20),
    0 14px 32px rgba(27, 42, 78, 0.12);
  animation: zuzanaFloat 10s ease-in-out infinite alternate;
}

@keyframes zuzanaFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.zuzana__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 1.6s var(--ease-out-soft);
}

.zuzana__photo-wrap:hover .zuzana__photo img {
  transform: scale(1.03);
}

.zuzana__photo-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 233, 211, 0.5);
  pointer-events: none;
}

.zuzana__badge {
  position: absolute;
  bottom: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.5rem 1.1rem;
  background: var(--zs-blanco);
  border: 1px solid rgba(219, 203, 149, 0.7);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(159, 32, 119, 0.14);
  white-space: nowrap;
}

.zuzana__badge-line {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--zs-fucsia), var(--zs-dorado));
}

.zuzana__badge-text {
  font-family: var(--zs-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--zs-morado-deep);
}

/* Pull quote con ornament */
.zuzana__pull {
  position: relative;
  padding-left: var(--space-8);
  border-left: 2px solid var(--zs-dorado);
  background: transparent;
}

.zuzana__pull p {
  margin: 0;
  font-family: var(--zs-font-display) !important;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.375rem, 1.4vw + 0.875rem, 1.875rem) !important;
  line-height: 1.3 !important;
  color: var(--zs-morado-deep) !important;
  letter-spacing: var(--tr-snug);
}

.zuzana__pull-ornament {
  position: absolute;
  left: -0.6em;
  top: -0.15em;
  font-family: var(--zs-font-display);
  font-size: clamp(2.5rem, 3vw + 1rem, 4rem);
  font-style: italic;
  line-height: 1;
  color: var(--zs-dorado);
  pointer-events: none;
}

.zuzana__pull-ornament::before {
  content: "“";
}

@media (prefers-reduced-motion: reduce) {
  .zuzana__photo,
  .zuzana__photo-glow {
    animation: none !important;
  }
}

.zuzana__text {
  max-width: 600px;
}

.zuzana__heading {
  font-family: var(--zs-font-display);
  font-size: var(--text-display-md);
  font-weight: 500;
  letter-spacing: var(--tr-tight);
  line-height: 1.1;
  color: var(--zs-navy);
  margin: 0 0 var(--space-8);
}

.zuzana__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.zuzana__body p {
  font-size: var(--text-body-lg);
  line-height: 1.7;
  color: var(--zs-gris-oscuro);
  margin: 0;
}

.zuzana__body em {
  font-family: var(--zs-font-display);
  font-style: italic;
  color: var(--zs-morado);
}

.zuzana__pull {
  margin: var(--space-4) 0;
  padding-block: var(--space-4);
}

.zuzana__mission {
  position: relative;
  z-index: 1;
  margin-top: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.zuzana__mission p {
  position: relative;
  max-width: 22ch;
  margin: 0 auto;
  font-family: var(--zs-font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.625rem, 2.4vw + 0.9rem, 3rem);
  line-height: 1.25;
  letter-spacing: var(--tr-tight);
  color: var(--zs-morado-deep);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.zuzana__mission p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--zs-fucsia), var(--zs-dorado));
}

/* ---------- 15. PRICE ---------- */
.price {
  background: #FBF6EA;
  border-top: 1px solid rgba(219, 203, 149, 0.5);
  scroll-margin-top: 2rem;
}

.price__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%,
      rgba(219, 203, 149, 0.45) 0%,
      transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 70%,
      rgba(231, 20, 135, 0.08) 0%,
      transparent 70%);
}

.price .container {
  position: relative;
  z-index: 1;
}

.price__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-16);
}

.price__heading {
  font-family: var(--zs-font-display);
  font-size: var(--text-display-md);
  font-weight: 500;
  letter-spacing: var(--tr-snug);
  line-height: 1.1;
  color: var(--zs-navy);
  margin: 0;
}

.price-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--zs-blanco);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
  box-shadow:
    0 2px 6px rgba(159, 32, 119, 0.08),
    0 24px 60px rgba(159, 32, 119, 0.18);
  border: 1px solid rgba(231, 20, 135, 0.12);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(231, 20, 135, 0.4),
    rgba(219, 203, 149, 0.2) 50%,
    rgba(159, 32, 119, 0.4));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

@keyframes pricePulse {
  0%   { box-shadow: 0 0 0 0 rgba(231, 20, 135, 0.5); }
  100% { box-shadow: 0 0 0 10px rgba(231, 20, 135, 0); }
}

.price-card__name {
  font-family: var(--zs-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--zs-fucsia);
  margin: var(--space-8) 0 var(--space-3);
}

.price-card__old {
  margin: 0 0 -0.3em;
  font-family: var(--zs-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--zs-gris-medio);
  letter-spacing: var(--tr-snug);
}

.price-card__old s {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 0 0.15em;
}

.price-card__old s::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--zs-fucsia) 20%,
    var(--zs-fucsia) 80%,
    transparent 100%);
  transform: rotate(-8deg);
  transform-origin: center;
}

.price-card__amount {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.1rem;
  font-family: var(--zs-font-display);
  font-weight: 500;
  margin: 0 0 var(--space-3);
  color: var(--zs-morado-deep);
  letter-spacing: var(--tr-tight);
}

.price-card__currency {
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  margin-top: 0.15em;
}

.price-card__number {
  font-size: clamp(4.5rem, 8vw + 1rem, 7rem);
  line-height: 1;
}

.price-card__access {
  font-size: 0.9375rem;
  color: var(--zs-gris-medio);
  margin: 0 0 var(--space-8);
}

.price-card__includes {
  text-align: left;
  font-family: var(--zs-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--zs-fucsia);
  margin: 0 0 var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(219, 203, 149, 0.6);
}

.price-card__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: 0 0 var(--space-8);
}

.price-card__list li {
  font-size: 0.9375rem;
  color: var(--zs-gris-oscuro);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.price-card__total {
  margin: 0 0 var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(219, 203, 149, 0.6);
  font-family: var(--zs-font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.2vw + 0.75rem, 1.5rem);
  color: var(--zs-morado-deep);
  line-height: 1.3;
}

.price-card__total span {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--zs-font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  color: var(--zs-gris-medio);
}

.price-card__cta {
  width: 100%;
}

.price-card__guarantee {
  margin: 0 0 var(--space-6);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--zs-gris-medio);
}

/* ---------- Countdown ---------- */
.countdown {
  margin: 0 calc(-1 * clamp(0.5rem, 1.5vw, 1.25rem));
  padding: var(--space-6) clamp(0.75rem, 2vw, 1.25rem);
  background: linear-gradient(135deg,
    rgba(231, 20, 135, 0.08) 0%,
    rgba(159, 32, 119, 0.05) 50%,
    rgba(219, 203, 149, 0.15) 100%);
  border: 1px solid rgba(231, 20, 135, 0.18);
  border-radius: var(--radius-md);
}

.countdown__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 auto var(--space-4);
  font-family: var(--zs-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--zs-morado-deep);
  text-align: center;
  width: 100%;
  justify-content: center;
}

.countdown__badge-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zs-fucsia);
  box-shadow: 0 0 0 0 rgba(231, 20, 135, 0.5);
  animation: pricePulse 1.8s ease-out infinite;
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  margin: 0;
}

.countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: var(--space-3) 0.25rem;
  background: var(--zs-blanco);
  border: 1px solid rgba(219, 203, 149, 0.55);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 2px rgba(159, 32, 119, 0.05);
}

.countdown__value {
  font-family: var(--zs-font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.8vw + 0.75rem, 2rem);
  line-height: 1;
  color: var(--zs-morado-deep);
  letter-spacing: var(--tr-tight);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.countdown__unit {
  font-family: var(--zs-font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--zs-gris-medio);
}

.countdown.is-expired {
  display: none;
}

/* ---------- 16. FAQ ---------- */
.faq {
  background: var(--zs-crema-medio);
  border-top: 1px solid rgba(159, 32, 119, 0.08);
}

.faq__heading {
  font-family: var(--zs-font-display);
  font-size: var(--text-display-md);
  font-weight: 500;
  letter-spacing: var(--tr-snug);
  line-height: 1.15;
  color: var(--zs-navy);
  text-align: center;
  margin: 0 0 var(--space-16);
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-top: 1px solid rgba(159, 32, 119, 0.15);
  padding-block: var(--space-6);
}

.faq__item:last-of-type {
  border-bottom: 1px solid rgba(159, 32, 119, 0.15);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  font-family: var(--zs-font-display);
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.375rem);
  font-weight: 600;
  letter-spacing: var(--tr-snug);
  color: var(--zs-morado);
  line-height: 1.35;
}

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

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--zs-fucsia);
  transition: transform var(--dur-medium) var(--ease-out-soft),
              opacity var(--dur-medium) var(--ease-out-soft);
}

.faq__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq__icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq__item[open] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding-top: var(--space-6);
  max-width: 62ch;
}

.faq__answer p {
  font-size: var(--text-body-md);
  line-height: 1.7;
  color: var(--zs-gris-oscuro);
  margin: 0;
}

/* Subtle expand animation */
.faq__item[open] .faq__answer {
  animation: fadeSlide 380ms var(--ease-out-soft) both;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- 17. FINAL CTA ---------- */
.final {
  background: linear-gradient(135deg, var(--zs-navy) 0%, var(--zs-morado-deep) 60%, var(--zs-morado) 100%);
  color: var(--zs-crema-claro);
  text-align: center;
  padding-block: clamp(7rem, 14vw, 12rem);
  overflow: hidden;
}

.final__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%,
      rgba(219, 203, 149, 0.22) 0%,
      transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%,
      rgba(255, 255, 255, 0.10) 0%,
      transparent 65%);
}

.final .container {
  position: relative;
  z-index: 1;
}

.final__heading {
  font-family: var(--zs-font-display);
  font-size: var(--text-display-lg);
  font-weight: 500;
  letter-spacing: var(--tr-tight);
  line-height: 1.05;
  color: var(--zs-blanco);
  margin: 0 0 var(--space-8);
}

.final__body {
  max-width: 56ch;
  margin: 0 auto var(--space-12);
}

.final__nots {
  font-family: var(--zs-font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 1vw + 0.85rem, 1.5rem);
  line-height: 1.55;
  color: rgba(242, 235, 223, 0.75);
  margin: 0 0 var(--space-8);
}

.final__lead {
  font-size: var(--text-body-lg);
  line-height: 1.65;
  color: rgba(242, 235, 223, 0.92);
  margin: 0 0 var(--space-8);
}

.final__highlight {
  font-family: var(--zs-font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  line-height: 1.1;
  letter-spacing: var(--tr-tight);
  color: var(--zs-dorado);
  margin: 0 0 var(--space-6);
}

.final__after {
  font-size: var(--text-body-lg);
  line-height: 1.6;
  color: rgba(242, 235, 223, 0.92);
  margin: 0;
}

.final__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.final__reassurance {
  color: rgba(242, 235, 223, 0.75);
  justify-content: center;
}

.final__reassurance .dot {
  color: var(--zs-dorado);
}

/* ---------- 18. FOOTER ---------- */
.footer {
  background: var(--zs-navy);
  padding-block: var(--space-16);
  color: rgba(242, 235, 223, 0.7);
  font-size: var(--text-body-sm);
  text-align: center;
}

.footer__simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 620px;
  margin-inline: auto;
}

.footer__logo {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer__motto {
  font-family: var(--zs-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.1875rem);
  line-height: 1.5;
  color: var(--zs-dorado);
  margin: 0;
  max-width: 44ch;
}

.footer__copy {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: rgba(242, 235, 223, 0.55);
  margin: 0;
}

/* ---------- 19. ANIMATIONS ---------- */

/* Reveal inicial del hero (orquestado) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 700ms var(--ease-out-soft) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal scroll-triggered */
.reveal-scroll,
.reveal-scroll-stagger {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out-soft), transform 700ms var(--ease-out-soft);
}

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

/* Reveal lateral (cards que entran desde los lados) */
.reveal-scroll-side {
  opacity: 0;
  transition: opacity 800ms var(--ease-out-soft), transform 800ms var(--ease-out-soft);
}

.reveal-from-left {
  transform: translateX(-32px);
}

.reveal-from-right {
  transform: translateX(32px);
}

.reveal-scroll-side.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- 20. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-scroll,
  .reveal-scroll-stagger,
  .reveal-scroll-side {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 21. BULLETS ANIMADOS ---------- */
.bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-right: var(--space-3);
  position: relative;
  top: 0.05em;
}

.bullet__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--zs-dorado);
  box-shadow: 0 0 0 0 rgba(219, 203, 149, 0.6);
  animation: bulletPulse 2.6s ease-out infinite;
  position: relative;
}

.bullet__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--zs-dorado);
  opacity: 0.5;
  animation: bulletRing 2.6s ease-out infinite;
}

@keyframes bulletPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes bulletRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

.bullet--yes .bullet__dot,
.bullet--yes .bullet__dot::after {
  background: var(--zs-morado);
}

.bullet--no .bullet__dot,
.bullet--no .bullet__dot::after {
  background: var(--zs-gris-medio);
  animation: none;
  box-shadow: none;
}

.bullet--no .bullet__dot::after {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .bullet__dot,
  .bullet__dot::after {
    animation: none !important;
  }
}

/* ---------- 22. PLAYFAIR DISPLAY WEIGHT TUNING ---------- */
.hero__title,
.mirror__heading,
.pivot__heading,
.what__heading,
.modules__heading,
.module__title,
.extras__heading,
.fit__heading,
.zuzana__heading,
.price__heading,
.faq__heading,
.final__heading {
  font-weight: 600;
}

.what__point h3 {
  font-weight: 600;
}

.zuzana__pull p,
.module__quote {
  font-weight: 500;
}

/* ---------- 22. SITE HEADER (brand + countdown unificado) ---------- */
.site-header {
  position: relative;
  z-index: 5;
  background: var(--zs-blanco);
  border-bottom: 1px solid rgba(219, 203, 149, 0.8);
  box-shadow: 0 6px 18px rgba(27, 42, 78, 0.04);
  font-family: var(--zs-font-body);
  color: var(--zs-morado-deep);
}

.site-header.is-expired {
  /* Si caduca, ocultamos solo el bloque del deal, conservamos la marca */
}

.site-header.is-expired .site-header__deal {
  display: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: 0.625rem;
  flex-wrap: wrap;
}

/* Brand izquierda */
.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  line-height: 1;
  color: var(--zs-morado-deep);
}

.site-header__logo {
  height: clamp(36px, 4.4vw, 44px);
  width: auto;
  display: block;
}

.site-header__divider {
  display: block;
  width: 1px;
  height: 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(159, 32, 119, 0.45) 50%, transparent 100%);
}

.site-header__product {
  font-family: var(--zs-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  letter-spacing: var(--tr-snug);
  color: var(--zs-morado-deep);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .site-header__divider,
  .site-header__product {
    display: none;
  }
}

/* Deal derecha */
.site-header__deal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.site-header__deal-label {
  margin: 0;
  font-family: var(--zs-font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zs-morado-deep);
  opacity: 0.8;
  line-height: 1;
}

.site-header__deal-row {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

/* Cajita del contador en fucsia */
.site-header__cd {
  display: inline-flex;
  align-items: stretch;
  margin: 0;
  padding: 0.35rem 0.5rem;
  background: var(--zs-blanco);
  border: 1px solid rgba(231, 20, 135, 0.35);
  border-radius: 10px;
  box-shadow:
    0 1px 2px rgba(231, 20, 135, 0.06),
    0 4px 14px rgba(231, 20, 135, 0.10);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  list-style: none;
  line-height: 1;
}

.site-header__cd li {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.12rem;
  padding: 0.05rem 0.55rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--zs-fucsia);
  letter-spacing: -0.01em;
  position: relative;
}

.site-header__cd li + li::before {
  content: ":";
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(231, 20, 135, 0.35);
  font-weight: 400;
  font-size: 0.875rem;
}

.site-header__unit {
  color: rgba(159, 32, 119, 0.55);
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 0.1rem;
}

.site-header__cta {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--zs-morado);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  border-bottom: 1px solid var(--zs-morado);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out-soft),
              border-color var(--dur-fast) var(--ease-out-soft);
  white-space: nowrap;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  color: var(--zs-fucsia);
  border-color: var(--zs-fucsia);
}

@media (max-width: 720px) {
  .site-header__inner {
    flex-direction: column;
    gap: 0.85rem;
    padding-block: var(--space-3);
  }
  .site-header__brand {
    align-self: center;
  }
  .site-header__deal {
    align-items: center;
  }
  .site-header__deal-label {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-align: center;
  }
  .site-header__cd li {
    font-size: 0.875rem;
    padding: 0.05rem 0.45rem;
  }
}

/* ---------- 23. RESPONSIVE TWEAKS ---------- */
@media (max-width: 640px) {
  .nav {
    padding-block: var(--space-4);
  }

  .hero__title {
    max-width: 100%;
  }

  .hero__sub {
    margin-bottom: var(--space-8);
  }

  .btn--lg {
    width: 100%;
    padding: 1.125rem 1.5rem;
  }

  .hero__cta,
  .final__cta {
    align-items: stretch;
  }

  .hero__reassurance,
  .final__reassurance {
    justify-content: center;
  }

  .hero__inner {
    padding-bottom: var(--space-8);
  }
}

/* =========================================================
   24. VÍDEO INTRO
   ========================================================= */
.intro-video {
  padding: var(--space-16) var(--container-x);
}

.intro-video__wrap {
  aspect-ratio: 16 / 9;
  background: rgba(219, 203, 149, 0.10);
  border: 2px dashed rgba(219, 203, 149, 0.55);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-video__label {
  font-family: var(--zs-font-body);
  font-size: 0.8125rem;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--zs-gris-medio);
}

/* =========================================================
   25. LLEGADA
   ========================================================= */
.hero__arrival {
  grid-column: 1 / -1;
  margin: var(--space-8) auto 0;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(159, 32, 119, 0.18);
}

.arrival__heading {
  font-family: var(--zs-font-display);
  font-size: clamp(1.625rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 600;
  color: var(--zs-morado-deep);
  text-align: center;
  line-height: 1.3;
  letter-spacing: var(--tr-tight);
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.arrival__body {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--zs-font-body);
  font-size: var(--text-body-lg);
  color: var(--zs-gris-oscuro);
  line-height: 1.75;
}

.arrival__body p + p {
  margin-top: var(--space-6);
}

/* =========================================================
   26. STATEMENT "CUANDO VUELVES A TI"
   ========================================================= */
.return-statement {
  padding: clamp(5rem, 12vw, 10rem) var(--container-x);
  text-align: center;
  background: var(--zs-navy);
}

.return-statement__text {
  font-family: var(--zs-font-display);
  font-size: clamp(2rem, 4vw + 1rem, 4rem);
  font-weight: 600;
  color: var(--zs-crema-claro);
  line-height: 1.25;
  letter-spacing: var(--tr-tight);
  max-width: 800px;
  margin: 0 auto;
}

.return-statement__text em {
  font-style: italic;
  color: var(--zs-dorado);
}

/* =========================================================
   27. TESTIMONIOS
   ========================================================= */
.testimonials {
  padding: var(--section-y) var(--container-x);
}

.testimonials .eyebrow {
  margin-bottom: var(--space-12);
}

.testimonials__heading {
  font-family: var(--zs-font-display);
  font-size: var(--text-display-md);
  font-weight: 600;
  color: var(--zs-navy);
  text-align: center;
  line-height: 1.25;
  letter-spacing: var(--tr-tight);
  max-width: 820px;
  margin: var(--space-6) auto var(--space-16);
}

.testimonials__video {
  max-width: 840px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   28. PUENTE (antes de "Qué incluye")
   ========================================================= */
.bridge {
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--container-x);
  background: var(--zs-crema-claro);
  text-align: center;
}

.bridge__body {
  font-family: var(--zs-font-body);
  font-size: var(--text-body-lg);
  color: var(--zs-gris-oscuro);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 auto var(--space-6);
}

.bridge__highlight {
  font-family: var(--zs-font-display);
  font-weight: 600;
  font-size: clamp(1.375rem, 1.8vw + 0.75rem, 1.875rem);
  letter-spacing: var(--tr-tight);
  color: var(--zs-morado-deep);
  margin: 0;
}

/* =========================================================
   29. PRICE TRUST (checklist debajo del CTA de precio)
   ========================================================= */
.price-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-8) 0 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(219, 203, 149, 0.6);
}

.price-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--zs-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zs-gris-oscuro);
}

.price-trust__check {
  color: var(--zs-fucsia);
  font-weight: 700;
}
