/* ═══════════════════════════════════════════════════════════════════
   PRENATAL POWER — VENTAS · NatalPower 2026
   Paleta oficial NatalPower — morado #662D8C + lila #9F7DB0 + lavanda claro
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Paleta */
  --cream: #FAF7FC;
  --cream-deep: #F3EDF7;
  --terracota: #662D8C;
  --terracota-d: #4F1F70;
  --terracota-l: #8A4DB0;
  --lila: #9F7DB0;
  --lila-soft: #E8DCF2;
  --sage: #9F7DB0;
  --ink: #1F1129;
  --ink-soft: #4A3A5A;
  --ink-muted: #8C7B9E;
  --line: rgba(31,17,41,0.10);
  --white: #FFFFFF;

  /* Sombras suaves */
  --shadow-sm: 0 2px 12px rgba(31,17,41,0.06);
  --shadow:    0 8px 32px rgba(31,17,41,0.08);
  --shadow-lg: 0 18px 56px rgba(31,17,41,0.14);

  /* Radios */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; }

/* ── Tipografía ────────────────────────────────────────────────── */
@font-face {
  font-family: 'Holiday Regular';
  src: url('https://prenatal.natalpower.com/wp-content/uploads/2026/05/Holiday-Regular.ttf') format('woff2');
  font-weight: normal;
  font-style: normal;
}
.serif { font-family: 'Fraunces', serif; font-feature-settings: 'liga' on, 'ss01' on; }
.script { font-family: 'Caveat', cursive; font-weight: 700; }

h1, h2, h3, h4 { font-family: 'Fraunces', serif; line-height: 1.15; color: var(--ink); letter-spacing: -0.02em; font-weight: 600; }
h1 { font-size: clamp(38px, 5.8vw, 68px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2.6vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lila);
  margin-bottom: 0.75rem;
}

/* ── Layout ────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

/* Decoración: círculos lilas en esquinas */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}
.deco-circle.lila-solid { background: var(--lila); }
.deco-circle.lila-outline { background: transparent; border: 2px solid var(--lila); opacity: 0.4; }

/* Separador estrella */
.divider-star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.divider-star::before,
.divider-star::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--line);
}
.divider-star svg { width: 18px; height: 18px; fill: var(--lila); }

/* ── Botones ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--terracota);
  color: #fff;
  box-shadow: 0 8px 24px rgba(102,45,140,0.32);
}
.btn-primary:hover {
  background: var(--terracota-d);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102,45,140,0.40);
}
.btn-large {
  padding: 1.3rem 2.6rem;
  font-size: 18px;
}
.btn-xl {
  padding: 1.6rem 3rem;
  font-size: 20px;
  font-weight: 700;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ═══════════════════════════════════════════════════════════════════
   1. STICKY BAR SUPERIOR
   ═══════════════════════════════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--terracota);
  color: #fff;
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(31,17,41,0.12);
  transition: transform 0.4s var(--ease);
}
.sticky-bar.hidden { transform: translateY(-100%); }
.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.sticky-bar strong { font-weight: 700; }
.countdown-mini {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.20);
  padding: 0.2rem 0.7rem;
  border-radius: 6px;
  min-width: 110px;
  display: inline-block;
}
body { padding-top: 48px; }

/* ═══════════════════════════════════════════════════════════════════
   2. HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  margin-bottom: 1.25rem;
}
.hero h1 .script {
  font-family: 'Holiday Regular', sans-serif;
  color: var(--terracota);
  display: inline-block;
  font-size: 55px;
  font-weight: 300;
  line-height: 0.8;
  vertical-align: -0.05em;
}
.hero h1 em {
  font-family: 'Holiday Regular', sans-serif;
  font-size: 55px;
  font-style: italic;
  font-weight: 500;
  color: var(--terracota);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 56ch;
}
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-bullets li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--lila-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23662D8C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-micro {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.hero-micro::before { content: "🔒 "; }

/* Hero visual: foto con marco */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(102,45,140,0.10), rgba(159,125,176,0.20)),
    linear-gradient(180deg, var(--cream-deep), #E8DCF2);
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(102,45,140,0.15), transparent 60%);
}
.hero-visual-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--terracota);
  font-family: 'Fraunces', serif;
  font-style: italic;
  text-align: center;
  padding: 2rem;
}
.hero-visual-placeholder svg { width: 80px; height: 80px; opacity: 0.5; }

