/* ============================================================
   Esmeralda Masajes · Masaje con Piedras Calientes
   Landing premium · esmeralda + dorado + crema + brasa
   Mobile-first · sin dependencias
   ============================================================ */

:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, sans-serif;

  --emerald-900: #0e2e27;
  --emerald-800: #123c33;
  --emerald-700: #1f5c4b;
  --emerald-600: #266f5b;
  --emerald-500: #2f8569;
  --emerald-soft: #e8f2ec;

  --cream: #faf6ef;
  --cream-deep: #f3ebde;
  --white: #fffdf8;

  --gold-600: #b0893f;
  --gold-500: #d8b56d;
  --gold-400: #ecd4a2;
  --gold-glow: rgba(216, 181, 109, 0.35);

  --ember-600: #c2410c;
  --ember-500: #e8702a;
  --ember-400: #f5a04a;
  --ember-soft: #fdece0;
  --ember-glow: rgba(232, 112, 42, 0.34);

  --stone: #8a6a4f;
  --stone-soft: rgba(138, 106, 79, 0.12);

  --text: #1a1a1a;
  --muted: #5f5a52;
  --line: rgba(26, 26, 26, 0.10);

  --shadow-sm: 0 10px 26px rgba(18, 60, 51, 0.06);
  --shadow-md: 0 22px 50px rgba(18, 60, 51, 0.10);
  --shadow-lg: 0 40px 90px rgba(18, 60, 51, 0.16);

  --radius: 24px;
  --radius-lg: 32px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  background-color: var(--cream);
  background-image:
    radial-gradient(900px 600px at 85% -5%, rgba(216, 181, 109, 0.16), transparent 60%),
    radial-gradient(820px 560px at 92% 2%, rgba(232, 112, 42, 0.08), transparent 58%),
    radial-gradient(900px 700px at -10% 8%, rgba(31, 92, 75, 0.10), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 64px 0; position: relative; overflow: hidden; scroll-margin-top: 64px; }
.section-soft { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.section-white { background: var(--white); }
.section-emerald {
  background:
    radial-gradient(620px 380px at 84% 0%, rgba(232,112,42,0.16), transparent 58%),
    radial-gradient(700px 420px at 78% 6%, rgba(216,181,109,0.20), transparent 60%),
    linear-gradient(160deg, var(--emerald-800) 0%, var(--emerald-900) 100%);
  color: #f3efe6;
}
.section-emerald .eyebrow { color: var(--gold-400); }
.section-emerald h2, .section-emerald h3 { color: #fff; }
.section-emerald p { color: rgba(243, 239, 230, 0.86); }
.section-emerald b { color: #fff; }
.section .container { position: relative; z-index: 1; }

.section-head { max-width: 780px; margin: 0 auto 44px; text-align: center; }
.section-head--tight { margin-bottom: 28px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--emerald-600);
}
.eyebrow.gold { color: var(--gold-600); }

h1, h2, h3 { font-family: 'Playfair Display', serif; letter-spacing: -0.02em; }
h2 { margin: 0; font-size: clamp(1.72rem, 3.4vw, 2.7rem); line-height: 1.12; color: var(--emerald-900); }

.lead { margin: 18px 0 0; color: var(--muted); font-size: 1.05rem; }
.lead--mini { margin-top: 10px; font-size: 0.98rem; }
.microcopy { font-size: 0.86rem; color: var(--muted); }
.center { text-align: center; max-width: 680px; margin: 26px auto 0; }

.divider {
  width: 72px; height: 3px; margin: 22px auto 0; border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 38%, var(--ember-500) 62%, transparent);
}

/* ---------- Brasa ---------- */
.ember-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(520px 360px at 80% 16%, rgba(232,112,42,0.18), transparent 62%);
}
.ember-glow-soft { background: radial-gradient(460px 300px at 50% 0%, rgba(232,112,42,0.12), transparent 64%); }
.ember-dot, .live-dot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 40% 35%, #ffd9a0, var(--ember-500) 60%, var(--ember-600));
  animation: emberPulse 2.2s ease-in-out infinite;
}
@keyframes emberPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,112,42,0.5); }
  50% { box-shadow: 0 0 0 7px rgba(232,112,42,0); }
}

/* ============================================================
   ÍCONOS PREMIUM · badge circular + SVG de línea fina
   Un solo lenguaje visual para toda la página: nunca emoji suelto.
   ============================================================ */
