/* =====================================================================
   Escuela de Traducción Mogul — Landing "Traducción Médica"
   Propuesta Strata Studio · paleta bordeaux académico · 1 acento
   Tipografía self-hosted: Newsreader (display serif) + Hanken Grotesk (UI)
   ===================================================================== */

/* ---------- LOCAL FONTS (variable .ttf, self-hosted) ---------- */
@font-face {
  font-family: 'Newsreader';
  src: url('assets/font/Newsreader/Newsreader-roman-var.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('assets/font/Newsreader/Newsreader-italic-var.ttf') format('truetype');
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('assets/font/HankenGrotesk/HankenGrotesk-var.ttf') format('truetype');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
  /* brand — Cyan marca (color real del cliente #00B4FA) sobre navy */
  --bordeaux:        #0B6FA0;   /* deep cyan: accent AA-en-blanco + fills con texto claro */
  --bordeaux-deep:   #0A2A43;   /* navy: bandas y superficies oscuras */
  --bordeaux-bright: #00B4FA;   /* cyan marca brillante: hover, glow, realce sobre navy */
  --gold:            #00B4FA;   /* realce sobre oscuro -> cyan brillante (sello, énfasis, kicker--ondark) */

  /* neutrals (off-white frío hacia el azul, NO beige) */
  --paper:   #F6F9FB;
  --cloud:   #E9F1F6;
  --cloud-2: #DCE7EF;
  --ink:     #0E1B26;
  --ink-2:   #1F2D38;   /* body paragraphs */
  --muted:   #566773;   /* secondary text, AA en paper */

  /* on dark (navy) surfaces */
  --on-dark:       #EAF4FB;
  --on-dark-muted: rgba(234, 244, 251, 0.72);

  --line:        rgba(14, 27, 38, 0.12);
  --line-strong: rgba(14, 27, 38, 0.20);
  --line-dark:   rgba(234, 244, 251, 0.18);

  /* motion (emil-style strong curves) */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  /* shape lock: surfaces 14px · chips/pills full · inputs 10px */
  --r-surface: 14px;
  --r-input:   10px;

  /* z-index scale */
  --z-nav: 1000;
  --z-sticky: 900;
  --z-urgency: 1100;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink-2);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

/* ---------- LAYOUT ---------- */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.section { padding-block: clamp(72px, 10vw, 132px); }
.section--tight { padding-block: clamp(54px, 7vw, 88px); }

/* eyebrow — used sparingly (max ~1 per 3 sections) */
.kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.kicker--ondark { color: var(--gold); }

.lede {
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-surface);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.16s var(--ease-out),
              background-color 0.2s ease,
              box-shadow 0.2s ease,
              color 0.2s ease;
  will-change: transform;
}
.btn:active { transform: scale(0.975); }

