/* ============================================================
   Esmeralda Masajes · Drenaje Linfático Manual
   Landing VSL premium · Esmeralda + dorado + crema
   ============================================================ */

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

  --emerald-900: #06342a;
  --emerald-800: #084436;
  --emerald-700: #0a5443;
  --emerald-600: #0d6a54;
  --emerald-500: #138a6c;
  --emerald-soft: #eaf6f1;

  --cream: #f7f1e7;
  --cream-deep: #f1e7d6;
  --white: #fffdf9;

  --gold-600: #b08a4a;
  --gold-500: #c8a868;
  --gold-400: #e0c690;
  --gold-glow: rgba(200, 168, 104, 0.35);

  --urgencia: #b8503a;
  --urgencia-dark: #933d2b;
  --urgencia-soft: #fbe9e2;
  --urgencia-glow: rgba(184, 80, 58, 0.35);

  --text: #14211c;
  --muted: #54615b;
  --line: rgba(20, 33, 28, 0.09);

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

  --radius: 26px;
  --radius-lg: 34px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  background-color: var(--cream);
  background-image:
    radial-gradient(900px 600px at 85% -5%, rgba(200, 168, 104, 0.16), transparent 60%),
    radial-gradient(900px 700px at -10% 8%, rgba(19, 138, 108, 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.035'/%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: 76px 0; position: relative; overflow: hidden; }
.section .container { position: relative; z-index: 1; }
.section-soft { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.section-white { background: var(--white); }
.section-emerald {
  background:
    radial-gradient(700px 420px at 80% 0%, rgba(200,168,104,0.22), transparent 60%),
    linear-gradient(160deg, var(--emerald-800) 0%, var(--emerald-900) 100%);
  background-size: 100% 100%, 180% 180%;
  animation: emeraldShift 16s ease-in-out infinite alternate;
  color: #f3efe6;
}
@keyframes emeraldShift {
  0% { background-position: 80% 0%, 0% 0%; }
  100% { background-position: 60% 10%, 100% 100%; }
}
.section-emerald .eyebrow { color: var(--gold-400); }
.section-emerald h2, .section-emerald h3 { color: #fff; }
.section-emerald p { color: rgba(243, 239, 230, 0.82); }

.section-head { max-width: 780px; margin: 0 auto 48px; text-align: center; }

.eyebrow {
  display: inline-block; margin: 0 0 14px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em;
  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.8rem, 3.4vw, 2.85rem); line-height: 1.08; color: var(--emerald-900); }

.lead { margin: 18px 0 0; color: var(--muted); font-size: 1.06rem; }
.center { text-align: center; }

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

/* ---------- Buttons ---------- */
.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;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.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%; }
.btn b { font-weight: 800; }
.btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald-800));
  box-shadow: 0 16px 34px rgba(13, 106, 84, 0.30), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(13, 106, 84, 0.38); }