.badge-ico {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--emerald-soft), #fff);
  border: 1px solid rgba(31,92,75,0.22); color: var(--emerald-700);
}
.badge-ico svg { width: 15px; height: 15px; }
.badge-ico.gold { background: linear-gradient(160deg, var(--gold-400), #fff); border-color: rgba(176,137,63,0.32); color: var(--gold-600); }
.badge-ico.ember { background: linear-gradient(160deg, var(--ember-soft), #fff); border-color: rgba(194,65,12,0.28); color: var(--ember-600); }
.badge-ico.solid-emerald { background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700)); border-color: transparent; color: #fff; }
.badge-ico.solid-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); border-color: transparent; color: var(--emerald-900); }
.badge-ico.lg { width: 44px; height: 44px; }
.badge-ico.lg svg { width: 21px; height: 21px; }

/* ---------- Botones ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1.02rem; text-decoration: none; cursor: pointer;
  border: 0; text-align: center; line-height: 1.25; flex-wrap: wrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn b { font-weight: 800; white-space: nowrap; }
.btn-lg { padding: 20px 34px; font-size: 1.08rem; }
.btn-sm { padding: 12px 18px; font-size: 0.88rem; min-height: 44px; }
.btn-arrow { transition: transform 0.22s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  color: #fff; background: linear-gradient(135deg, var(--emerald-600), var(--emerald-800));
  box-shadow: 0 16px 34px rgba(31, 92, 75, 0.30), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(31, 92, 75, 0.38); }
.btn-ember {
  color: #fff; background: linear-gradient(135deg, var(--ember-400) 0%, var(--ember-500) 46%, var(--ember-600) 100%);
  box-shadow: 0 16px 34px rgba(194, 65, 12, 0.32), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-ember:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(194, 65, 12, 0.42); }
.btn-gold {
  color: var(--emerald-900); background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 16px 34px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 44px var(--gold-glow); }

.btn::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn:hover::after { left: 130%; }

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 16px 34px rgba(194,65,12,0.30); }
  50% { box-shadow: 0 18px 46px rgba(232,112,42,0.5), 0 0 0 6px rgba(232,112,42,0.10); }
}
.btn-pulse { animation: btnPulse 2.1s ease-in-out infinite; }
.btn-pulse:hover { animation-play-state: paused; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  color: #f3efe6; border-bottom: 1px solid rgba(216,181,109,0.25);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 9px 22px; max-width: var(--maxw); margin: 0 auto;
}
.topbar-msg { margin: 0; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.topbar-msg b { color: var(--gold-400); font-weight: 800; }
.topbar-dot { opacity: 0.5; }
.topbar .btn-sm { white-space: nowrap; }
.topbar-timer {
  color: #fff !important; font-variant-numeric: tabular-nums; letter-spacing: 0.06em;
  padding: 2px 8px; border-radius: 8px;
  background: rgba(232,112,42,0.28); border: 1px solid rgba(232,112,42,0.5);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 30px 0 52px; }
.hero .container { position: relative; z-index: 1; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.orb-1 { width: 460px; height: 460px; top: -140px; left: -120px; background: radial-gradient(circle, rgba(31,92,75,0.35), transparent 70%); animation: drift 18s ease-in-out infinite; }
.orb-2 { width: 520px; height: 520px; top: 10%; right: -180px; background: radial-gradient(circle, rgba(232,112,42,0.30), transparent 70%); animation: drift 22s ease-in-out infinite reverse; }
.orb-3 { width: 380px; height: 380px; bottom: -140px; left: 40%; background: radial-gradient(circle, rgba(216,181,109,0.38), transparent 70%); animation: drift 26s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(28px, -26px); } }

.hero-head { max-width: 900px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 17px; border-radius: 999px;
  background: rgba(31,92,75,0.09); border: 1px solid rgba(31,92,75,0.20);
  color: var(--emerald-700); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* H1 con tipografía propia — Fraunces, distinta al resto de títulos
   (que usan Playfair Display), para que la promesa se diferencie. */
.hero h1 {
  margin: 18px auto 0; max-width: 900px;
  font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.01em;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; color: var(--emerald-900);
}
.hero h1 .accent {
  font-style: italic; font-weight: 600;
  background: linear-gradient(110deg, var(--ember-600) 0%, var(--ember-500) 30%, var(--gold-600) 60%, var(--ember-500) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }
.hero-sub { margin: 18px auto 0; max-width: 660px; color: var(--muted); font-size: 1.06rem; }

/* ---------- Bloque de prueba social bajo el hero ---------- */
.vsl-wrap { position: relative; margin: 34px auto 0; max-width: 880px; }
.vsl-under { position: relative; z-index: 1; margin-top: 0; text-align: center; }
.vsl-under-proof {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--line);
  font-size: 0.9rem; color: var(--muted); backdrop-filter: blur(6px);
}
.vsl-under-proof b { color: var(--emerald-800); }
.vsl-under-proof .stars { color: var(--gold-500); letter-spacing: 1px; }
.avatars { display: inline-flex; }
.avatars i {
  width: 26px; height: 26px; border-radius: 50%; display: block; margin-left: -8px;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--gold-400), var(--stone));
}
.avatars i:first-child { margin-left: 0; }
.avatars i:nth-child(2) { background: linear-gradient(135deg, var(--emerald-soft), var(--emerald-500)); }
.avatars i:nth-child(3) { background: linear-gradient(135deg, var(--ember-400), var(--ember-600)); }
.avatars i:nth-child(4) { background: linear-gradient(135deg, var(--cream-deep), var(--gold-600)); }

.vsl-under .btn { width: 100%; max-width: 520px; }
.vsl-under-note { margin: 14px 0 0; font-size: 0.88rem; color: var(--muted); }