/* Círculos decorativos hero */
.hero .deco-1 { top: -80px; left: -80px; width: 280px; height: 280px; }
.hero .deco-2 { bottom: 20%; right: -60px; width: 160px; height: 160px; }
.hero .deco-3 { top: 60%; left: 45%; width: 90px; height: 90px; }

/* ═══════════════════════════════════════════════════════════════════
   3. BANDA AUTORIDAD
   ═══════════════════════════════════════════════════════════════════ */
.authority-band {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0;
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.authority-item .num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--terracota-l);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.authority-item .label {
  font-size: 16px;
  color: rgba(250,247,252,0.75);
  line-height: 1.5;
  max-width: 22ch;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   4. EL PROBLEMA
   ═══════════════════════════════════════════════════════════════════ */
.problema {
  background: var(--cream-deep);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--ink-soft); font-size: 18px; }

.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.problema-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.4s var(--ease);
}
.problema-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--lila);
}
.problema-card svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
  stroke: var(--terracota);
  stroke-width: 2;
  fill: none;
  margin-top: 2px;
}
.problema-card p {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.problema-cierre {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  max-width: 600px;
  margin: 0 auto;
}
.problema-cierre .script {
  font-family: 'Holiday Regular', sans-serif;
  color: var(--terracota);
  /*font-style: normal;*/
  font-weight: 300;
  font-size: 55px;
  line-height: 0.7;
  vertical-align: -0.1em;
}

/* ═══════════════════════════════════════════════════════════════════
   5. QUIÉN ES NATALIA
   ═══════════════════════════════════════════════════════════════════ */
.natalia {
  position: relative;
  overflow: hidden;
}
.natalia-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.natalia-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(159,125,176,0.30), rgba(102,45,140,0.15)),
    linear-gradient(180deg, #E8DCF2, var(--cream-deep));
  box-shadow: var(--shadow);
}
.natalia-visual::before {
  content: "Foto profesional Dra. Natalia";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--terracota);
  opacity: 0.7;
}
.natalia h2 { margin-bottom: 1.5rem; }
.natalia h2 .script { font-family: 'Holiday Regular', sans-serif; color: var(--terracota); font-size: 45px; line-height: 0.8; }
.natalia-quote {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  font-style: italic;
  line-height: 1.7;
}
.natalia-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.natalia-creds li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
}
.natalia-creds svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  stroke: var(--terracota);
  stroke-width: 2;
  fill: none;
  margin-top: 1px;
}

.natalia .deco-1 { top: -100px; right: -100px; width: 300px; height: 300px; }

/* ═══════════════════════════════════════════════════════════════════
   6. QUÉ INCLUYE
   ═══════════════════════════════════════════════════════════════════ */
.incluye { background: var(--cream-deep); }
.incluye-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.incluye-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.incluye-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--terracota);
}
.incluye-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--lila-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}
.incluye-card:hover .incluye-icon { transform: scale(1.05) rotate(-3deg); }
.incluye-icon svg { width: 24px; height: 24px; stroke: var(--terracota); stroke-width: 2; fill: none; }
.incluye-card h4 { font-family: 'Fraunces', serif; font-size: 19px; margin-bottom: 0.5rem; }
.incluye-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

.incluye-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════════
   7. TEMARIO
   ═══════════════════════════════════════════════════════════════════ */
.temario { position: relative; overflow: hidden; }
.temario .deco-1 { top: 10%; left: -80px; width: 200px; height: 200px; }
.temario .deco-2 { bottom: 5%; right: -100px; width: 280px; height: 280px; }