.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); }
.btn-ghost {
  color: var(--emerald-700); background: rgba(255,255,255,0.6);
  border: 1px solid var(--line); backdrop-filter: blur(6px);
}
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-lg { padding: 21px 40px; font-size: 1.12rem; }

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 16px 34px rgba(13,106,84,0.30); }
  50% { box-shadow: 0 18px 46px rgba(13,106,84,0.5), 0 0 0 8px rgba(19,138,108,0.10); }
}
.btn-pulse { animation: btnPulse 1.9s 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(200,168,104,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.86rem; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.topbar-msg b { color: var(--gold-400); font-weight: 700; }
.topbar-dot { color: var(--gold-500); }
.topbar .btn-sm { white-space: nowrap; }
.topbar-timer {
  color: #fff !important; font-variant-numeric: tabular-nums; letter-spacing: 0.06em;
  padding: 2px 9px; border-radius: 8px;
  background: rgba(200,168,104,0.22); border: 1px solid rgba(200,168,104,0.4);
}
.topbar-flag { font-size: 0.9rem; color: var(--gold-400); }

/* ============================================================
   HERO VSL
   ============================================================ */
.hero-vsl { position: relative; padding: 54px 0 66px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.orb-1 { width: 460px; height: 460px; top: -180px; left: -140px; background: radial-gradient(circle, rgba(19,138,108,0.35), transparent 70%); }
.orb-2 { width: 520px; height: 520px; top: -120px; right: -180px; background: radial-gradient(circle, rgba(200,168,104,0.42), transparent 70%); }
.orb-3 { width: 400px; height: 400px; bottom: -200px; left: 40%; background: radial-gradient(circle, rgba(19,138,108,0.22), transparent 70%); }
.hero-vsl .container { position: relative; z-index: 1; }

.hero-head { max-width: 860px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 18px; border-radius: 999px;
  background: rgba(19,138,108,0.10); border: 1px solid rgba(19,138,108,0.22);
  color: var(--emerald-700); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #16a085;
  box-shadow: 0 0 0 0 rgba(22,160,133,0.6); animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(22,160,133,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(22,160,133,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,160,133,0); }
}
.hero h1 {
  margin: 20px auto 0; max-width: 900px;
  font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.01em;
  font-size: clamp(2.05rem, 4.6vw, 3.4rem); line-height: 1.1; color: var(--emerald-900);
}
.hero h1 .accent {
  font-style: italic; font-weight: 600;
  background: linear-gradient(120deg, #8a6526 0%, #b3863a 28%, #d8ad5a 50%, #b3863a 72%, #8a6526 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }
.hero-sub { margin: 20px auto 0; max-width: 680px; color: var(--muted); font-size: 1.08rem; }

/* ---- Foto del hero ---- */
.hero-media-row {
  display: grid; grid-template-columns: minmax(260px, 400px) 1fr; align-items: center;
  gap: clamp(28px, 5vw, 56px); max-width: 980px; margin: 40px auto 0;
}
.vsl-wrap { position: relative; max-width: 400px; margin: 0; justify-self: start; width: 100%; }
.vsl-glow {
  position: absolute; inset: -16px -12px 14px; z-index: 0; border-radius: 32px;
  background: radial-gradient(closest-side, rgba(200,168,104,0.4), transparent 75%);
  filter: blur(20px); animation: vslGlow 4.5s ease-in-out infinite;
}
@keyframes vslGlow { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.03); } }

.vsl-frame {
  position: relative; z-index: 1; border-radius: 22px; overflow: hidden;
  background: linear-gradient(160deg, #0a4a3b, #06342a);
  border: 1px solid rgba(200,168,104,0.45);
  box-shadow: 0 46px 100px rgba(8,40,32,0.38), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-photo-frame { line-height: 0; position: relative; }
.hero-photo-frame img {
  width: 100%; height: auto; display: block; object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.7s cubic-bezier(0.2,0.7,0.2,1);
}
.hero-photo-frame:hover img { transform: scale(1.02); }
.hero-photo-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(200deg, rgba(200,168,104,0.16), transparent 40%, rgba(6,52,42,0.18));
  mix-blend-mode: soft-light;
}

.vsl-under { margin: 0; max-width: 460px; text-align: left; }
.vsl-under .vsl-under-proof { display: flex; }
.vsl-under .btn { width: 100%; justify-content: center; }
.vsl-under-proof {
  display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--line);
  font-size: 0.93rem; 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: 2px; }
.avatars { display: inline-flex; }
.avatars i {
  width: 26px; height: 26px; border-radius: 50%; display: block; margin-left: -9px;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--emerald-soft), var(--gold-400));
}
.avatars i:first-child { margin-left: 0; }
.avatars i:nth-child(2) { background: linear-gradient(135deg, #f6ead2, var(--emerald-500)); }
.avatars i:nth-child(3) { background: linear-gradient(135deg, var(--gold-400), var(--emerald-600)); }
.avatars i:nth-child(4) { background: linear-gradient(135deg, var(--emerald-soft), var(--gold-600)); }

.vsl-under-note { margin: 14px 0 0; font-size: 0.92rem; color: var(--muted); }
.vsl-under-note s { color: rgba(84,97,91,0.75); }

.hero-bullets-row {
  list-style: none; margin: 22px 0 0; padding: 0; max-width: 460px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.hero-bullets-row li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 10px; border-radius: 16px;
  background: rgba(255,255,255,0.72); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); font-weight: 600; font-size: 0.86rem; color: var(--emerald-900);
  backdrop-filter: blur(6px);
}
.hb-ico {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--emerald-soft), #fff);
  border: 1px solid rgba(19,138,108,0.22); color: var(--emerald-700);
}
.hb-ico svg { width: 15px; height: 15px; }

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden; white-space: nowrap;
  background: linear-gradient(135deg, var(--emerald-700), var(--emerald-900));
  border-top: 1px solid rgba(200,168,104,0.3);
  border-bottom: 1px solid rgba(200,168,104,0.3);
  padding: 13px 0;
}
.ticker-track { display: inline-flex; gap: 14px; align-items: center; animation: tickerScroll 38s linear infinite; }
.ticker-track .tk-quote {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600;
  color: #fff; font-size: 0.98rem; letter-spacing: 0.01em;
}
.ticker-track .tk-quote i { font-style: normal; color: var(--gold-400); font-weight: 600; font-size: 0.85rem; }
.ticker-track .tk-fact {
  color: rgba(243,239,230,0.78); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.ticker-track .tk-dot { color: var(--gold-500); font-size: 0.8rem; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ============================================================
   QUÉ ES EL DRENAJE
   ============================================================ */
.lymph-grid { display: grid; gap: 34px; align-items: start; }
.lymph-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(19,138,108,0.16);
  box-shadow: 0 34px 70px rgba(8,40,32,0.12);
}
.lymph-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);
}
.lymph-anim { position: relative; max-width: 190px; margin: 22px auto 0; }
.lymph-svg-new { width: 100%; height: auto; overflow: hidden; }
.lymph-svg-new .silhouette {
  fill: var(--emerald-600); opacity: 0.22;
}
.lymph-svg-new .silhouette path { fill: inherit; }
.lymph-svg-new .flow-path {
  fill: none; stroke: var(--emerald-500); stroke-width: 1.6; stroke-dasharray: 2.5 6;
  stroke-linecap: round; opacity: 0.5;
}
.lymph-svg-new .flow-particle {
  fill: var(--gold-500); filter: drop-shadow(0 0 5px var(--gold-glow));
}
.node-group circle:not(.node-pulse) {
  fill: var(--gold-600); stroke: var(--white); stroke-width: 1.2;
}
.node-group .node-pulse {
  fill: none; stroke: var(--gold-500); stroke-width: 1.4;
}
.lymph-anim-labels {
  position: absolute; inset: 0; pointer-events: none;
}
.lymph-anim-labels span {
  position: absolute; left: calc(100% + 10px); transform: translateY(-50%);
  white-space: nowrap; font-size: 0.78rem; font-weight: 700; color: var(--emerald-900);
  background: var(--white); padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(19,138,108,0.18); box-shadow: var(--shadow-sm);
}
@media (max-width: 979px) {
  .lymph-anim-labels {
    position: static; inset: auto; pointer-events: auto;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
    margin: 18px auto 0; max-width: 320px;
  }
  .lymph-anim-labels span {
    position: static; left: auto; transform: none;
  }
}
@media (max-width: 480px) {
  .lymph-anim-labels span { font-size: 0.68rem; padding: 3px 7px; }
}