.hero-bullets-row {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px;
}
.hero-bullets-row li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 7px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--line);
  font-size: 0.88rem; font-weight: 600; color: var(--emerald-900);
  backdrop-filter: blur(6px);
}

/* ============================================================
   CUPÓN — el elemento más importante de la página
   ============================================================ */
.coupon-block {
  position: relative; overflow: hidden;
  max-width: 520px; margin: 0 auto 22px;
  padding: 20px 20px 18px; border-radius: 22px; text-align: center;
  background: linear-gradient(155deg, #ffffff 0%, #fff6e9 100%);
  border: 2px dashed var(--ember-500);
  box-shadow: 0 20px 46px rgba(194,65,12,0.16);
}
.coupon-block::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(340px 160px at 50% -10%, rgba(232,112,42,0.16), transparent 65%);
}
.coupon-block > * { position: relative; z-index: 1; }

.coupon-head { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.coupon-off {
  padding: 5px 13px; border-radius: 999px;
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; color: #fff;
  background: linear-gradient(135deg, var(--ember-400), var(--ember-600));
  box-shadow: 0 8px 18px var(--ember-glow);
}
.coupon-lead { font-size: 0.9rem; font-weight: 700; color: var(--emerald-800); }

.coupon-prices { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 14px; }
.coupon-old { font-size: 1.1rem; color: var(--muted); }
.coupon-arrow { color: var(--ember-500); font-weight: 800; }
.coupon-now {
  font-family: 'Playfair Display', serif; font-size: 2.6rem; line-height: 1;
  color: var(--emerald-800); font-weight: 700;
}

.coupon-code {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 10px 12px; flex-wrap: wrap;
  width: 100%; padding: 15px 16px; border-radius: 16px; cursor: pointer;
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  border: 1px solid rgba(216,181,109,0.5);
  box-shadow: 0 14px 30px rgba(18,60,51,0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
.coupon-code:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(18,60,51,0.34); }
.coupon-code::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg); animation: couponShine 3.4s ease-in-out infinite;
}
@keyframes couponShine { 0% { left: -120%; } 55%, 100% { left: 160%; } }
.cc-label {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-400); opacity: 0.85;
}
.cc-value {
  flex: 1 1 auto; min-width: 0; text-align: center; overflow-wrap: anywhere;
  font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 5.5vw, 1.8rem); font-weight: 700;
  letter-spacing: 0.04em; color: #fff; line-height: 1.15;
}
.cc-action {
  flex: 0 0 auto; position: relative;
  padding: 8px 15px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 800; color: var(--emerald-900); white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 8px 18px var(--gold-glow);
}
@media (max-width: 380px) {
  .coupon-code { justify-content: center; }
  .cc-value { flex-basis: 100%; }
  .cc-action { margin: 2px auto 0; }
}
.cc-done { display: none; }
.coupon-code.is-copied .cc-copy { display: none; }
.coupon-code.is-copied .cc-done { display: inline; }
.coupon-note { margin: 12px 0 0; font-size: 0.84rem; color: var(--muted); }
.coupon-note b { color: var(--emerald-800); }

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden; white-space: nowrap;
  background: linear-gradient(135deg, var(--emerald-700), var(--emerald-900));
  border-top: 1px solid rgba(216,181,109,0.3); border-bottom: 1px solid rgba(216,181,109,0.3);
  padding: 13px 0;
}
.ticker-track { display: inline-flex; gap: 26px; align-items: center; animation: tickerScroll 32s linear infinite; }
.ticker-track span {
  color: rgba(243,239,230,0.85); font-weight: 700; font-size: 0.86rem;
  letter-spacing: 0.03em;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ============================================================
   CALOR — diagrama animado
   ============================================================ */
.heat-grid { display: grid; gap: 34px; align-items: start; margin-top: 8px; }
.heat-card {
  position: relative; padding: 26px 22px 22px; border-radius: var(--radius);
  background: linear-gradient(165deg, var(--emerald-soft) 0%, var(--white) 60%, var(--cream) 100%);
  border: 1px solid rgba(31,92,75,0.16); box-shadow: 0 34px 70px rgba(18,60,51,0.12);
}
.heat-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  padding: 8px 18px; border-radius: 999px; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--emerald-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 12px 26px var(--gold-glow);
}
.heat-img { width: 100%; max-width: 260px; height: auto; margin: 20px auto 0; display: block; }
.heat-foot { margin: 16px 0 0; text-align: center; font-size: 0.92rem; color: var(--muted); }
.heat-foot b { color: var(--emerald-900); }