.btn--solid {
  background: var(--bordeaux);
  color: var(--on-dark);
  box-shadow: 0 1px 2px rgba(8, 30, 50, 0.18), 0 14px 30px -14px rgba(8, 30, 50, 0.5);
}
.btn--ondark {
  background: var(--paper);
  color: var(--bordeaux);
  box-shadow: 0 14px 34px -16px rgba(0, 0, 0, 0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn--ghost-ondark {
  background: transparent;
  color: var(--on-dark);
  box-shadow: inset 0 0 0 1px var(--line-dark);
}
.btn--block { width: 100%; }

@media (hover: hover) and (pointer: fine) {
  .btn--solid:hover  { background: var(--bordeaux-bright); transform: translateY(-1px); }
  .btn--ondark:hover { transform: translateY(-1px); box-shadow: 0 20px 42px -18px rgba(0,0,0,0.6); }
  .btn--ghost:hover  { box-shadow: inset 0 0 0 1px var(--ink); }
  .btn--ghost-ondark:hover { background: rgba(234,244,251,0.08); }
}

/* ---------- URGENCY BAR ---------- */
.urgency {
  position: relative;
  z-index: var(--z-urgency);
  background: var(--bordeaux-deep);
  color: var(--on-dark);
  text-align: center;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.urgency b { font-weight: 600; }
.countdown {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 5vw, 64px);
  background: #ffffff;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s ease, border-color 0.3s ease,
              box-shadow 0.3s ease, transform 0.35s var(--ease-out);
}
nav.scrolled {
  background: #ffffff;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(27, 19, 22, 0.4);
}
nav.nav-hidden { transform: translateY(-100%); }

.brand { display: flex; align-items: center; gap: 0.65rem; line-height: 1; }
.brand__logo { width: 42px; height: 42px; display: block; flex: none; }
.brand__text { display: flex; flex-direction: column; }
footer .brand__logo { width: 46px; height: 46px; }
.brand__name {
  font-family: 'Newsreader', serif;
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: var(--bordeaux);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s ease;
}
@media (hover: hover) { .nav__links a:hover { color: var(--bordeaux); } }
.nav__cta { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
.nav__burger { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 85% 0%, var(--bordeaux-bright) 0%, var(--bordeaux) 42%, var(--bordeaux-deep) 100%);
  color: var(--on-dark);
  padding-top: clamp(118px, 16vh, 168px);
  padding-bottom: clamp(64px, 9vw, 110px);
  overflow: hidden;
}
.hero::after { /* subtle paper grain edge */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 120%, rgba(0,0,0,0.28), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero__kicker { color: var(--gold); margin-bottom: 1.3rem; }
.hero h1 {
  color: var(--on-dark);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  /* descender clearance for italic */
  line-height: 1.1;
}
.hero__sub {
  font-size: clamp(1.05rem, 0.98rem + 0.45vw, 1.22rem);
  color: var(--on-dark-muted);
  max-width: 38ch;
  margin-bottom: 2.2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* hero visual — diploma + module progress */
.credential { position: relative; display: grid; justify-items: center; }
.diploma {
  width: min(100%, 420px);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-surface);
  padding: 2.2rem 2rem 1.8rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 40px 80px -40px rgba(0,0,0,0.7);
  transform: rotate(-2.2deg);
  outline: 1px solid rgba(168, 130, 75, 0.4);
  outline-offset: -10px;
}
.diploma__top {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.seal {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, #5CC8FF, var(--gold));
  color: #08233A; font-family: 'Newsreader', serif; font-style: italic;
  font-weight: 700; font-size: 1.1rem;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
}
.diploma__title {
  font-family: 'Newsreader', serif;
  font-size: 1.9rem; line-height: 1.05; margin: 1.4rem 0 0.3rem;
  letter-spacing: -0.01em;
}
.diploma__title em { font-style: italic; color: var(--bordeaux); }
.diploma__meta { font-size: 0.86rem; color: var(--muted); }
.diploma__rule { height: 1px; background: var(--line); margin: 1.3rem 0 1.1rem; }
.diploma__sign { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.diploma__sign small { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.diploma__sign .name { font-family: 'Newsreader', serif; font-style: italic; font-size: 1.15rem; color: var(--ink); }

.modules {
  width: min(86%, 320px);
  margin-top: -34px;
  margin-left: auto;
  background: rgba(234, 244, 251, 0.96);
  color: var(--ink);
  border-radius: var(--r-surface);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,0.7);
  transform: rotate(1.6deg);
  backdrop-filter: blur(2px);
}
.modules h4 { font-family: 'Hanken Grotesk', sans-serif; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.7rem; font-weight: 700; }
.modules ul { list-style: none; display: grid; gap: 0.45rem; }
.modules li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; }
.modules .dot {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--bordeaux); color: var(--paper);
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.modules .dot svg { width: 11px; height: 11px; }
/* animate only when JS arms it (default = visible) */
.credential.armed .modules .dot { transform: scale(0.6); opacity: 0; }
.credential.armed.in .modules .dot { transform: scale(1); opacity: 1; }
.credential.armed.in .modules li:nth-child(1) .dot { transition-delay: 0.15s; }
.credential.armed.in .modules li:nth-child(2) .dot { transition-delay: 0.25s; }
.credential.armed.in .modules li:nth-child(3) .dot { transition-delay: 0.35s; }
.credential.armed.in .modules li:nth-child(4) .dot { transition-delay: 0.45s; }

/* ---------- TRUST CHIPS ---------- */
.trust { background: var(--paper); }
.trust__row {
  display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center;
  padding-block: 1.4rem;
}
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: var(--cloud);
  font-size: 0.9rem; font-weight: 500; color: var(--ink-2);
}
.chip svg { width: 17px; height: 17px; color: var(--bordeaux); flex: none; }

/* ---------- SECTION HEAD ---------- */
.head { max-width: 30ch; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.head h2 {
  font-size: clamp(2rem, 1.3rem + 2.7vw, 3.2rem);
  margin-top: 0.7rem;
}
.head--center { margin-inline: auto; text-align: center; max-width: 34ch; }

/* ---------- TRANSFORMATION (split, sticky head) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}
.split__head { position: sticky; top: 110px; }
.split__head h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); }
.split__head p { margin-top: 1.1rem; color: var(--muted); max-width: 40ch; }
.outcomes { display: grid; gap: 0; }
.outcome {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.outcome:last-child { border-bottom: 1px solid var(--line); }
.outcome__n {
  font-family: 'Newsreader', serif; font-style: italic;
  font-size: 1.3rem; color: var(--bordeaux); line-height: 1;
  padding-top: 0.1rem;
}
.outcome h3 { font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 1.12rem; color: var(--ink); margin-bottom: 0.35rem; letter-spacing: 0; }
.outcome p { color: var(--muted); font-size: 0.98rem; }

/* ---------- INCLUYE (feature grid) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 6 tiles -> 2 full rows, no empty cell */
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  overflow: hidden;
}
.feature {
  background: var(--paper);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: background-color 0.25s ease;
}
.feature__ic {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--cloud); color: var(--bordeaux);
  margin-bottom: 0.3rem;
}
.feature__ic svg { width: 22px; height: 22px; }
.feature h3 { font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--ink); letter-spacing: 0; }
.feature p { font-size: 0.95rem; color: var(--muted); }
.feature .big {
  font-family: 'Newsreader', serif; font-style: italic;
  font-size: 1.6rem; color: var(--bordeaux); font-weight: 600;
}
@media (hover: hover) { .feature:hover { background: var(--cloud); } }

/* 8th tile: brand CTA (fills grid + adds color variation) */
.feature--cta { background: var(--bordeaux); color: var(--on-dark); justify-content: center; gap: 0.5rem; }
.feature--cta h3 { color: var(--on-dark); }
.feature--cta p { color: var(--on-dark-muted); }
.feature--cta .go { margin-top: 0.3rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; }
@media (hover: hover) { .feature--cta:hover { background: var(--bordeaux-bright); } }

@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------- PROFESORA (split) ---------- */
.teacher { background: var(--cloud); }
.teacher__grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-surface);
  background: var(--cloud-2);
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(27,19,22,0.6);
  border: 1px solid var(--line);
}
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block; }
.teacher__grid h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.9rem); }
.teacher__grid blockquote {
  margin: 1.3rem 0 0;
  font-family: 'Newsreader', serif;
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem);
  line-height: 1.4; color: var(--ink-2);
}
.teacher__grid .who { margin-top: 1.4rem; font-size: 0.92rem; color: var(--muted); }
.teacher__grid .who b { color: var(--ink); font-weight: 700; }

/* ---------- BONOS RÁPIDOS ---------- */
.fast { background: var(--paper); }
.fast__banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem 2rem;
  background: var(--bordeaux);
  color: var(--on-dark);
  border-radius: var(--r-surface);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.5rem, 4vw, 2.6rem);
  margin-bottom: 2.4rem;
}
.fast__banner h2 { color: var(--on-dark); font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); max-width: 18ch; }
.fast__banner .timer { text-align: right; }
.fast__banner .timer small { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 0.3rem; }
.fast__banner .timer .countdown { font-family: 'Newsreader', serif; font-style: italic; font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.6rem); color: var(--gold); }
.dicc {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-surface); overflow: hidden;
}
.dicc__item { background: var(--paper); padding: 1.4rem 1.5rem; display: flex; gap: 0.9rem; align-items: flex-start; }
.dicc__item .ic { color: var(--bordeaux); flex: none; margin-top: 2px; }
.dicc__item .ic svg { width: 22px; height: 22px; }
.dicc__item h3 { font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink); letter-spacing: 0; margin-bottom: 0.2rem; }
.dicc__item p { font-size: 0.9rem; color: var(--muted); }
.fast__foot { margin-top: 1.4rem; font-size: 0.95rem; color: var(--muted); text-align: center; }
.fast__foot b { color: var(--bordeaux); font-weight: 600; }

/* ---------- SÚPER BONOS (numbered list) ---------- */
.supers { background: var(--cloud); }
.supers__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.4rem; margin-bottom: 2.6rem; }
.supers__head h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); max-width: 20ch; }
.value-badge {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-surface);
  padding: 0.9rem 1.3rem; text-align: center; flex: none;
}
.value-badge small { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.value-badge b { font-family: 'Newsreader', serif; font-style: italic; font-size: 1.7rem; color: var(--bordeaux); font-weight: 700; }
.bonos-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 5vw, 4rem);
}
.bono {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  padding: 1.35rem 0; border-top: 1px solid var(--line);
}
.bono__n { font-family: 'Newsreader', serif; font-style: italic; font-size: 1.2rem; color: var(--bordeaux); line-height: 1.2; }
.bono h3 { font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 1.04rem; color: var(--ink); letter-spacing: 0; margin-bottom: 0.25rem; }
.bono p { font-size: 0.94rem; color: var(--muted); }

/* ---------- TESTIMONIO ---------- */
.testi { background: var(--paper); }
.testi__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.testi blockquote {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.4rem);
  line-height: 1.32; color: var(--ink); letter-spacing: -0.01em;
}
.testi blockquote .q { color: var(--bordeaux); font-style: italic; }
.testi .who { margin-top: 1.8rem; font-size: 0.96rem; color: var(--muted); }
.testi .who b { display: block; font-size: 1.05rem; color: var(--ink); font-weight: 700; font-family: 'Hanken Grotesk', sans-serif; }