.lymph-text { display: grid; gap: 16px; }
.lymph-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;
}
.lymph-step:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.ls-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);
}
.lymph-step h3 { margin: 0 0 5px; font-size: 1.14rem; color: var(--emerald-900); }
.lymph-step p { margin: 0; color: var(--muted); font-size: 0.97rem; }

.lymph-myth {
  padding: 20px 24px; border-radius: 22px;
  background: linear-gradient(165deg, #fff8ec, #f6ead2);
  border: 1px solid rgba(200,168,104,0.45);
}
.myth-title { margin: 0 0 6px; font-weight: 800; color: var(--gold-600); letter-spacing: 0.02em; }
.lymph-myth p:last-child { margin: 0; color: var(--emerald-900); font-weight: 600; }

.demand-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 40px 0 0; }
.demand-chips span {
  padding: 9px 18px; border-radius: 999px; font-size: 0.86rem; font-weight: 700;
  color: var(--emerald-700); background: var(--emerald-soft); border: 1px solid rgba(19,138,108,0.18);
}

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

/* ---------- 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 .x {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-content: center;
  background: rgba(176,138,74,0.14); color: var(--gold-600); font-weight: 800;
}
.pain-card p { margin: 0; color: var(--text); font-weight: 600; }

.pain-title {
  margin: 0 0 22px; text-align: center;
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--emerald-900);
}

.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-ico {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 16px;
  display: grid; place-content: center; font-size: 1.3rem;
  background: radial-gradient(circle at 35% 30%, var(--emerald-soft), #d9efe6);
  border: 1px solid rgba(19,138,108,0.18);
}
.ach-card h3 { margin: 0; font-size: 1.04rem; color: var(--emerald-900); line-height: 1.3; }

/* ---------- Plataforma / certificado ---------- */
.platform {
  background:
    radial-gradient(700px 460px at 88% 12%, rgba(19,138,108,0.08), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.platform-media { position: relative; }
.platform-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(19,138,108,0.14);
  box-shadow: 0 40px 90px rgba(8,40,32,0.16), inset 0 1px 0 rgba(255,255,255,0.6);
}
.platform-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(420px 200px at 50% -10%, var(--gold-glow), transparent 60%);
}
.platform-frame img { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 18px 40px rgba(8,40,32,0.18); }
.platform-frame.is-empty { min-height: 340px; display: grid; place-content: center; text-align: center; }
.platform-frame.is-empty::before { content: attr(data-label); padding: 24px; color: var(--emerald-700); font-weight: 600; font-size: 0.9rem; }