.heat-text { display: grid; gap: 16px; }
.heat-step {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 22px 24px; border-radius: 22px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.heat-step:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.hs-num {
  flex: none; width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--emerald-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 10px 22px var(--gold-glow);
}
.heat-step h3 { margin: 0 0 5px; font-size: 1.14rem; color: var(--emerald-900); }
.heat-step p { margin: 0; color: var(--muted); font-size: 0.97rem; }

.heat-myth {
  padding: 20px 24px; border-radius: 22px;
  background: linear-gradient(165deg, #fff3ea, #fde3d2);
  border: 1px solid rgba(232,112,42,0.35);
}
.myth-title { margin: 0 0 6px; font-weight: 800; color: var(--ember-600); letter-spacing: 0.02em; }
.heat-myth p:last-child { margin: 0; color: var(--emerald-900); font-weight: 600; }

.temp-meter {
  margin-top: 40px; padding: 26px 26px 22px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-align: center;
}
.tm-title { margin: 0 0 16px; font-weight: 800; color: var(--emerald-900); }
.tm-bar {
  position: relative; display: flex; height: 40px; border-radius: 999px; overflow: hidden;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
}
.tm-zone { display: flex; align-items: center; justify-content: center; color: #fff; }
.tm-cold { flex: 1; background: linear-gradient(135deg, #7fa8bd, #5d8aa3); }
.tm-safe { flex: 1.6; background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700)); }
.tm-hot { flex: 1; background: linear-gradient(135deg, var(--ember-500), var(--ember-600)); }
.tm-needle {
  position: absolute; top: -6px; left: 42%; width: 3px; height: 52px; border-radius: 3px;
  background: var(--gold-600); box-shadow: 0 0 0 4px rgba(216,181,109,0.3);
}
.tm-note { margin: 16px 0 0; font-size: 0.9rem; color: var(--muted); }

.mid-cta { margin-top: 44px; text-align: center; }

/* ---------- Antes / después ---------- */
.ba-grid { display: grid; gap: 18px; align-items: center; }
.ba-card {
  position: relative; padding: 28px 26px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.ba-flag {
  display: inline-block; margin-bottom: 14px; padding: 5px 14px; border-radius: 999px;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); background: var(--cream-deep);
}
.ba-flag.gold { color: var(--emerald-900); background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); }
.ba-card h3 { margin: 0 0 14px; font-size: 1.22rem; color: var(--emerald-900); }
.ba-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.ba-card li { padding-left: 20px; position: relative; font-size: 0.95rem; color: var(--muted); }
.ba-before li::before { content: '–'; position: absolute; left: 0; color: var(--stone); font-weight: 800; }
.ba-after { border-color: rgba(216,181,109,0.5); background: linear-gradient(170deg, #fff, #fff8ec); }
.ba-after li { color: var(--emerald-900); font-weight: 600; }
.ba-after li::before { content: '✓'; position: absolute; left: 0; color: var(--emerald-600); font-weight: 800; }
.ba-arrow { display: flex; justify-content: center; font-size: 1.6rem; color: var(--gold-600); }

/* ---------- Pain cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

.pain-card {
  position: relative; padding: 24px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-card p { margin: 0; color: var(--text); font-weight: 600; }

.closure {
  margin: 40px auto 0; max-width: 720px; text-align: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--emerald-800);
}

/* ---------- Achievement cards ---------- */
.ach-card {
  position: relative; padding: 26px 22px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--cream));
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ach-card:hover { box-shadow: var(--shadow-md); }
.ach-card .badge-ico { margin-bottom: 16px; }
.ach-card h3 { margin: 0; font-size: 1.04rem; color: var(--emerald-900); line-height: 1.3; }

/* ---------- Método ---------- */
.steps { display: grid; gap: 20px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 24px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(216,181,109,0.18);
}
.step-num {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-content: center; font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--emerald-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
}
.step h3 { margin: 0 0 5px; font-size: 1.1rem; }
.step p { margin: 0; font-size: 0.94rem; }

/* ---------- Módulos ---------- */
.modules { display: grid; gap: 20px; grid-template-columns: 1fr; }
.module-card {
  position: relative; overflow: hidden; padding: 30px 26px 26px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--cream));
  border: 1px solid var(--line); border-top: 2px solid var(--gold-500); box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.module-num {
  display: inline-block; margin-bottom: 12px; font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold-600);
}
.module-card h3 { margin: 0 0 10px; font-size: 1.16rem; color: var(--emerald-900); }
.module-card p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

/* ---------- Plataforma / certificado ---------- */
.platform { background: radial-gradient(700px 460px at 88% 12%, rgba(31,92,75,0.06), transparent 60%); }
.showcase-frame {
  position: relative; margin: 0; padding: clamp(10px, 1.4vw, 18px);
  border-radius: 30px; overflow: hidden;
  background: linear-gradient(160deg, var(--emerald-soft) 0%, var(--cream-deep) 100%);
  border: 1px solid rgba(31,92,75,0.14);
  box-shadow: 0 40px 90px rgba(18,60,51,0.16), inset 0 1px 0 rgba(255,255,255,0.6);
}
.showcase-frame img { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 18px 40px rgba(18,60,51,0.18); }
.showcase-frame.is-empty { min-height: 260px; }
.showcase-frame.is-empty img { display: none; }
.cert-points {
  list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px;
}
.cert-points li {
  padding: 8px 16px; border-radius: 999px; font-size: 0.86rem; font-weight: 700;
  color: var(--emerald-700); background: rgba(255,255,255,0.7); border: 1px solid var(--line);
}

/* ---------- Ori ---------- */
.author-grid { display: grid; gap: 34px; align-items: center; }
.author-frame {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(216,181,109,0.3); box-shadow: 0 40px 90px rgba(18,60,51,0.3);
}
.author-frame img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 2 / 3; }
.author-frame.is-empty { min-height: 320px; background: rgba(255,255,255,0.06); }
.author-frame.is-empty img { display: none; }
.author-frame--sm { max-width: 200px; margin: 0 auto; }
.author-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.metric { padding: 16px 14px; border-radius: 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(216,181,109,0.18); text-align: center; }
.metric b { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold-400); }
.metric span { font-size: 0.8rem; color: rgba(243,239,230,0.78); }