/* ---------- GARANTÍA (split seal) ---------- */
.guarantee { background: var(--bordeaux-deep); color: var(--on-dark); }
.guarantee__grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.guarantee__seal {
  width: clamp(120px, 22vw, 170px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 35% 30%, rgba(0,180,250,0.95), var(--gold));
  color: #08233A; flex: none;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.35), 0 30px 60px -30px rgba(0,0,0,0.6);
}
.guarantee__seal b { font-family: 'Newsreader', serif; font-style: italic; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 0.9; }
.guarantee__seal small { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.3rem; font-weight: 700; }
.guarantee h2 { color: var(--on-dark); font-size: clamp(1.8rem, 1.3rem + 2vw, 2.7rem); }
.guarantee p { color: var(--on-dark-muted); margin-top: 1rem; max-width: 56ch; }
.guarantee .fine { font-size: 0.84rem; margin-top: 1rem; opacity: 0.78; }

/* ---------- PRECIOS ---------- */
.pricing { background: var(--paper); }
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}
.plan__label { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.plan__price { font-family: 'Newsreader', serif; font-size: 2.5rem; color: var(--ink); margin: 0.7rem 0 0.1rem; line-height: 1; }
.plan__price span { font-size: 0.95rem; font-family: 'Hanken Grotesk', sans-serif; color: var(--muted); }
.plan__note { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.4rem; }
.plan .btn { margin-top: auto; }
.plan--feat {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  box-shadow: 0 30px 60px -30px rgba(8,30,50,0.6);
}
.plan--feat .plan__label { color: var(--gold); }
.plan--feat .plan__price { color: var(--on-dark); }
.plan--feat .plan__price span { color: var(--on-dark-muted); }
.plan--feat .plan__note { color: var(--on-dark-muted); }
.plan__tag {
  align-self: flex-start; margin-bottom: 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  background: var(--gold); color: #08233A; padding: 0.3rem 0.7rem; border-radius: 999px;
}
@media (hover: hover) { .plan:hover { transform: translateY(-3px); } }
.pricing__fine { text-align: center; margin-top: 1.8rem; font-size: 0.88rem; color: var(--muted); }

/* single price block */
.price-single {
  max-width: 480px; margin-inline: auto; text-align: center;
  background: var(--bordeaux); color: var(--on-dark);
  border-radius: var(--r-surface); padding: clamp(2.4rem, 4vw, 3.2rem) clamp(1.6rem, 4vw, 2.6rem);
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 30px 60px -30px rgba(8, 30, 50, 0.6);
  position: relative; overflow: hidden;
}
.price-single::before {
  content: ""; position: absolute; top: -45%; left: 50%; transform: translateX(-50%);
  width: 140%; height: 90%;
  background: radial-gradient(circle, rgba(0,180,250,0.28), transparent 60%);
  pointer-events: none;
}
.price-single > * { position: relative; z-index: 1; }
.price-single .plan__label { color: var(--bordeaux-bright); }
.price-single__amount {
  display: inline-flex; align-items: flex-start; justify-content: center; gap: 0.08em;
  font-family: 'Newsreader', serif; font-weight: 600;
  font-size: clamp(4rem, 2.6rem + 8vw, 6rem); line-height: 0.92;
  color: var(--on-dark); margin: 0.5rem 0 0.3rem;
}
.price-single__amount .cur { font-size: 0.4em; font-weight: 500; margin-top: 0.3em; color: var(--bordeaux-bright); }
.price-single__iva {
  font-family: 'Hanken Grotesk', sans-serif; font-size: 0.155em; font-weight: 700;
  letter-spacing: 0.08em; line-height: 1.2; color: var(--on-dark-muted);
  margin-top: 0.6em; text-align: left;
}
.price-single__sub { color: var(--on-dark-muted); font-size: 0.98rem; margin-bottom: 1.5rem; max-width: 34ch; }
.price-single__list { list-style: none; display: grid; gap: 0.6rem; margin-bottom: 1.8rem; text-align: left; width: 100%; max-width: 330px; }
.price-single__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.96rem; color: var(--on-dark); }
.price-single__list li::before { content: "✓"; color: var(--bordeaux-bright); font-weight: 800; flex: none; line-height: 1.4; }
.price-single__guarantee { margin-top: 1rem; font-size: 0.86rem; color: var(--on-dark-muted); }

/* ---------- FAQ ---------- */
.faq { background: var(--cloud); }
.faq__list { max-width: 760px; margin-inline: auto; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left;
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--ink);
}
.faq__q .pm { position: relative; width: 18px; height: 18px; flex: none; }
.faq__q .pm::before, .faq__q .pm::after {
  content: ""; position: absolute; background: var(--bordeaux); border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}
.faq__q .pm::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__q .pm::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item.open .pm::after { transform: scaleY(0); opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s var(--ease-out); }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 1.5rem; color: var(--muted); max-width: 64ch; }

/* ---------- FINAL CTA ---------- */
.final {
  background: var(--bordeaux-deep);
  color: var(--on-dark); text-align: center;
}
.final h2 { color: var(--on-dark); font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); max-width: 18ch; margin-inline: auto; }
.final p { color: var(--on-dark-muted); margin: 1.1rem auto 2rem; max-width: 48ch; font-size: 1.1rem; }

/* ---------- FOOTER ---------- */
footer { background: var(--bordeaux-deep); color: var(--on-dark-muted); padding-block: 2.4rem; }
/* el sticky CTA fijo tapaba el footer -> reservar espacio para que los enlaces legales se vean.
   OJO: en vivo el index.php genera su propio <body> SIN la clase body--has-sticky,
   por eso esta regla va directa a footer (no depende de la clase). */