.certificate {
  background:
    radial-gradient(640px 420px at 12% 15%, rgba(200,168,104,0.12), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.cert-media { position: relative; width: 100%; margin: 0 auto; }
.cert-frame {
  position: relative; margin: 0; padding: clamp(12px, 1.6vw, 22px);
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, #ffffff 100%);
  border: 1px solid rgba(200,168,104,0.32);
  box-shadow: 0 40px 90px rgba(8,40,32,0.14), inset 0 1px 0 rgba(255,255,255,0.7);
}
.cert-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(360px 180px at 50% -8%, var(--gold-glow), transparent 60%);
}
.cert-frame img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 18px 44px rgba(8,40,32,0.16); }
.cert-frame.is-empty { min-height: 320px; display: grid; place-content: center; text-align: center; }
.cert-frame.is-empty::before { content: attr(data-label); padding: 24px; color: var(--gold-600); font-weight: 600; font-size: 0.9rem; }
.cert-tag {
  position: absolute; z-index: 4; top: -15px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  padding: 10px 22px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700; color: var(--emerald-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 14px 30px var(--gold-glow);
}
.certificate .container, .platform .container, #antes-despues .container { max-width: 1300px; }
.microcopy { margin-top: 20px; font-size: 0.85rem; color: var(--muted); font-style: italic; }
.microcopy-highlight {
  margin: 22px auto 0; max-width: 640px; text-align: center;
  font-size: 0.92rem; color: var(--emerald-900); line-height: 1.6;
  padding: 14px 22px; border-radius: 14px;
  background: var(--emerald-soft); border-left: 3px solid var(--gold-500);
}
.microcopy-highlight b { color: var(--emerald-900); font-weight: 700; }

/* ---------- Módulos ---------- */
.modules { display: grid; gap: 20px; grid-template-columns: 1fr; }
.module-card {
  position: relative; overflow: hidden; padding: 32px 28px 28px; 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-card h3 {
  margin: 0 0 10px; font-size: 1.2rem; color: var(--emerald-900);
  font-family: 'Playfair Display', serif; letter-spacing: 0.01em;
}
.module-card p { margin: 0; color: var(--muted); font-size: 0.97rem; line-height: 1.55; }

/* ============================================================
   OFERTA · LISTA "TU ACCESO INCLUYE"
   ============================================================ */
.offer-incluye {
  max-width: 640px; margin: 26px auto 0; padding: 6px 0; text-align: left;
  list-style: none;
}
.offer-incluye li {
  display: grid; grid-template-columns: auto 1fr; gap: 13px;
  padding: 13px 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); }
.oi-ico {
  width: 26px; height: 26px; border-radius: 8px; flex: none; margin-top: 1px;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.oi-ico svg { width: 14px; height: 14px; }
.oi-ico-ok { background: var(--emerald-soft); color: var(--emerald-700); }
.oi-ico-bn { background: rgba(200,168,104,0.18); }

/* ============================================================
   OFERTA
   ============================================================ */
.offer-wrap { max-width: 780px; margin: 0 auto; }
.offer-card {
  position: relative; overflow: hidden; padding: 40px 34px 44px; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
  border: 1px solid rgba(200,168,104,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: 36px auto 30px; max-width: 470px;
  padding: 24px 24px 20px; border-radius: 24px; text-align: center;
  background: linear-gradient(150deg, #114334 0%, #06342a 100%);
  border: 1.5px solid var(--urgencia);
  box-shadow: 0 22px 52px rgba(8,40,32,0.32);
  animation: cdGlow 2.4s ease-in-out infinite;
}
@keyframes cdGlow {
  0%, 100% { box-shadow: 0 22px 52px rgba(8,40,32,0.32), 0 0 0 0 var(--urgencia-glow); }
  50% { box-shadow: 0 22px 64px rgba(8,40,32,0.4), 0 0 0 8px transparent; }
}
.countdown-label {
  margin: 0 0 16px; display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 800; font-size: 0.92rem;
  padding: 6px 16px; border-radius: 999px; background: var(--urgencia);
}
.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: 90px;
  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(200,168,104,0.3);
}
.cd-box b {
  font-family: 'Playfair Display', serif; font-size: 3rem; 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: 2.2rem; font-weight: 700; color: var(--gold-400); line-height: 1.6; }
.countdown-foot { margin: 16px 0 0 !important; font-size: 0.8rem; color: rgba(243,239,230,0.75) !important; }
.countdown-foot b { color: var(--gold-400); }

.price-box {
  position: relative; display: inline-flex; flex-direction: column; align-items: center;
  margin: 28px auto 0; padding: 26px 46px; border-radius: 26px;
  background: var(--white); border: 2px solid var(--urgencia); box-shadow: var(--shadow-lg);
}
.off-badge {
  position: absolute; top: -18px; right: -14px;
  padding: 9px 18px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 800; letter-spacing: 0.02em; color: #fff;
  background: linear-gradient(135deg, var(--urgencia), var(--urgencia-dark));
  box-shadow: 0 12px 28px rgba(147,61,43,0.45); transform: rotate(5deg);
  animation: badgeBeat 2.2s ease-in-out infinite;
}
@keyframes badgeBeat { 0%,100% { transform: rotate(5deg) scale(1); } 50% { transform: rotate(5deg) scale(1.07); } }
.price-old { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.price-current {
  font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6.5vw, 3.9rem);
  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); }

/* ---------- Cupón ---------- */
.cupon-box { position: relative; margin: 30px auto 0; max-width: 460px; text-align: center; }
.cupon-label {
  display: block; margin-bottom: 14px; font-size: 0.86rem; font-weight: 700;
  color: var(--emerald-700); letter-spacing: 0.02em;
}
.cupon-pill {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  padding: 14px 14px 14px 26px; border-radius: 20px;
  background: linear-gradient(160deg, #fff, var(--cream));
  border: 2px dashed var(--gold-500); box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.cupon-pill.copiado { border-color: #16a085; box-shadow: 0 0 0 7px rgba(22,160,133,0.14), var(--shadow-md); }
.cupon-code {
  font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 0.09em;
  font-size: clamp(1.7rem, 6vw, 2.3rem); color: var(--emerald-900);
}
.cupon-copy {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border: 0; border-radius: 14px; cursor: pointer;
  font-weight: 700; font-size: 0.92rem; color: #fff; white-space: nowrap;
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald-800));
  box-shadow: 0 14px 28px rgba(13,106,84,0.32);
  transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.cupon-copy:hover { transform: translateY(-2px); }
.cupon-copy svg { width: 18px; height: 18px; flex: none; }
.cupon-copy-ok { display: none; }
.cupon-copy.copiado {
  background: linear-gradient(135deg, #16a085, var(--emerald-700));
  animation: cuponPop 0.45s ease;
}
.cupon-copy.copiado .cupon-copy-ico { display: none; }
.cupon-copy.copiado .cupon-copy-ok { display: inline-flex; }
@keyframes cuponPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.14); }
  100% { transform: scale(1); }
}
.cupon-note { margin: 16px auto 0; max-width: 420px; font-size: 0.87rem; color: var(--muted); }
.cupon-note b { color: var(--emerald-800); }
.cupon-note s { color: rgba(84,97,91,0.75); }

.trust-row {
  position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 24px auto 0; max-width: 580px;
}
.trust-row span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; 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);
}