/* ============================================================
   GALERÍA / CARRUSEL DE TESTIMONIOS
   Mismo patrón que Business y Drenaje: array TESTIMONIOS → .cc
   ============================================================ */
.carr-sec { padding: 8px 0 12px; }
.carr-cab {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 26px;
}
.carr-hint {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: var(--gold-600);
}
.carr {
  display: flex; gap: 16px; padding: 6px 22px 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(216,181,109,0.4) transparent;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  padding-left: max(22px, calc(50vw - var(--maxw) / 2 + 22px));
  padding-right: max(22px, calc(50vw - var(--maxw) / 2 + 22px));
}
.carr::-webkit-scrollbar { height: 6px; }
.carr::-webkit-scrollbar-thumb { background: rgba(216,181,109,0.35); border-radius: 10px; }
.carr::-webkit-scrollbar-track { background: transparent; }
@media (min-width: 900px) {
  .carr {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 60px, #000 calc(100% - 60px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 60px, #000 calc(100% - 60px), transparent);
  }
}
.cc {
  position: relative; flex: 0 0 auto; scroll-snap-align: center; cursor: zoom-in;
  height: clamp(280px, 58vw, 380px);
  background: var(--white); border: 1px solid rgba(216,181,109,0.28); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cc--vert { aspect-ratio: 9 / 16; }
.cc--horiz { aspect-ratio: 4 / 3; }
.cc--cuad { aspect-ratio: 1 / 1; }
.cc img { width: 100%; height: 100%; object-fit: cover; }
.carr-note { margin: 16px 22px 0; text-align: center; font-size: 0.84rem; color: var(--muted); }

/* ---------- Lightbox ---------- */
.lbx {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 24px 16px; background: rgba(14,46,39,0.92); backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lbx.on { opacity: 1; pointer-events: auto; }
.lbx img {
  max-width: min(560px, 92vw); max-height: 88vh; width: auto; border-radius: 16px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55); transform: scale(0.94); transition: transform 0.35s ease;
}
.lbx.on img { transform: scale(1); }
.lbx-x, .lbx-nav {
  position: absolute; z-index: 2; width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.14); color: #fff; display: grid; place-content: center;
  font-size: 22px; line-height: 1; transition: background 0.25s ease;
}
.lbx-x:hover, .lbx-nav:hover { background: rgba(255,255,255,0.26); }
.lbx-x { top: 18px; right: 18px; }
.lbx-nav { top: 50%; transform: translateY(-50%); }
.lbx-nav svg { width: 20px; height: 20px; }
.lbx-prev { left: 14px; }
.lbx-next { right: 14px; }
@media (max-width: 600px) { .lbx-x, .lbx-nav { width: 38px; height: 38px; } }

.testi-authority {
  display: grid; gap: 16px; margin-top: 14px; grid-template-columns: 1fr;
  text-align: center;
}
.testi-authority .stat { padding: 18px 14px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.testi-authority .stat b { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--emerald-800); }
.testi-authority .stat span { font-size: 0.84rem; color: var(--muted); }

/* ---------- Stack de valor ---------- */
.stack {
  max-width: 720px; margin: 0 auto; padding: 30px 30px 8px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.stack-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem;
}
.stack-row .sr-name { color: var(--text); }
.stack-row .sr-val { color: var(--muted); font-weight: 700; white-space: nowrap; }
.stack-row.bonus .sr-name { color: var(--emerald-900); }
.bt {
  display: inline-block; margin-right: 8px; padding: 2px 9px; border-radius: 999px;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.06em; color: var(--emerald-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}
.stack-total, .stack-list, .stack-today {
  display: flex; align-items: baseline; justify-content: space-between; padding: 14px 0;
}
.stack-total { border-top: 1px solid var(--line); font-weight: 700; color: var(--muted); }
.stack-list { color: var(--muted); }
.stack-today {
  margin: 6px -30px -8px; padding: 18px 30px; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900)); color: #fff;
}
.stack-today b { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold-400); }

/* ---------- Comparativa ---------- */
.compare-card {
  padding: 28px 24px; border-radius: var(--radius); text-align: center;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.compare-card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.compare-price { margin: 0 0 10px; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--emerald-900); }