footer { padding-bottom: 116px; }
footer .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
footer .brand__name { color: var(--paper); }
footer .brand__sub { color: var(--on-dark-muted); }
footer small { font-size: 0.84rem; }
footer a { color: var(--on-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.8rem clamp(16px, 5vw, 24px);
  background: rgba(246, 249, 251, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px -18px rgba(27,19,22,0.4);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-drawer);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta__price { line-height: 1.1; }
.sticky-cta__price b { font-family: 'Newsreader', serif; font-size: 1.3rem; color: var(--ink); }
.sticky-cta__price small { display: block; font-size: 0.74rem; color: var(--muted); }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .credential { order: -1; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split__head { position: static; }
  .teacher__grid { grid-template-columns: 1fr; }
  .portrait { max-width: 360px; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger {
    display: grid; gap: 5px; padding: 8px;
  }
  .nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
  nav.open .nav__links {
    display: flex; position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 1.1rem;
    background: var(--paper); padding: 1.4rem clamp(20px, 5vw, 64px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px -18px rgba(27,19,22,0.4);
  }
  nav.open .nav__links a { font-size: 1.05rem; }
  .bonos-list { grid-template-columns: 1fr; }
  .dicc { grid-template-columns: 1fr; }
  .supers__head { flex-direction: column; align-items: flex-start; }
  .fast__banner { flex-direction: column; align-items: flex-start; }
  .fast__banner .timer { text-align: left; }
  .guarantee__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .body--has-sticky { padding-bottom: 76px; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .modules .dot { opacity: 1 !important; transform: none !important; }
  nav.nav-hidden { transform: none; }
}

/* =====================================================================
   MOTION LAYER v2 — scroll progress · grain · hero spotlight + aurora ·
   headline word reveal · diploma 3D tilt · specialties marquee ·
   count-up · button sheen · nav underline + scroll-spy.
   Progressive (content works without JS) + reduced-motion safe.
   ===================================================================== */

/* scroll progress (top hairline) */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 2px;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold), var(--bordeaux-bright));
  z-index: calc(var(--z-nav) + 2);
  will-change: transform;
}

/* film grain — academic paper tactility */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* hero layered light (spotlight + drifting aurora) */
.hero__grid { position: relative; z-index: 2; }
.hero__aura, .hero__spot { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__aura { overflow: hidden; }
.hero__aura::before, .hero__aura::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(64px);
}
.hero__aura::before {
  width: 48vw; height: 48vw; left: -12vw; top: -14vw; opacity: 0.55;
  background: radial-gradient(circle, var(--bordeaux-bright), transparent 64%);
  animation: auraA 23s var(--ease-in-out) infinite alternate;
}
.hero__aura::after {
  width: 40vw; height: 40vw; right: -10vw; bottom: -16vw; opacity: 0.4;
  background: radial-gradient(circle, rgba(0,180,250,0.5), transparent 60%);
  animation: auraB 27s var(--ease-in-out) infinite alternate;
}
@keyframes auraA { to { transform: translate(7vw, 5vw) scale(1.12); } }
@keyframes auraB { to { transform: translate(-6vw, -4vw) scale(1.14); } }
.hero__spot {
  opacity: 0; transition: opacity 0.45s ease;
  background: radial-gradient(360px 360px at var(--mx, 72%) var(--my, 18%), rgba(0,180,250,0.22), transparent 62%);
}
.hero.spot-on .hero__spot { opacity: 1; }

/* headline word reveal (mask-up, staggered) */
.hero h1[data-split] .word {
  display: inline-block; overflow: hidden; vertical-align: top;
  padding-bottom: 0.1em; margin-bottom: -0.1em;
}
.hero h1[data-split] .word .wi {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.9s var(--ease-out);
  transition-delay: calc(var(--wi, 0) * 45ms);
}
.hero h1[data-split].in .word .wi { transform: none; }

/* diploma 3D tilt (pointer parallax) */
[data-tilt] { perspective: 1100px; }
[data-tilt] .diploma {
  transform: rotate(-2.2deg) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.4s var(--ease-out);
}
[data-tilt] .modules {
  transform: rotate(1.6deg) rotateX(calc(var(--rx, 0deg) * 0.55)) rotateY(calc(var(--ry, 0deg) * 0.55));
  transition: transform 0.4s var(--ease-out);
}
[data-tilt].tilting .diploma, [data-tilt].tilting .modules { transition: transform 0.1s linear; }

/* specialties carousel (pills) */
.specs { background: var(--bordeaux-deep); padding-block: 1.5rem; }
.specs__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.specs__track {
  display: flex; align-items: center; white-space: nowrap; width: max-content;
  animation: specscroll 26s linear infinite; will-change: transform;
}
.specs:hover .specs__track { animation-play-state: paused; }
.specs__group { display: flex; align-items: center; gap: 0.9rem; padding-right: 0.9rem; flex: none; }
.spec {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1.15rem; border-radius: 999px;
  background: rgba(234, 244, 251, 0.06);
  box-shadow: inset 0 0 0 1px rgba(234, 244, 251, 0.16);
  color: var(--on-dark); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.005em;
}
.spec i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }
@keyframes specscroll { to { transform: translateX(-50%); } }

/* count-up numerals */
.num { font-variant-numeric: tabular-nums; }

/* button sheen (sweep on hover) */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: skewX(-18deg); pointer-events: none; z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover::after { animation: sheen 0.75s var(--ease-out); }
}
@keyframes sheen { from { left: -130%; } to { left: 140%; } }

/* nav underline + scroll-spy active */
.nav__links a { position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px;
  background: var(--bordeaux); border-radius: 2px;
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.3s var(--ease-out);
}
@media (hover: hover) { .nav__links a:hover::after { transform: scaleX(1); } }
.nav__links a.active { color: var(--bordeaux); }
.nav__links a.active::after { transform: scaleX(1); }

/* reduced motion: kill ambient motion, keep content */
@media (prefers-reduced-motion: reduce) {
  .grain { display: none; }
  .hero__aura::before, .hero__aura::after { animation: none; }
  .specs__track { animation: none; transform: none; }
  .specs__group[aria-hidden="true"] { display: none; }
  .btn::after { display: none; }
  .hero h1[data-split] .word .wi { transform: none; }
}

/* =====================================================================
   MOTION LAYER v3 — magnetic CTAs · heading wipe · kicker line-draw ·
   gold shimmer "médica" · seal shimmer · portrait curtain · price
   count-up · trust chips stagger · CTA arrow nudge · outcome line-draw ·
   sticky pulse · hero scroll cue · testimonial marker.
   ===================================================================== */

/* heading clip wipe on reveal (negative inset clears italic overhang) */
.reveal h2 { clip-path: inset(-4% -8% 110% -8%); transition: clip-path 0.85s var(--ease-out) 0.06s; }
.reveal.in h2 { clip-path: inset(-14% -8% -14% -8%); }

/* kicker line-draw */
[data-reveal] .kicker { display: inline-flex; align-items: center; }
[data-reveal] .kicker::before {
  content: ""; width: 0; height: 1px; background: currentColor; margin-right: 0;
  transition: width 0.6s var(--ease-out) 0.15s, margin-right 0.6s var(--ease-out) 0.15s;
}
[data-reveal].in .kicker::before { width: 24px; margin-right: 10px; }

/* gold shimmer on the hero italic "médica" */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 em {
    background: linear-gradient(100deg, var(--gold) 0%, #BFE9FF 28%, var(--gold) 56%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
  }
}
@keyframes shimmer { to { background-position: -220% 0; } }

/* metallic seal shimmer (hero diploma seal + guarantee seal) */
.seal, .guarantee__seal { position: relative; overflow: hidden; }
.seal::after, .guarantee__seal::after {
  content: ""; position: absolute; inset: -30%;
  background: conic-gradient(from 0deg, transparent 0 58%, rgba(255,255,255,0.45) 74%, transparent 86% 100%);
  mix-blend-mode: screen; animation: sealspin 7s linear infinite; pointer-events: none;
}
@keyframes sealspin { to { transform: rotate(360deg); } }