/* ---------- Garantía ---------- */
.guarantee-card {
  display: grid; gap: 24px; align-items: center; text-align: center;
  margin: 26px auto 0; padding: 34px 30px; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #fff8ec, #f6ead2);
  border: 1px solid rgba(200,168,104,0.45);
  box-shadow: 0 26px 60px rgba(176,138,74,0.20);
}
.seal {
  width: 132px; height: 132px; margin: 0 auto; border-radius: 50%;
  display: grid; place-content: center; text-align: center; flex: none;
  color: var(--emerald-900);
  background: radial-gradient(circle at 35% 28%, #ffe9bd, var(--gold-500));
  border: 3px dashed rgba(6,52,42,0.28);
  box-shadow: 0 18px 40px rgba(176,138,74,0.4);
  animation: sealFloat 5s ease-in-out infinite;
}
@keyframes sealFloat { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-8px) rotate(3deg); } }
.seal-days { display: block; font-family: 'Playfair Display', serif; font-size: 3rem; line-height: 1; font-weight: 700; }
.seal-txt { display: block; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.3; margin-top: 4px; }
.guarantee-card h3 { margin: 0 0 10px; font-size: 1.5rem; color: var(--emerald-900); }
.guarantee-card p { margin: 0; color: var(--muted); }
.seal-note { margin-top: 10px !important; font-size: 0.84rem; font-style: italic; }