.compare-note { margin: 0 0 10px; font-weight: 700; color: var(--stone); }
.compare-best { position: relative; border-color: rgba(216,181,109,0.5); background: linear-gradient(170deg, #fff, #fff8ec); }
.compare-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  padding: 6px 16px; border-radius: 999px; font-size: 0.74rem; font-weight: 800;
  color: var(--emerald-900); background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
}
.compare-price.highlight { color: var(--ember-600); font-size: 2.1rem; }

/* ---------- Calculadora ROI ---------- */
.roi-card {
  max-width: 640px; margin: 0 auto; padding: 34px 28px; border-radius: var(--radius-lg); text-align: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(216,181,109,0.2);
}
.roi-label { display: block; font-size: 0.88rem; color: rgba(243,239,230,0.8); margin-bottom: 8px; }
.roi-value { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold-400); margin-bottom: 18px; }
.roi-range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500) var(--fill, 20%), rgba(255,255,255,0.2) var(--fill, 20%));
  outline: none; margin: 0 0 8px;
}
.roi-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-500); border: 3px solid #fff; box-shadow: 0 6px 16px rgba(0,0,0,0.3); cursor: pointer;
}
.roi-range::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%; background: var(--gold-500);
  border: 3px solid #fff; box-shadow: 0 6px 16px rgba(0,0,0,0.3); cursor: pointer;
}
.roi-scale { display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(243,239,230,0.6); margin-bottom: 26px; }
.roi-out { display: grid; gap: 14px; grid-template-columns: 1fr; margin-bottom: 22px; }
.roi-stat { padding: 16px; border-radius: 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(216,181,109,0.18); }
.roi-stat b { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; }
.roi-stat span { font-size: 0.82rem; color: rgba(243,239,230,0.75); }
.roi-stat--main { border-color: rgba(216,181,109,0.45); background: rgba(216,181,109,0.1); }
.roi-stat--main b { color: var(--gold-400); }
.roi-foot { margin: 0 0 22px; color: rgba(243,239,230,0.85); }
.roi-mini { margin: 14px 0 0; font-size: 0.78rem; color: rgba(243,239,230,0.55); }

/* ============================================================
   OFERTA — sección compacta (rule 5)
   ============================================================ */
.offer-wrap { max-width: 780px; margin: 0 auto; display: grid; gap: 26px; }
.offer-card {
  position: relative; overflow: hidden; padding: 40px 34px 40px; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
  border: 1px solid rgba(216,181,109,0.35); box-shadow: var(--shadow-lg); text-align: center;
}
.offer-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(460px 240px at 50% -10%, var(--gold-glow), transparent 60%);
}
.offer-card h2, .offer-card p, .offer-card .eyebrow { position: relative; }
.offer-card > p { max-width: 560px; margin-left: auto; margin-right: auto; }

.countdown-pro {
  position: relative; margin: 6px auto 30px; max-width: 470px;
  padding: 22px 24px 18px; border-radius: 24px; text-align: center;
  background: linear-gradient(150deg, #14403a 0%, #0e2e27 100%);
  border: 1.5px solid var(--ember-500);
  box-shadow: 0 22px 52px rgba(18,60,51,0.32);
}
.countdown-label { margin: 0 0 14px; color: rgba(243,239,230,0.85); font-weight: 700; font-size: 0.86rem; }
.countdown-boxes { display: flex; align-items: flex-start; justify-content: center; gap: 12px; }
.cd-box {
  display: flex; flex-direction: column; align-items: center; min-width: 82px;
  padding: 13px 10px 11px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(216,181,109,0.3);
}
.cd-box b { font-family: 'Playfair Display', serif; font-size: 2.6rem; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.cd-box span { margin-top: 7px; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-400); }
.cd-sep { font-size: 2rem; font-weight: 700; color: var(--gold-400); line-height: 1.5; }
.countdown-foot { margin: 14px 0 0 !important; font-size: 0.8rem; color: rgba(243,239,230,0.75) !important; }
.countdown-foot b { color: var(--gold-400); }

.offer-incluye { max-width: 560px; margin: 26px auto 0; padding: 0; text-align: left; list-style: none; }
.offer-incluye li { display: flex; gap: 13px; align-items: flex-start; padding: 11px 4px; border-bottom: 1px dashed var(--line); }
.offer-incluye li:last-child { border-bottom: 0; }
.offer-incluye li div { font-size: 0.94rem; color: var(--text); line-height: 1.5; }
.offer-incluye li b { color: var(--emerald-900); }

.price-box {
  position: relative; display: inline-flex; flex-direction: column; align-items: center;
  margin: 26px auto 0; padding: 24px 42px; border-radius: 26px;
  background: var(--white); border: 2px solid var(--ember-500); box-shadow: var(--shadow-lg);
}
.off-badge {
  position: absolute; top: -18px; right: -14px;
  padding: 9px 18px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 800; letter-spacing: 0.02em; color: #fff;
  background: linear-gradient(135deg, var(--ember-400), var(--ember-600));
  box-shadow: 0 12px 28px var(--ember-glow); transform: rotate(5deg);
}
.price-old { font-size: 1rem; color: var(--muted); }
.price-old span { text-decoration: line-through; }
.price-current { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 6.5vw, 3.6rem); font-weight: 700; color: var(--emerald-800); line-height: 1.05; }
.price-save { margin-top: 4px; padding: 5px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 800; color: var(--emerald-900); background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); }
.price-tag { margin-top: 10px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-600); }