.temario-list {
  max-width: 900px;
  margin: 0 auto;
}
.temario-block {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.temario-block.open { border-color: var(--terracota); }
.temario-trigger {
  width: 100%;
  background: transparent;
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: background 0.3s ease;
}
.temario-trigger:hover { background: var(--lila-soft); }
.temario-block.open .temario-trigger { background: var(--cream-deep); }
.temario-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.temario-label-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--terracota);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.temario-label-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.temario-label-subtitle {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  margin-top: 0.15rem;
}
.temario-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lila-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.temario-icon svg { width: 14px; height: 14px; stroke: var(--terracota); stroke-width: 2.5; fill: none; }
.temario-block.open .temario-icon { transform: rotate(45deg); background: var(--terracota); }
.temario-block.open .temario-icon svg { stroke: #fff; }
.temario-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.temario-content-inner {
  padding: 0 1.75rem 1.75rem 4.75rem;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.temario-content-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.temario-content-inner li {
  position: relative;
  padding-left: 1.5rem;
}
.temario-content-inner li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--terracota);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════
   8. PARA QUIÉN ES / NO ES
   ═══════════════════════════════════════════════════════════════════ */
.para-quien { background: var(--cream-deep); }
.para-quien-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.para-quien-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
}
.para-quien-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-deep);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.para-quien-card.si h3 { color: var(--terracota); }
.para-quien-card.no h3 { color: var(--ink-muted); }
.para-quien-card h3 svg { width: 28px; height: 28px; flex-shrink: 0; }
.para-quien-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.para-quien-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.para-quien-list li svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke-width: 2.5;
}
.para-quien-card.si li svg { stroke: var(--terracota); }
.para-quien-card.no li svg { stroke: var(--ink-muted); }

/* ═══════════════════════════════════════════════════════════════════
   9. TESTIMONIOS
   ═══════════════════════════════════════════════════════════════════ */
.testimonios { position: relative; overflow: hidden; }
.testimonios .deco-1 { top: 5%; right: 5%; width: 120px; height: 120px; }
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonio-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s var(--ease);
}
.testimonio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--lila);
}
.testimonio-stars {
  display: flex;
  gap: 2px;
  color: var(--terracota);
  font-size: 16px;
}
.testimonio-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.testimonio-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonio-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lila), var(--terracota));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.testimonio-author-info { line-height: 1.3; }
.testimonio-name { font-weight: 600; font-size: 15px; color: var(--ink); display: block; }
.testimonio-meta { font-size: 13px; color: var(--ink-muted); }

/* ═══════════════════════════════════════════════════════════════════
   10. INVERSIÓN
   ═══════════════════════════════════════════════════════════════════ */
.inversion {
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}
.inversion-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border: 2px solid var(--terracota);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.inversion-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracota);
  color: #fff;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.inversion h2 { margin-bottom: 0.5rem; }
.inversion-tagline {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 2rem;
}
.inversion-precio-original {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--ink-muted);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}
.inversion-precio-final {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 700;
  color: var(--terracota);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.inversion-precio-final .currency {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 0.3rem;
  vertical-align: 0.25em;
}
.inversion-ahorro {
  display: inline-block;
  background: var(--lila-soft);
  color: var(--ink);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2rem;
}
.inversion-ahorro strong { color: var(--terracota); }

.countdown-block {
  margin-bottom: 2.5rem;
}
.countdown-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  max-width: 460px;
  margin: 0 auto;
}
.countdown-unit {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem 0.5rem;
}
.countdown-unit-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.countdown-unit-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.35rem;
}

.inversion-features {
  list-style: none;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin: 0 auto 2.5rem;
  max-width: 520px;
}
.inversion-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 14px;
  color: var(--ink);
}
.inversion-features li svg { width: 18px; height: 18px; stroke: var(--terracota); stroke-width: 2.5; fill: none; flex-shrink: 0; }