/* ---------- 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 h3 span {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-content: center;
  font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 800; color: #fff;
}
.fit-card.yes { border-color: rgba(19,138,108,0.35); background: linear-gradient(170deg, #fff, var(--emerald-soft)); }
.fit-card.yes h3 span { background: linear-gradient(135deg, #16a085, var(--emerald-700)); }
.fit-card.no h3 span { background: linear-gradient(135deg, #b8907e, #8a6252); }
.fit-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.fit-card li { position: relative; padding-left: 26px; color: var(--text); font-size: 0.98rem; }
.fit-card.yes li::before { content: '✓'; position: absolute; left: 0; color: var(--emerald-600); font-weight: 800; }
.fit-card.no li { color: var(--muted); }
.fit-card.no li::before { content: '×'; position: absolute; left: 2px; color: #b8907e; font-weight: 800; font-size: 1.1rem; }

/* ---------- 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(200,168,104,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; }
.cta-final-card .btn { margin-top: 30px; }
.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 p { margin: 0 0 8px; }
.footer-legal { 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(--gold-400));
  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(200,168,104,0.14), transparent 65%);
  transition: opacity 0.4s ease;
}

/* Glow de borde dorado en cards */
.ach-card::before, .module-card::before, .pain-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  padding: 1px; opacity: 0; transition: opacity 0.3s ease;
  background: linear-gradient(135deg, var(--gold-400), transparent 40%, transparent 60%, var(--emerald-500));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.ach-card:hover::before, .module-card:hover::before, .pain-card:hover::before { opacity: 1; }