/* portrait curtain reveal (left -> right wipe, on top of fade) */
.portrait.reveal { clip-path: inset(0 0 0 100%); transition: clip-path 0.9s var(--ease-out), opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.portrait.reveal.in { clip-path: inset(0 0 0 0); }

/* trust chips staggered pop */
.trust__row.reveal .chip { opacity: 0; transform: translateY(10px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.trust__row.reveal.in .chip { opacity: 1; transform: none; }
.trust__row.reveal.in .chip:nth-child(1) { transition-delay: 0.04s; }
.trust__row.reveal.in .chip:nth-child(2) { transition-delay: 0.12s; }
.trust__row.reveal.in .chip:nth-child(3) { transition-delay: 0.20s; }
.trust__row.reveal.in .chip:nth-child(4) { transition-delay: 0.28s; }

/* CTA arrow nudge */
.feature--cta .go { transition: transform 0.25s var(--ease-out); }
@media (hover: hover) { .feature--cta:hover .go { transform: translateX(5px); } }

/* outcome top hairline draw-in */
.outcome { position: relative; }
.outcome.reveal::before {
  content: ""; position: absolute; top: -1px; left: 0; height: 2px; width: 0;
  background: var(--bordeaux); transition: width 0.7s var(--ease-out) 0.12s;
}
.outcome.reveal.in::before { width: 100%; }

/* sticky CTA gentle gold pulse */
.sticky-cta.show .btn { animation: ctapulse 2.6s ease-in-out 1s infinite; }
@keyframes ctapulse {
  0%, 100% { box-shadow: 0 1px 2px rgba(8,30,50,0.18), 0 14px 30px -14px rgba(8,30,50,0.5); }
  50%      { box-shadow: 0 1px 2px rgba(8,30,50,0.18), 0 14px 34px -8px rgba(0,180,250,0.75); }
}

/* hero scroll cue */
.hero__cue {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 42px; background: rgba(234,244,251,0.22); overflow: hidden; z-index: 2;
}
.hero__cue span { position: absolute; left: 0; top: -45%; width: 1px; height: 45%; background: var(--gold); animation: cue 1.9s var(--ease-in-out) infinite; }
@keyframes cue { to { top: 100%; } }

/* testimonial marker highlight draw */
.testi__inner.reveal .q {
  background-image: linear-gradient(transparent 62%, rgba(0,180,250,0.28) 0);
  background-size: 0% 100%; background-repeat: no-repeat;
  transition: background-size 0.8s var(--ease-out) 0.25s;
}
.testi__inner.reveal.in .q { background-size: 100% 100%; }

/* reduced motion: neutralize v3 ambient/clip motion, keep content visible */
@media (prefers-reduced-motion: reduce) {
  .reveal h2 { clip-path: none !important; }
  .portrait.reveal { clip-path: none !important; }
  .outcome.reveal::before { width: 100% !important; transition: none; }
  .trust__row.reveal .chip { opacity: 1 !important; transform: none !important; }
  [data-reveal] .kicker::before { width: 24px; margin-right: 10px; transition: none; }
  .hero h1 em { animation: none; }
  .seal::after, .guarantee__seal::after { animation: none; opacity: 0; }
  .hero__cue, .sticky-cta.show .btn { animation: none; }
  .hero__cue span { display: none; }
  .testi__inner.reveal .q { background-size: 100% 100% !important; transition: none; }
}

/* =====================================================================
   WAVE SEPARATORS — ondas entre secciones (estilo Saquimi operaciones),
   adaptadas a la paleta bordeaux. div bg = color de arriba, path fill =
   color de abajo. Seam-free en superficies planas.
   ===================================================================== */
.wave-separator { line-height: 0; margin: -1px 0; position: relative; z-index: 2; }
.wave-separator svg { display: block; width: 100%; height: 72px; }
@media (max-width: 768px) { .wave-separator svg { height: 42px; } }

/* hero bottom wave (sobre el degradado del hero, fill = paper) */
.hero { padding-bottom: clamp(96px, 12vw, 140px); }
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; pointer-events: none; }
.hero__wave svg { display: block; width: 100%; height: 76px; }
@media (max-width: 768px) { .hero__wave svg { height: 44px; } }

/* =====================================================================
   SEAL BADGE — medallón de garantía SVG animado (anillo de texto girando
   + disco oro + número serif). Reemplaza el sello plano anterior.
   ===================================================================== */
.seal-badge {
  width: clamp(150px, 24vw, 196px); aspect-ratio: 1; flex: none;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.45));
}
.seal-badge__svg { width: 100%; height: 100%; display: block; overflow: visible; }
.seal-badge__ring { transform-origin: 100px 100px; animation: sealrot 20s linear infinite; }
@keyframes sealrot { to { transform: rotate(360deg); } }
.seal-badge__txt {
  font-family: 'Hanken Grotesk', sans-serif; font-size: 11.2px; font-weight: 700;
  letter-spacing: 1.4px; fill: var(--on-dark); text-transform: uppercase;
}
.seal-badge__num {
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 600;
  font-size: 64px; fill: #08233A;
}
.seal-badge__lbl {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 800;
  font-size: 14px; letter-spacing: 3.5px; fill: #08233A;
}
@media (prefers-reduced-motion: reduce) { .seal-badge__ring { animation: none; } }

/* ===== ROTATOR — fade crossfade (1 item a la vez, estilo testimonio) ===== */
.rotator { background: transparent; text-align: center; padding-block: clamp(2rem, 4vw, 3rem); }
.rotator__wrap { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.rotator .kicker { color: var(--bordeaux); }
.rotator__stage { display: grid; place-items: center; min-height: 2.4em; width: 100%; }
.rotator__item {
  grid-area: 1 / 1;
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.7rem); line-height: 1.15; color: var(--ink);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none; padding-inline: 1rem;
}
.rotator__item.is-active { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rotator__item { transition: none; } }

/* ===== PROMO (anclaje + urgencia) en el precio ===== */
.price-single__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--paper); color: var(--bordeaux);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1rem;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.45);
}
.price-single__was {
  display: inline-flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; justify-content: center;
  color: var(--on-dark-muted); font-size: 1.02rem; margin-bottom: 0.15rem;
}
.price-single__was s { text-decoration-thickness: 2px; opacity: 0.9; }
.price-single__save {
  background: var(--bordeaux-bright); color: var(--bordeaux-deep);
  font-weight: 800; font-size: 0.8rem; padding: 0.18rem 0.6rem; border-radius: 999px;
}