.inversion-microbtn {
  margin-top: 1rem;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   11. GARANTÍA
   ═══════════════════════════════════════════════════════════════════ */
.garantia {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.garantia .deco-1 { top: -50px; left: -50px; width: 200px; height: 200px; opacity: 0.15; }
.garantia .deco-2 { bottom: -80px; right: -80px; width: 260px; height: 260px; opacity: 0.10; border-color: var(--lila); }
.garantia-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.garantia-seal {
  width: 110px;
  height: 110px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 8px rgba(102,45,140,0.20);
}
.garantia-seal svg { width: 48px; height: 48px; stroke: #fff; stroke-width: 2; fill: none; }
.garantia-seal::before {
  content: "7 DÍAS";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0.6rem);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.garantia h2 { color: var(--cream); margin-bottom: 1.5rem; margin-top: 1.5rem; }
.garantia h2 .script { 
    font-family: 'Holiday Regular', sans-serif; 
    font-weight: 300;
    color: var(--terracota-l); 
    font-size: 50px; 
    line-height: 0.8; 
}
.garantia-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(250,247,252,0.92);
  margin-bottom: 2rem;
}
.garantia-firma {
  font-family: 'Holiday Regular', sans-serif;
  font-size: 32px;
  color: var(--terracota-l);
}

/* ═══════════════════════════════════════════════════════════════════
   12. FAQ
   ═══════════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-trigger {
  width: 100%;
  background: transparent;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s ease;
}
.faq-trigger:hover { color: var(--terracota); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lila-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--terracota); stroke-width: 2.5; fill: none; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--terracota); }
.faq-item.open .faq-icon svg { stroke: #fff; }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-content-inner {
  padding-bottom: 1.5rem;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   13. CTA FINAL
   ═══════════════════════════════════════════════════════════════════ */
.cta-final {
  background: linear-gradient(135deg, var(--terracota) 0%, var(--terracota-d) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(159,125,176,0.20) 0%, transparent 50%);
}
.cta-final-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-final h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(34px, 5vw, 56px);
}
.cta-final h2 .script {
  font-family: 'Holiday Regular', sans-serif; 
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  font-size: 80px;
  line-height: 0.8;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final .btn-primary {
  background: #fff;
  color: var(--terracota);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.cta-final .btn-primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.cta-final-micro {
  margin-top: 2rem;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.cta-final-micro a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s ease;
}
.cta-final-micro a:hover { border-color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   14. FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(250,247,252,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo svg {
  width: 180px;
  height: auto;
  margin-bottom: 1rem;
}
.footer-tagline { font-size: 15px; max-width: 26ch; }
.footer-col-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-list a {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,247,252,0.7);
  transition: color 0.3s ease;
}
.footer-list a:hover { color: var(--terracota-l); }
.footer-list svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

.footer-bottom {
  border-top: 1px solid rgba(250,247,252,0.10);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 13px;
  color: rgba(250,247,252,0.5);
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════
   WHATSAPP FLOTANTE
   ═══════════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s var(--ease);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.10); }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-grid, .natalia-grid { grid-template-columns: 1fr; }
  .natalia-grid > div:first-child { order: 2; }
  .hero-visual, .natalia-visual { max-width: 460px; margin: 0 auto; }
  .authority-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .problema-grid, .incluye-grid, .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: span 2; }
}

@media (max-width: 640px) {
  body { padding-top: 72px; }
  .sticky-bar { font-size: 13px; padding: 0.6rem 0.75rem; }
  .countdown-mini { min-width: 90px; font-size: 13px; }
  .hero-bullets { flex-direction: column; gap: 0.5rem; }
  .problema-grid, .incluye-grid, .testimonios-grid, .para-quien-grid { grid-template-columns: 1fr; }
  .countdown-grid { gap: 0.35rem; }
  .inversion-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { width: 52px; height: 52px; bottom: 1rem; right: 1rem; }
  .wa-float svg { width: 26px; height: 26px; }
  .temario-content-inner { padding-left: 1.75rem; }
  .temario-label { gap: 0.75rem; }
  .temario-label-num { width: 30px; height: 30px; font-size: 14px; }
  .temario-label-title { font-size: 17px; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