.coupon-block--xl { max-width: 560px; margin: 26px auto 0; }
.offer-cta { margin-top: 30px; }
.offer-after { margin: 14px 0 0; font-size: 0.84rem; color: var(--muted); }

.trust-row { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 22px auto 0; max-width: 580px; }
.trust-row span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px 8px 8px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  color: var(--emerald-800); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.trust-row .badge-ico { width: 22px; height: 22px; }
.trust-row .badge-ico svg { width: 11px; height: 11px; }

/* ---------- Garantía ---------- */
.guarantee-card {
  display: grid; gap: 22px; align-items: center; text-align: center;
  padding: 34px 30px; border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.seal {
  width: 84px; height: 84px; margin: 0 auto; border-radius: 50%;
  display: grid; place-content: center; text-align: center; flex: none;
  color: var(--emerald-900);
  background: var(--cream);
  border: 1px solid var(--gold-500);
}
.seal-days { display: block; font-family: 'Playfair Display', serif; font-size: 1.7rem; line-height: 1; font-weight: 700; color: var(--emerald-800); }
.seal-txt { display: block; font-size: 0.56rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.25; margin-top: 3px; color: var(--muted); }
.guarantee-card h3 { margin: 0 0 10px; font-size: 1.22rem; font-family: 'Playfair Display', serif; color: var(--emerald-900); }
.guarantee-card p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ---------- Bonos ---------- */
.bonus-card {
  position: relative; padding: 28px 22px 24px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--cream));
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.bonus-tag {
  position: absolute; top: 16px; right: 16px; padding: 3px 10px; border-radius: 999px;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--emerald-900); background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}