/* ===== Selección de texto legible en cualquier fondo (navy o claro) ===== */
::selection     { background: #0B6FA0; color: #ffffff; }
::-moz-selection { background: #0B6FA0; color: #ffffff; }

/* ============================================================
   SELLO DE GARANTÍA v4 — estampa con anillo de luz giratorio (animado)
============================================================ */
.grt-seal {
  flex: none;
  display: flex; flex-direction: column; align-items: center; gap: 15px;
}
.grt-seal__stamp {
  position: relative;
  width: clamp(150px, 22vw, 172px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; isolation: isolate;
  animation: sealGlow 3.4s ease-in-out infinite;
}
.grt-seal__stamp::before {           /* anillo de luz giratorio (conic sweep) */
  content: ""; position: absolute; inset: 0; border-radius: 50%; z-index: -1;
  background: conic-gradient(from 0deg, transparent 0deg, var(--bordeaux-bright) 70deg, #7FE0FF 110deg, var(--bordeaux-bright) 150deg, transparent 230deg);
  -webkit-mask: radial-gradient(circle, transparent 0 49.5%, #000 50.5% 100%);
          mask: radial-gradient(circle, transparent 0 49.5%, #000 50.5% 100%);
  animation: sealSpin 6s linear infinite;
}
.grt-seal__stamp::after {            /* aro punteado contra-girando */
  content: ""; position: absolute; inset: 10px; border-radius: 50%;
  border: 1px dotted rgba(234, 244, 251, 0.32);
  animation: sealSpinRev 26s linear infinite;
}
.grt-seal__rim { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(0, 180, 250, 0.28); }
.grt-seal__core { display: flex; flex-direction: column; align-items: center; }
.grt-seal__top {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 800;
  font-size: 0.56rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--bordeaux-bright); padding-left: 0.32em;
}
.grt-seal__num {
  font-family: 'Newsreader', Georgia, serif; font-style: italic; font-weight: 500;
  font-size: clamp(2.9rem, 5.5vw, 3.3rem); line-height: 0.95; color: var(--on-dark);
  margin-top: 4px;
}
.grt-seal__unit {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 800;
  font-size: 0.7rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--on-dark); margin-top: 3px; padding-left: 0.34em; opacity: 0.92;
}
.grt-seal__cap {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-dark-muted); text-align: center;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }
@keyframes sealSpinRev { to { transform: rotate(-360deg); } }
@keyframes sealGlow { 0%, 100% { filter: drop-shadow(0 0 0 rgba(0,180,250,0)); } 50% { filter: drop-shadow(0 0 14px rgba(0,180,250,0.35)); } }
@media (prefers-reduced-motion: reduce) {
  .grt-seal__stamp, .grt-seal__stamp::before, .grt-seal__stamp::after { animation: none; }
}

/* ============================================================
   WIDGET WHATSAPP FLOTANTE — patrón Strata (adaptado a marca Mogul)
============================================================ */
.wa-btn { position: fixed; bottom: 22px; right: 22px; z-index: 9999; transition: bottom 0.4s var(--ease-drawer); }
/* Cuando la barra "Inscribirme" sube, elevamos el FAB para que no la tape */
.sticky-cta.show ~ .wa-btn { bottom: 92px; }
@media (max-width: 720px) { .wa-btn { right: 16px; } .sticky-cta.show ~ .wa-btn { bottom: 96px; } }
.wa-trigger {
  width: 60px; height: 60px; padding: 0; border: none; cursor: pointer;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  position: relative; z-index: 2;
}
.wa-trigger:hover { transform: scale(1.08); box-shadow: 0 14px 40px rgba(37,211,102,0.6); }
.wa-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid #25D366; pointer-events: none;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-pulse { animation: none; opacity: 0; } }
.wa-form {
  position: absolute; bottom: 76px; right: 0; width: 330px; max-width: calc(100vw - 40px);
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(8,30,50,0.28);
  transform: scale(0.82) translateY(18px); transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.3s ease;
}
.wa-form.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.wa-form-header {
  background: linear-gradient(135deg, var(--bordeaux-deep), var(--bordeaux));
  padding: 18px 18px 15px; display: flex; align-items: center; gap: 12px;
  position: relative; color: #fff;
}
.wa-avatar {
  width: 46px; height: 46px; min-width: 46px; border-radius: 50%;
  background: rgba(0,180,250,0.20); border: 1.5px solid rgba(0,180,250,0.5);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.wa-agent-name { font-family: 'Hanken Grotesk', sans-serif; color: #fff; font-weight: 700; font-size: 0.96rem; }
.wa-agent-tagline { color: rgba(234,244,251,0.75); font-size: 0.72rem; margin-top: 2px; }
.wa-close {
  position: absolute; top: 12px; right: 12px; width: 26px; height: 26px;
  background: rgba(255,255,255,0.18); border: none; border-radius: 50%;
  color: #fff; cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.25s;
}
.wa-close:hover { background: rgba(255,255,255,0.32); transform: rotate(90deg); }
.wa-form-body { padding: 16px 18px 18px; }
.wa-bubble {
  background: rgba(11,111,160,0.07); border: 1px solid rgba(11,111,160,0.14);
  border-radius: 12px 12px 12px 4px; padding: 11px 14px;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 0.86rem; color: var(--ink-2);
  line-height: 1.55; margin-bottom: 14px;
}
.wa-form-body label {
  display: block; font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.68rem; font-weight: 700; color: var(--ink);
  margin: 10px 0 5px; text-transform: uppercase; letter-spacing: 0.13em;
}
.wa-form-body label:first-of-type { margin-top: 0; }
.wa-form-body .req { color: var(--bordeaux); margin-left: 2px; }
.wa-form-body input {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--line-strong);
  border-radius: 9px; font-family: 'Hanken Grotesk', sans-serif; font-size: 0.9rem;
  color: var(--ink); background: #FAFCFD; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.wa-form-body input:focus { border-color: var(--bordeaux-bright); box-shadow: 0 0 0 3px rgba(0,180,250,0.18); background: #fff; }
.wa-form-body input.field-warn { border-color: #E04B4B; background: #FFF6F6; }
.wa-send-btn {
  margin-top: 15px; width: 100%; padding: 12px;
  background: #25D366; color: #fff; border: none; border-radius: 11px;
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 0.92rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.25s, background 0.2s;
}
.wa-send-btn:hover { transform: translateY(-1px); background: #20bd5b; box-shadow: 0 10px 24px -8px rgba(37,211,102,0.6); }

/* ============================================================
   CAPA "VIDA" — estilo causce adaptado (con vida pero pro)
   2026-06-30 · acentos cálidos + blobs + doodles + pills
============================================================ */
:root{
  --coral:      #FF6F5E;
  --coral-soft: #FF9C8F;
  --mango:      #FFB23E;
}

/* --- botones pill + hover con más vida --- */
.btn { border-radius: 999px; }
@media (hover: hover) and (pointer: fine) {
  .btn--solid:hover  { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 30px -10px rgba(0,180,250,0.55); }
  .btn--ondark:hover { transform: translateY(-2px) scale(1.02); }
}

/* --- blobs orgánicos de fondo --- */
.decor { position: relative; overflow: hidden; }
.decor > .wrap { position: relative; z-index: 3; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(36px);
  opacity: 0.42; pointer-events: none; z-index: 0;
  animation: blobFloat 15s ease-in-out infinite;
}
.blob--coral { background: radial-gradient(circle, var(--coral) 0%, transparent 60%); }
.blob--cyan  { background: radial-gradient(circle, var(--bordeaux-bright) 0%, transparent 60%); }
.blob--mango { background: radial-gradient(circle, var(--mango) 0%, transparent 60%); }
.blob--b { animation-duration: 19s; animation-direction: reverse; }
/* movimiento contenido para no empujar el blob contra el borde de la sección */
@keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(10px,-12px) scale(1.04); } }

/* --- doodles flotando (sparkles, puntos, líneas) --- */
.doodle { position: absolute; pointer-events: none; z-index: 1; }
.doodle--float   { animation: ddFloat 7s ease-in-out infinite; }
.doodle--floatb  { animation: ddFloat 9s ease-in-out infinite reverse; }
.doodle--twinkle { animation: ddTwinkle 3.4s ease-in-out infinite; }
.doodle--spin    { animation: ddSpin 22s linear infinite; }
@keyframes ddFloat   { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-13px) rotate(6deg); } }
@keyframes ddTwinkle { 0%,100% { opacity: 0.35; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes ddSpin    { to { transform: rotate(360deg); } }

/* --- squiggle bajo títulos (subrayado hecho a mano) --- */
.squiggle { display: block; width: 132px; height: 13px; margin-top: 0.55rem; color: var(--coral); overflow: visible; }
.head--center .squiggle { margin-inline: auto; }

/* --- kicker con acento cálido --- */
.kicker--warm { color: var(--coral-soft); }

@media (prefers-reduced-motion: reduce) {
  .blob, .doodle--float, .doodle--floatb, .doodle--twinkle, .doodle--spin { animation: none; }
}

/* ============================================================
   ADAPTACIÓN MERCATITLÁN — "Qué incluye" en cards + FAQ 2-col carded
   2026-06-30
============================================================ */

/* --- TEMARIO: cards separadas tipo mercatitlán --- */
.features { gap: 16px; background: transparent; border: none; border-radius: 0; overflow: visible; }
.feature {
  border-radius: 20px; border: 1px solid var(--line); background: #fff;
  box-shadow: 0 14px 30px -22px rgba(8,30,50,0.55);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .feature:hover { transform: translateY(-5px); box-shadow: 0 26px 46px -24px rgba(8,30,50,0.5); border-color: rgba(0,180,250,0.35); background: #fff; }
}
/* badge de ícono en círculo de color */
.feature__ic {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(0,180,250,0.12); color: var(--bordeaux); margin-bottom: 0.3rem;
}
.feature__ic svg { width: 25px; height: 25px; }
.feature:nth-of-type(4) .feature__ic { background: rgba(255,111,94,0.14); color: var(--coral); }
.feature:nth-of-type(5) .feature__ic { background: rgba(255,178,62,0.18); color: #C77F12; }
/* números grandes con color de acento alternado */
.feature:nth-of-type(1) .num { color: var(--coral); }
.feature:nth-of-type(2) .num { color: var(--bordeaux-bright); }
.feature:nth-of-type(3) .num { color: var(--mango); }
.feature--cta { background: var(--bordeaux); border-color: var(--bordeaux); }
@media (hover: hover) and (pointer: fine) { .feature--cta:hover { background: var(--bordeaux-bright); } }

/* --- FAQ: 2 columnas de cards con badge "?" --- */
.faq__list { max-width: 1000px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
@media (max-width: 760px) { .faq__list { grid-template-columns: 1fr; } }
.faq__item {
  border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 0 20px;
  box-shadow: 0 12px 26px -20px rgba(8,30,50,0.5);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item.open, .faq__item:hover { box-shadow: 0 18px 36px -20px rgba(8,30,50,0.55); border-color: rgba(0,180,250,0.4); }
.faq__q { justify-content: flex-start; gap: 0.85rem; padding: 1.15rem 0; font-size: 1rem; }
.faq__q::before {
  content: "?"; flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  background: rgba(0,180,250,0.12); color: var(--bordeaux);
}
.faq__item:nth-child(3n+2) .faq__q::before { background: rgba(255,111,94,0.14); color: var(--coral); }
.faq__item:nth-child(3n+3) .faq__q::before { background: rgba(255,178,62,0.18); color: #C77F12; }
.faq__q .pm { margin-left: auto; }
.faq__a p { padding-bottom: 1.3rem; max-width: none; }

/* ============================================================
   MODALES LEGALES (Aviso de Privacidad / Términos) — deep-link
   2026-06-30
============================================================ */
.lgl-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(8,30,50,0.55); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lgl-overlay.open { opacity: 1; visibility: visible; }
.lgl-modal {
  width: 100%; max-width: 760px; max-height: 88vh;
  background: var(--paper); border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 90px -30px rgba(8,30,50,0.7);
  transform: translateY(16px) scale(0.98); transition: transform 0.32s var(--ease-out);
}
.lgl-overlay.open .lgl-modal { transform: none; }
/* el panel visible llena el modal y es flex-column para que el body haga scroll.
   :not([hidden]) para NO pisar el display:none del panel oculto. */
.lgl-panel:not([hidden]) { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; overflow: hidden; }
.lgl-head {
  flex: 0 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 22px 26px 18px; border-bottom: 1px solid var(--line); background: #fff;
}
.lgl-eyebrow {
  display: block; font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bordeaux-bright); font-weight: 800; margin-bottom: 4px;
}
.lgl-title { font-family: 'Newsreader', Georgia, serif; font-size: clamp(1.5rem, 3vw, 1.9rem); color: var(--ink); line-height: 1.05; margin: 0; }
.lgl-close {
  flex: none; width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--cloud); color: var(--ink); font-size: 1rem;
  display: grid; place-items: center; transition: background 0.2s, transform 0.25s;
}
.lgl-close:hover { background: var(--cloud-2); transform: rotate(90deg); }
.lgl-body { padding: 24px 26px 30px; overflow-y: auto; flex: 1 1 auto; min-height: 0; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.lgl-updated { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.2rem; font-style: italic; }
.lgl-body h3 { font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; font-size: 1.02rem; color: var(--ink); margin: 1.6rem 0 0.5rem; }
.lgl-body p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.65; margin-bottom: 0.85rem; }
.lgl-body ul { margin: 0 0 0.95rem 1.1rem; display: grid; gap: 0.45rem; }
.lgl-body li { font-size: 0.93rem; color: var(--ink-2); line-height: 1.6; }
.lgl-body a { color: var(--bordeaux); font-weight: 600; text-decoration: underline; }
@media (max-width: 560px) { .lgl-overlay { padding: 0; } .lgl-modal { max-height: 100vh; height: 100vh; border-radius: 0; } }

/* footer: enlaces legales */
.foot-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; }
.foot-legal a { color: var(--on-dark-muted); font-size: 0.84rem; text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.foot-legal a:hover { color: var(--on-dark); border-color: var(--bordeaux-bright); }
/* consentimiento bajo el form de WhatsApp */
.wa-consent { font-size: 0.7rem; color: var(--muted); margin-top: 10px; line-height: 1.5; text-align: center; }
.wa-consent a { color: var(--bordeaux); text-decoration: underline; }

/* ============================================================
   TESTIMONIOS (muro) + BONOS (value stack) — 2026-06-30 (correcciones docx)
============================================================ */
/* --- muro de testimonios --- */
.testi-wall { columns: 3 300px; column-gap: 18px; margin-top: 2.4rem; }
@media (max-width: 900px) { .testi-wall { columns: 2 260px; } }
@media (max-width: 540px) { .testi-wall { columns: 1; } }
.testi-card {
  break-inside: avoid; margin: 0 0 18px;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--bordeaux-bright);
  border-radius: 16px; padding: 1.4rem 1.5rem;
  box-shadow: 0 14px 30px -22px rgba(8,30,50,0.5);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}
.testi-card:nth-child(3n+2) { border-top-color: var(--coral); }
.testi-card:nth-child(3n+3) { border-top-color: var(--mango); }
@media (hover: hover) { .testi-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -24px rgba(8,30,50,0.5); } }
.testi-card blockquote { font-family: 'Hanken Grotesk', sans-serif; font-size: 0.94rem; line-height: 1.6; color: var(--ink-2); letter-spacing: 0; margin: 0 0 1rem; }
.testi-card figcaption { border-top: 1px solid var(--line); padding-top: 0.7rem; }
.testi-card figcaption b { display: block; font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.testi-card figcaption span { font-size: 0.78rem; color: var(--muted); }

/* --- bonos --- */
.bonos__eyebrow { display: inline-block; font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral); background: rgba(255,111,94,0.1); padding: 0.35rem 0.85rem; border-radius: 999px; margin-bottom: 0.85rem; }
.bonos .head h2 { max-width: 20ch; margin-inline: auto; }
.bonos__free { color: var(--coral); font-style: italic; }
.bonos__lead { max-width: 60ch; margin: 1rem auto 0; color: var(--muted); font-size: 1.02rem; }
.bonos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 2.4rem; }
@media (max-width: 900px) { .bonos__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.bono-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.8rem; display: flex; flex-direction: column; box-shadow: 0 16px 34px -24px rgba(8,30,50,0.5); transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease; }
@media (hover: hover) { .bono-card:hover { transform: translateY(-5px); box-shadow: 0 28px 50px -26px rgba(8,30,50,0.5); } }
.bono-card__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.bono-card__tag { font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bordeaux); }
.bono-card__free { font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--coral); padding: 0.26rem 0.62rem; border-radius: 999px; }
.bono-card__ic { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(0,180,250,0.12); color: var(--bordeaux); margin-bottom: 1rem; }
.bono-card__ic svg { width: 26px; height: 26px; }
.bono-card:nth-child(2) .bono-card__ic { background: rgba(255,111,94,0.14); color: var(--coral); }
.bono-card:nth-child(3) .bono-card__ic { background: rgba(255,178,62,0.18); color: #C77F12; }
.bono-card h3 { font-family: 'Newsreader', serif; font-size: 1.3rem; color: var(--ink); line-height: 1.15; margin-bottom: 0.4rem; }
.bono-card__product { font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--bordeaux); margin-bottom: 0.7rem; }
.bono-card__desc { font-size: 0.92rem; color: var(--ink-2); line-height: 1.55; margin-bottom: 1rem; }
.bono-card__list { list-style: none; display: grid; gap: 0.55rem; margin: 0; padding: 0; }
.bono-card__list li { position: relative; padding-left: 1.5rem; font-size: 0.88rem; color: var(--ink-2); line-height: 1.5; }
.bono-card__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--bordeaux-bright); font-weight: 800; }
.bono-card__list li b { color: var(--ink); font-weight: 700; }
/* value stack */
.bonos__stack { display: flex; align-items: stretch; justify-content: center; gap: 14px; margin: 2.6rem auto 0; flex-wrap: wrap; }
.bonos__stack-box { border-radius: 16px; padding: 1.1rem 1.7rem; text-align: center; display: flex; flex-direction: column; gap: 0.2rem; min-width: 230px; }
.bonos__stack-box--value { background: var(--cloud); }
.bonos__stack-box--today { background: var(--bordeaux); color: var(--on-dark); box-shadow: 0 20px 40px -22px rgba(8,30,50,0.6); }
.bonos__stack-label { font-family: 'Hanken Grotesk', sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.bonos__stack-box--today .bonos__stack-label { color: var(--bordeaux-bright); }
.bonos__stack-amt { font-family: 'Newsreader', serif; font-size: 1.95rem; color: var(--ink); line-height: 1.1; }
.bonos__stack-box--value .bonos__stack-amt s { color: var(--muted); text-decoration-thickness: 2px; }
.bonos__stack-box--today .bonos__stack-amt { color: var(--on-dark); }
.bonos__stack-arrow { display: flex; align-items: center; font-size: 1.6rem; color: var(--coral); font-weight: 700; }
@media (max-width: 520px) { .bonos__stack-arrow { transform: rotate(90deg); } }
.bonos__cta { text-align: center; margin-top: 2rem; }
/* precio: línea de bonos (override del check por estrella) — blanco + más grande (Esmeralda 02-jul) */
.price-single__list li.price-single__bonus { color: #FFFFFF; font-weight: 700; font-size: 1.08rem; }
.price-single__list li.price-single__bonus::before { content: "★"; }

/* resaltado tipo marcador en testimonio (comentario id 169) */
.testi-card .hl {
  background: linear-gradient(transparent 52%, rgba(255,178,62,0.55) 52%);
  font-weight: 600; color: var(--ink); padding: 0 0.06em; border-radius: 2px;
}

/* ============================================================
   TESTIMONIOS: carrusel rotativo (revert del muro) — 2026-06-30
============================================================ */
.testi-rotator { max-width: 800px; margin: 2.4rem auto 0; text-align: center; }
.testi-stage { position: relative; transition: height 0.45s var(--ease-out); }
.testi-slide {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s var(--ease-out);
  pointer-events: none;
}
.testi-slide.is-active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.testi-slide blockquote {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(1.25rem, 1rem + 1.25vw, 1.95rem); line-height: 1.4;
  color: var(--ink); letter-spacing: -0.01em; margin: 0;
}
.testi-slide .q {
  background: linear-gradient(transparent 55%, rgba(0,180,250,0.30) 55%);
  color: var(--ink); font-style: normal; padding: 0 0.04em; border-radius: 2px;
}
.testi-who { margin-top: 1.6rem; font-size: 0.95rem; color: var(--muted); }
.testi-who b { font-family: 'Hanken Grotesk', sans-serif; color: var(--ink); font-weight: 700; }
.testi-who span::before { content: " · "; }
.testi-dots { display: flex; gap: 9px; justify-content: center; margin-top: 1.9rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: var(--line-strong); transition: background 0.2s, transform 0.2s; }
.testi-dot.is-active { background: var(--bordeaux); transform: scale(1.35); }
@media (prefers-reduced-motion: reduce) { .testi-slide { transition: opacity 0.25s ease; transform: none; } }