/* Tilt 3D */
.tilt { transform-style: preserve-3d; will-change: transform; }

/* Orbes decorativos */
.section-soft::before, .section-white::before {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  top: -160px; right: -140px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%); filter: blur(10px);
}
.section-soft::after {
  content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  bottom: -160px; left: -120px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(19,138,108,0.12), transparent 70%); filter: blur(10px);
}

/* ---------- 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(247, 241, 231, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 -10px 30px rgba(8,40,32,0.14);
  border-top: 1px solid rgba(200,168,104,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.92rem; color: var(--emerald-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-price { font-size: 0.88rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.sticky-price b { color: var(--emerald-800); font-size: 1.05rem; }
.sticky-price em {
  font-style: normal; font-variant-numeric: tabular-nums; font-weight: 700;
  color: var(--gold-600); padding: 1px 8px; border-radius: 7px; background: rgba(200,168,104,0.16);
}
.sticky-cta .btn { white-space: nowrap; padding: 14px 26px; }

/* ============================================================
   GALERÍA / CARRUSEL
   ============================================================ */
.carr-sec {
  padding: 60px 0 68px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.carr-cab {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 26px;
}
.carr-tag {
  font-family: 'Playfair Display', serif; font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 700; letter-spacing: 0.02em; color: var(--emerald-900);
}
.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(200,168,104,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(200,168,104,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(300px, 60vw, 400px);
  background: var(--white); border: 1px solid rgba(200,168,104,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; }

/* ---------- Lightbox ---------- */
.lbx {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 24px 16px; background: rgba(6,52,42,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; } }

/* ---------- Responsive ---------- */
@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); }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .hero-bullets-row { grid-template-columns: repeat(4, 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; }
}

@media (min-width: 980px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .modules { grid-template-columns: repeat(3, 1fr); }
  .lymph-grid { grid-template-columns: 0.85fr 1.15fr; gap: 46px; }
}

@media (max-width: 759px) {
  .section { padding: 54px 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-vsl { padding: 34px 0 50px; }
  .vsl-play { width: 74px; height: 74px; }
  .vsl-play .tri { border-left-width: 20px; border-top-width: 12px; border-bottom-width: 12px; }
  .vsl-bar-label { display: none; }
  .offer-card { padding: 48px 20px 36px; }
  .price-box { padding: 22px 26px; width: 100%; }
  .sticky-title { display: none; }
  .sticky-price { font-size: 0.82rem; }
  .sticky-cta .btn { padding: 14px 20px; font-size: 0.95rem; }
  .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; }
  .hero-bullets-row li { font-size: 0.88rem; padding: 12px 13px; }
  .guarantee-card { padding: 30px 22px; }
  .hero-media-row { grid-template-columns: 1fr; margin-top: 26px; }
  .vsl-wrap { max-width: 320px; margin: 0 auto; justify-self: center; }
  .vsl-under { text-align: center; margin: 24px auto 0; }
  .vsl-under .vsl-under-proof { display: inline-flex; }
  .hero-bullets-row { margin-left: auto; margin-right: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1 .accent, .section-emerald, .ticker-track, .btn-pulse, .vsl-glow, .countdown-pro,
  .seal, .off-badge, .live-dot,
  .cupon-copy.copiado, .countdown-pro { animation: none; }
  html { scroll-behavior: auto; }
  .flow-particle, .node-pulse { display: none; }
}