.bonus-num { display: block; margin-bottom: 12px; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold-600); }
.bonus-card h3 { margin: 0 0 8px; font-size: 1.02rem; color: var(--emerald-900); }
.bonus-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* ---------- Para quién es ---------- */
.fit-grid { display: grid; gap: 22px; }
.fit-card { padding: 30px 28px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.fit-card h3 { margin: 0 0 18px; display: flex; align-items: center; gap: 12px; font-size: 1.24rem; color: var(--emerald-900); }
.fit-card.yes { border-color: rgba(31,92,75,0.3); background: linear-gradient(170deg, #fff, var(--emerald-soft)); }
.fit-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.fit-card li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-size: 0.98rem; }
.fit-card.no li { color: var(--muted); }

/* ---------- Requisitos ---------- */
.needs-wrap { max-width: 820px; margin: 0 auto; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li {
  display: flex; align-items: center; gap: 14px; font-size: 0.98rem; color: var(--text);
  padding: 16px 20px; border-radius: 14px; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.check-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(14,46,39,0.10);
  border-color: rgba(216,181,109,0.5);
}
.check-list li .badge-ico { flex: none; }
.check-list-2col { grid-template-columns: 1fr; }
.needs-note {
  margin: 26px 0 0; padding: 20px 22px; border-radius: 16px; font-size: 0.92rem;
  background: var(--emerald-soft); border-left: 3px solid var(--gold-500); color: var(--emerald-900);
  box-shadow: var(--shadow-sm);
}
.needs-note b { color: var(--emerald-900); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border-radius: 18px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color 0.25s ease; }
.faq-item[open] { border-color: rgba(216,181,109,0.5); }
.faq-q { width: 100%; text-align: left; cursor: pointer; list-style: none; padding: 20px 22px; font-size: 1.02rem; font-weight: 700; color: var(--emerald-900); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q .chevron { flex: none; transition: transform 0.25s ease; color: var(--gold-600); font-size: 1.3rem; }
.faq-item[open] .chevron { transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; margin: 0; color: var(--muted); }

/* ---------- CTA final ---------- */
.cta-final-card { text-align: center; max-width: 780px; margin: 0 auto; }
.coupon-mini { display: inline-flex; align-items: center; gap: 10px; margin: 20px 0 0; padding: 8px 8px 8px 16px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(216,181,109,0.3); }
.coupon-mini > span { font-size: 0.82rem; color: rgba(243,239,230,0.75); }
.coupon-code--mini { padding: 8px 16px; border-radius: 999px; width: auto; }
.coupon-code--mini .cc-value { font-size: 1rem; }
.cta-final-price { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin: 26px 0; }
.hero-price-old { color: rgba(243,239,230,0.6); font-size: 0.95rem; }
.hero-price-old s { text-decoration: line-through; }
.hero-price-now { font-size: 1.1rem; color: rgba(243,239,230,0.85); }
.hero-price-now b { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold-400); }
.cta-final-card .btn { margin-top: 6px; }
.cta-final-note { margin-top: 18px !important; font-size: 0.86rem; }

/* ---------- Footer ---------- */
.footer { padding: 40px 0 130px; text-align: center; color: var(--muted); font-size: 0.86rem; }
.footer-logo { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px; }
.footer p { margin: 0 0 8px; }
.footer-fine { max-width: 640px; margin: 0 auto !important; font-size: 0.78rem; opacity: 0.8; }

/* ============================================================
   EFECTOS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }
.reveal.in { opacity: 1; transform: none; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; pointer-events: none;
  background: linear-gradient(90deg, var(--emerald-500), var(--gold-500), var(--ember-500));
  box-shadow: 0 0 12px var(--gold-glow); transition: width 0.1s linear;
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px; z-index: 0; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%); opacity: 0;
  background: radial-gradient(circle, rgba(216,181,109,0.14), transparent 65%);
  transition: opacity 0.4s ease;
}
.tilt { transform-style: preserve-3d; will-change: transform; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(250, 246, 239, 0.94); backdrop-filter: blur(12px);
  box-shadow: 0 -10px 30px rgba(18,60,51,0.14); border-top: 1px solid rgba(216,181,109,0.35);
  transform: translateY(120%); transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1);
}
.sticky-cta.show { transform: none; }
.sticky-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-info { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.sticky-title { font-weight: 700; font-size: 0.9rem; color: var(--emerald-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-price { font-size: 0.86rem; color: var(--muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sticky-price s { opacity: 0.7; }
.sticky-price b { color: var(--emerald-800); font-size: 1.02rem; }
.sticky-price em { font-style: normal; font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ember-600); padding: 1px 8px; border-radius: 7px; background: rgba(232,112,42,0.12); }
.sticky-cta .btn { white-space: nowrap; padding: 13px 22px; font-size: 0.94rem; }

/* ---------- Toast de cupón ---------- */
.coupon-toast {
  position: fixed; left: 50%; bottom: 96px; z-index: 90; max-width: 380px; width: calc(100% - 32px);
  display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 18px;
  background: var(--emerald-900); color: #fff; box-shadow: 0 24px 50px rgba(18,60,51,0.4);
  transform: translate(-50%, 16px); opacity: 0; pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.coupon-toast.show { transform: translate(-50%, 0); opacity: 1; }
.ct-check {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-content: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--emerald-900); font-weight: 800;
}
.ct-body b { display: block; margin-bottom: 3px; }
.ct-body span { font-size: 0.86rem; color: rgba(255,255,255,0.78); }

/* ---------- Exit reminder ---------- */
.exit-reminder {
  position: fixed; inset: 0; z-index: 210; display: none; align-items: center; justify-content: center;
  padding: 20px; background: rgba(14,46,39,0.72); backdrop-filter: blur(6px);
}
.exit-reminder.open { display: flex; }
.exit-card {
  position: relative; max-width: 420px; width: 100%; padding: 38px 30px 30px; border-radius: var(--radius-lg);
  background: var(--white); text-align: center; box-shadow: var(--shadow-lg);
  transform: scale(0.92); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease;
}
.exit-reminder.show .exit-card { transform: scale(1); opacity: 1; }
.exit-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: 0; background: var(--cream-deep); color: var(--muted); font-size: 18px; cursor: pointer; }
.exit-badge {
  display: inline-block; margin-bottom: 14px; padding: 6px 16px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--ember-400), var(--ember-600));
}
.exit-card h3 { margin: 0 0 10px; font-size: 1.3rem; color: var(--emerald-900); }
.exit-card > p { margin: 0 0 20px; color: var(--muted); font-size: 0.95rem; }
.exit-card .coupon-code { margin-bottom: 16px; }
.exit-card .btn { width: 100%; }
.exit-dismiss { margin-top: 14px; background: none; border: 0; color: var(--muted); font-size: 0.84rem; text-decoration: underline; cursor: pointer; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .check-list-2col { grid-template-columns: repeat(2, 1fr); }
  .roi-out { grid-template-columns: repeat(3, 1fr); }
  .testi-authority { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr auto 1fr; }
  .steps-2col { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-card { grid-template-columns: auto 1fr; text-align: left; gap: 32px; padding: 38px 40px; }
  .seal { margin: 0; }
  .author-grid { grid-template-columns: auto 1fr; }
  .author-frame--sm { max-width: 220px; margin: 0; }
  .grid-bonos { max-width: 620px; margin: 0 auto; }
}
@media (min-width: 980px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .heat-grid { grid-template-columns: 0.85fr 1.15fr; gap: 46px; }
}

@media (max-width: 759px) {
  .section { padding: 48px 0; }
  .topbar-msg { font-size: 0.72rem; gap: 7px; }
  .topbar-msg .hide-sm { display: none; }
  .topbar .btn-sm { padding: 9px 14px; font-size: 0.82rem; }
  .hero { padding: 22px 0 44px; }
  .offer-card { padding: 40px 18px 32px; }
  .price-box { padding: 20px 22px; width: 100%; }
  .sticky-title { display: none; }
  .sticky-price { font-size: 0.8rem; }
  .sticky-cta .btn { padding: 13px 18px; font-size: 0.9rem; }
  .cursor-glow { display: none; }
  .btn { flex-wrap: wrap; gap: 6px; padding: 16px 22px; font-size: 0.98rem; line-height: 1.35; }
  .btn-lg { padding: 18px 24px; font-size: 1.02rem; }
  .guarantee-card { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1 .accent, .ticker-track, .btn-pulse { animation: none; }
  html { scroll-behavior: auto; }
}
