/* ================================================================
   MÉTODO WOG — styles.css  (mobile-first redesign)
   Archetype: Editorial Dark Warm — combat sports premium
   Base: 8px spacing rhythm | Touch targets ≥ 44px | 16px+ body
   ================================================================ */

/* ── TOKENS ── */
:root {
  --bg:        #0a0804;
  --bg-2:      #12100c;
  --bg-card:   #1a1713;
  --bg-card-2: #201d16;
  --cream:     #f2ead8;
  --cream-2:   #ccc0a0;
  --cream-3:   #7a7060;
  --gold:      #c9a84c;
  --gold-hi:   #e8c96a;
  --gold-lo:   #8a7230;
  --gold-glow: rgba(201,168,76,.15);
  --line:      rgba(242,234,216,.08);
  --line-gold: rgba(201,168,76,.22);

  --ff-display: 'Anton', 'Arial Black', sans-serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;

  --ease-out:    cubic-bezier(.23,1,.32,1);   /* strong: instant start, clean settle */
  --ease-inout:  cubic-bezier(.77,0,.175,1);  /* strong in-out for on-screen motion */
  --ease-spring: cubic-bezier(.34,1.56,.64,1); /* subtle overshoot for cards/buttons */
  --ease-drawer: cubic-bezier(.32,.72,0,1);   /* iOS-like for overlays */

  --nav-h:    60px;
  --r:        4px;   /* border-radius base */
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  color-scheme: dark;
  /* disable pull-to-refresh on the page level */
  overscroll-behavior-y: none;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;          /* 16px — prevents iOS auto-zoom */
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* faster tap response */
  touch-action: manipulation;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; font: inherit; cursor: pointer; }

/* defensive: never let .reveal + data-split combo go invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* ── SKIP LINK ── */
.skip-link {
  position: fixed; top: -100%; left: 1rem;
  background: var(--gold); color: #0a0804;
  padding: .5rem 1rem; font-weight: 700;
  border-radius: var(--r);
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── CONTAINER ── */
.container {
  width: min(var(--container), 100% - 2 * 1.25rem);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .container { width: min(var(--container), 100% - 2 * 2rem); }
}
@media (min-width: 1024px) {
  .container { width: min(var(--container), 100% - 2 * 3rem); }
}

/* ── TYPOGRAPHY HELPERS ── */
.kicker {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: .95;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.title em { font-style: normal; color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  /* touch target: min 44px height */
  min-height: 48px;
  padding: .75rem 1.5rem;
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--r);
  cursor: pointer;
  touch-action: manipulation;
  white-space: nowrap;
  transition: background .2s var(--ease-out),
              border-color .2s var(--ease-out),
              color .2s var(--ease-out),
              transform .15s var(--ease-out),
              box-shadow .2s var(--ease-out);
  /* fix invisible focus for keyboard users */
  outline-offset: 3px;
}
.btn:focus-visible { outline: 2px solid var(--gold); }

.btn-primary {
  background: var(--gold);
  color: #0a0804;
  border: 2px solid var(--gold);
}
.btn-primary:focus-visible {
  background: var(--gold-hi);
  border-color: var(--gold-hi);
  box-shadow: 0 8px 28px rgba(201,168,76,.3);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--gold-hi);
    border-color: var(--gold-hi);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,.3);
  }
}
.btn-primary:active { transform: scale(.97); box-shadow: none; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(242,234,216,.25);
}
.btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}
@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }
}
.btn-ghost:active { transform: scale(.97); }

.btn-lg {
  min-height: 52px;
  padding: .875rem 2rem;
  font-size: 1rem;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease-out),
              transform .5s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-kicker, .hero-title, .hero-sub, .hero-quote,
  .hero-actions, .hero-stats {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .splash-wog, .splash-sub, .splash-fill { animation: none; }
}

/* ═══════════════════════════════════
   SPLASH
═══════════════════════════════════ */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  transition: opacity .5s var(--ease-inout), transform .6s var(--ease-inout);
  /* CSS safety: hide at 4.5s if JS fails */
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety { to { opacity: 0; pointer-events: none; visibility: hidden; } }
.splash.is-out { opacity: 0; pointer-events: none; transform: scale(1.03); }

.splash-inner {
  display: flex; flex-direction: column; align-items: center; gap: .625rem;
  text-align: center;
}
.splash-wog {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 18vw, 8rem);
  letter-spacing: .06em;
  color: var(--gold);
  line-height: 1;
  animation: splashIn .7s var(--ease-out) both;
}
@keyframes splashIn { from { opacity:0; transform:scale(.95) translateY(8px); } to { opacity:1; transform:none; } }

.splash-sub {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream-3);
  animation: fadeIn .6s .25s var(--ease-out) both;
}
.splash-bar {
  width: 100px; height: 1px;
  background: rgba(201,168,76,.2);
  margin-top: .5rem;
  overflow: hidden;
}
.splash-fill {
  height: 100%; width: 0; background: var(--gold);
  animation: splashLoad 1.8s .3s var(--ease-out) forwards;
}
@keyframes splashLoad { to { width: 100%; } }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding-inline: 1.25rem;
  gap: 1rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease-out), border-bottom-color .3s var(--ease-out),
              backdrop-filter .3s;
}
@media (min-width: 768px) { .nav { padding-inline: 2rem; } }
@media (min-width: 1024px) { .nav { padding-inline: 3rem; } }

.nav.is-scrolled {
  background: rgba(10,8,4,.96);
  border-bottom-color: var(--line-gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-wog {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: .08em;
  color: var(--gold);
  line-height: 1;
}
.nav-logo {
  height: 4rem;
  width: auto;
  display: block;
}
.nav-links {
  display: none;
  margin-left: auto;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; align-items: center; }
}
.nav-link {
  font-size: .775rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-2);
  position: relative;
  min-height: 44px;
  display: inline-flex; align-items: center;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right .25s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { right: 0; }
.nav-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.nav-cta {
  display: none;
  min-height: 44px;
  padding: 0 1.125rem;
  background: var(--gold);
  color: #0a0804;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r);
  align-items: center;
  touch-action: manipulation;
  transition: background .2s, transform .15s;
  outline-offset: 3px;
}
.nav-cta:focus-visible { outline: 2px solid var(--gold); }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }
.nav-cta:active { transform: scale(.97); }
@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover { background: var(--gold-hi); transform: translateY(-1px); }
}

/* burger */
.nav-burger {
  margin-left: auto;
  display: flex; flex-direction: column; gap: 5px;
  padding: 10px;        /* extra touch area */
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r);
  transition: background .15s;
  outline-offset: 3px;
}
.nav-burger:focus-visible { outline: 2px solid var(--gold); }
.nav-burger:hover { background: rgba(201,168,76,.1); }
@media (min-width: 768px) { .nav-burger { display: none; } }

.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
  border-radius: 2px;
}
.nav-burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* mobile nav overlay */
.nav-links.is-open {
  display: flex;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - var(--nav-h));
  /* fallback for WebViews where dvh/vh misbehave */
  min-height: calc(100vh - var(--nav-h));
  background: #0a0804;
  background: rgba(10,8,4,.99);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 9999;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  animation: navOverlayIn .25s var(--ease-drawer) both;
}
@keyframes navOverlayIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.nav-links.is-open .nav-link {
  font-size: 1.5rem;
  letter-spacing: .08em;
  animation: navLinkIn .35s var(--ease-out) both;
  opacity: 0;
}
@keyframes navLinkIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.nav-links.is-open li:nth-child(1) .nav-link { animation-delay: 60ms; }
.nav-links.is-open li:nth-child(2) .nav-link { animation-delay: 110ms; }
.nav-links.is-open li:nth-child(3) .nav-link { animation-delay: 160ms; }
.nav-links.is-open li:nth-child(4) .nav-link { animation-delay: 210ms; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;  /* dynamic viewport on mobile */
  display: flex; align-items: center;
  overflow: clip;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(
    150deg,
    rgba(10,8,4,.75) 0%,
    rgba(10,8,4,.5)  55%,
    rgba(10,8,4,.65) 100%
  );
}
@media (min-width: 768px) {
  .hero-bg {
    left: 48%;
  }
  .hero-tint {
    background: linear-gradient(
      to right,
      rgba(10,8,4,1)   0%,
      rgba(10,8,4,.7)  35%,
      rgba(10,8,4,.25) 65%,
      rgba(10,8,4,.4)  100%
    );
  }
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 8% 65%, rgba(201,168,76,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 92% 25%, rgba(201,168,76,.05) 0%, transparent 60%);
  animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse { from { opacity: .5; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero-mesh { animation: none; } }

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h) + 3rem) 1.25rem 4rem;
}
@media (min-width: 768px)  { .hero-inner { padding: calc(var(--nav-h) + 4rem) 2rem 5rem; max-width: 720px; } }
@media (min-width: 1024px) { .hero-inner { padding-inline: 3rem; max-width: var(--container); margin-inline: auto; } }

.hero-kicker {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .7s .9s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 22vw, 11rem);
  line-height: .9;
  letter-spacing: .015em;
  text-transform: uppercase;
  display: flex; flex-direction: column;
  opacity: 0;
  animation: fadeUp .85s 1s var(--ease-out) forwards;
}
.hero-line-cream { color: var(--cream); }
.hero-line-gold {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  text-shadow: 0 0 48px rgba(201,168,76,.25);
}
@media (min-width: 480px) {
  .hero-line-gold { -webkit-text-stroke-width: 2.5px; }
}

.hero-sub {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  font-weight: 300;
  color: var(--cream-2);
  line-height: 1.5;
  margin-top: 1.25rem;
  opacity: 0;
  animation: fadeUp .7s 1.2s var(--ease-out) forwards;
}
.hero-sub strong { color: var(--gold); font-weight: 600; }

.hero-quote {
  font-size: clamp(.85rem, 3vw, .95rem);
  color: var(--cream-3);
  font-style: italic;
  margin-top: .5rem;
  opacity: 0;
  animation: fadeUp .7s 1.35s var(--ease-out) forwards;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp .7s 1.5s var(--ease-out) forwards;
}
@media (max-width: 399px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

.hero-stats {
  display: flex; align-items: center; gap: 1.25rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp .7s 1.65s var(--ease-out) forwards;
}
.stat-sep { width: 1px; height: 28px; background: var(--line-gold); flex-shrink: 0; }
.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-3);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════
   MARQUEE
═══════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding-block: .625rem;
  background: var(--bg-2);
}
.marquee-track {
  display: flex; gap: 1.5rem; align-items: center;
  width: max-content;
  animation: marq 28s linear infinite;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-3);
  white-space: nowrap;
}
.m-dot { color: var(--gold); font-size: .55rem; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ═══════════════════════════════════
   SECTIONS — base
═══════════════════════════════════ */
.section {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}
.s-quien    { background: var(--bg); }
.s-para-quien { background: var(--bg-2); }
.s-programa { background: var(--bg); }
.s-incluye  { background: var(--bg-2); }
.s-resultados { background: var(--bg); }
.s-inversion { background: var(--bg-2); }
.s-cta      { background: var(--bg); position: relative; overflow: clip; }

/* ═══════════════════════════════════
   QUIÉN ES
═══════════════════════════════════ */
.quien-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .quien-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 3.5rem; }
}
@media (min-width: 1024px) {
  .quien-grid { grid-template-columns: 7fr 5fr; gap: 4rem; }
}

/* two-photo editorial layout */
.quien-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 480px) {
  .quien-photos { grid-template-columns: 3fr 2fr; align-items: start; }
}
@media (min-width: 768px) {
  .quien-photos { grid-template-columns: 1fr; gap: .75rem; }
}
@media (min-width: 1024px) {
  .quien-photos { grid-template-columns: 3fr 2fr; align-items: start; }
}

.quien-photo-main,
.quien-photo-sec {
  position: relative;
  overflow: clip;
  border-radius: var(--r);
}
.quien-photo-main { aspect-ratio: 3/4; }
.quien-photo-sec  { aspect-ratio: 2/3; }

@media (min-width: 480px) {
  .quien-photo-sec { margin-top: 2.5rem; }
}
@media (min-width: 768px) {
  .quien-photo-main { aspect-ratio: 16/9; max-height: 320px; }
  .quien-photo-sec  { aspect-ratio: 16/9; max-height: 240px; margin-top: 0; }
}
@media (min-width: 1024px) {
  .quien-photo-main { aspect-ratio: 3/4; max-height: none; }
  .quien-photo-sec  { aspect-ratio: 2/3; max-height: none; margin-top: 5rem; }
}

.quien-photo-main img,
.quien-photo-sec img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .6s var(--ease-out);
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .quien-photo-main:hover img,
  .quien-photo-sec:hover img { transform: scale(1.04); }
}
.quien-photo-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,4,.6) 0%, transparent 45%);
  pointer-events: none;
}

/* keep old class working for any leftover references */
.quien-img-wrap {
  position: relative; overflow: clip;
  border-radius: var(--r); aspect-ratio: 3/4;
}
.quien-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.quien-badge {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 1;
  background: var(--gold);
  color: #0a0804;
  padding: .375rem .75rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex; flex-direction: column; gap: .1rem;
  border-radius: 2px;
}

.quien-lead {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 1rem;
}
.quien-lead strong { color: var(--gold); font-weight: 600; }
.quien-body {
  font-size: 1rem;
  color: var(--cream-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.quien-badges { display: flex; flex-direction: column; gap: .75rem; }
.badge-item {
  display: flex; align-items: center; gap: .875rem;
  font-size: .9rem;
  color: var(--cream-2);
  border-left: 2px solid var(--gold);
  padding-left: .875rem;
  min-height: 36px;
}
.badge-ico { color: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════
   PARA QUIÉN
═══════════════════════════════════ */
.arrow-list {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2rem;
  max-width: 680px;
}
.arrow-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 1.05rem;
  color: var(--cream-2);
  line-height: 1.55;
  padding: .875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .arrow-list li:hover { border-color: var(--line-gold); background: var(--bg-card-2); }
}
.arrow {
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 1.2rem;
  line-height: 1.55;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   LO QUE TE DECÍS — VOCES
═══════════════════════════════════ */
.s-voces {
  background: var(--bg);
  position: relative;
  overflow: clip;
}
.s-voces::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201,168,76,.06) 0%, transparent 65%);
}

.voces-intro {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--cream-3);
  line-height: 1.65;
  margin-top: -.5rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

/* Bento grid */
.voces-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: .875rem;
}
@media (min-width: 640px) {
  .voces-bento {
    grid-template-columns: 1fr 1fr;
  }
  .voz-card--hero { grid-column: 1 / -1; }
  .voz-card--wide { grid-column: 2 / -1; }
}
@media (min-width: 1024px) {
  .voces-bento {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .voz-card--hero { grid-column: 1 / -1; }
  .voz-card--wide { grid-column: 2 / -1; }
}

/* Base card */
.voz-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out);
  cursor: default;
}
.voz-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-lo), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .voz-card:hover { border-color: var(--line-gold); transform: translateY(-3px); }
  .voz-card:hover::after { opacity: 1; }
}

/* Hero card accent */
.voz-card--hero {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,168,76,.06) 100%);
  border-color: var(--line-gold);
  padding: 2.25rem 2rem 2rem;
}
.voz-card--hero::after { opacity: 1; }

/* Big decorative quote mark */
.voz-qmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 10vw, 6rem);
  line-height: .75;
  color: var(--gold);
  opacity: .18;
  display: block;
  margin-bottom: .5rem;
  user-select: none;
}
.voz-card--hero .voz-qmark { opacity: .3; }

/* Quote text */
.voz-text {
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1.25rem;
}
.voz-text em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 1.1em;
  letter-spacing: .02em;
}
.voz-card--hero .voz-text {
  font-size: clamp(1.2rem, 4vw, 1.65rem);
  line-height: 1.4;
}

/* Tag label */
.voz-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-lo);
  border-top: 1px solid var(--line);
  padding-top: .875rem;
  align-self: flex-start;
  transition: color .2s var(--ease-out);
}
.voz-card:hover .voz-tag { color: var(--gold); }
.voz-card--hero .voz-tag { color: var(--gold); }

/* ═══════════════════════════════════
   PROGRAMA — FASES
═══════════════════════════════════ */
.fases-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 2.5rem 2.5rem;
  counter-reset: none;
}
@media (min-width: 768px) {
  .fases-list { flex-direction: row; gap: 1.25rem; }
}

.fase {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-lo);
  padding: 1.5rem;
  border-radius: 0 0 var(--r) var(--r);
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: border-top-color .2s var(--ease-out), transform .18s var(--ease-spring);
  flex: 1;
}
@media (min-width: 768px) {
  .fase { flex-direction: column; gap: .875rem; }
}
@media (hover: hover) and (pointer: fine) {
  .fase:hover { border-top-color: var(--gold); transform: translateY(-4px); }
}
.fase:active { transform: scale(.98); border-top-color: var(--gold); }

.fase-num {
  font-family: var(--ff-display);
  font-size: 2.25rem;
  color: var(--gold);
  opacity: .45;
  line-height: 1;
  flex-shrink: 0;
}
.fase-weeks {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.fase-name {
  font-family: var(--ff-display);
  font-size: 1.375rem;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .4rem;
}
.fase-desc { font-size: .875rem; color: var(--cream-2); line-height: 1.5; }

/* pilares */
.pilares {
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: var(--r);
  padding: 1.5rem;
}
.pilares-label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-align: center;
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
}
@media (min-width: 480px) {
  .pilares-grid { grid-template-columns: repeat(4, 1fr); }
}
.pilar {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.pilar svg { color: var(--gold); }

/* ═══════════════════════════════════
   QUÉ INCLUYE
═══════════════════════════════════ */
.incluye-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 2rem;
}
@media (min-width: 640px)  { .incluye-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .incluye-list { grid-template-columns: 1fr 1fr 1fr; } }

.incluye-item {
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .2s var(--ease-out), transform .2s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.incluye-item::before {
  content: '';
  position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(ellipse 100% 60% at 0% 0%, rgba(201,168,76,.07), transparent 70%);
  transition: opacity .3s var(--ease-out);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .incluye-item:hover { background: var(--bg-card-2); }
  .incluye-item:hover::before { opacity: 1; }
}

.i-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--line-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background .2s var(--ease-out), transform .2s var(--ease-spring);
}
@media (hover: hover) and (pointer: fine) {
  .incluye-item:hover .i-icon {
    background: rgba(201,168,76,.18);
    transform: scale(1.08);
  }
}

.i-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .375rem;
  line-height: 1.3;
}
.i-body p { font-size: .875rem; color: var(--cream-2); line-height: 1.55; }

/* ═══════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════ */
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 900px)  { .testimonios-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1200px) { .testimonios-grid { gap: 2rem; } }

.testi {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out);
}
.testi::before {
  content: '';
  position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--gold-glow), transparent 70%);
  transition: opacity .35s var(--ease-out);
  pointer-events: none; z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .testi:hover { transform: translateY(-4px); border-color: var(--line-gold); }
  .testi:hover::before { opacity: 1; }
}
.testi:active { transform: scale(.98); }

/* foto de transformación */
.testi-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* contenido debajo de la foto */
.testi-body {
  display: flex; flex-direction: column; gap: .875rem;
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
}

.testi-head {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.testi-head-info { display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--line-gold);
  flex-shrink: 0;
}
.testi-nombre {
  font-family: var(--ff-display);
  font-size: 1.375rem;
  text-transform: uppercase;
  color: var(--cream);
}
.testi-cambio {
  display: flex; align-items: center; gap: .3rem;
  font-size: .8rem;
  flex-shrink: 0;
}
.testi-cambio svg { color: var(--gold); }
.t-antes  { color: var(--cream-3); }
.t-despues { color: var(--gold); font-weight: 600; }

.testi-tag {
  display: inline-block;
  background: var(--gold);
  color: #0a0804;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
  align-self: flex-start;
}

.testi-ad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
  font-size: .82rem;
  line-height: 1.45;
  overflow: hidden;
}
.ad-col { min-width: 0; overflow: hidden; }
.ad-label {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: .375rem;
}
.ad-label--after { color: var(--gold); }
.ad-col ul { display: flex; flex-direction: column; gap: .3rem; }
.ad-col li {
  color: var(--cream-2);
  padding-left: 1rem;
  position: relative;
}
.ad-col li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--cream-3);
}
.ad-label--after ~ ul li::before {
  content: '✓';
  color: var(--gold);
}

.testi-cita {
  font-style: italic;
  font-size: .875rem;
  color: var(--cream);
  line-height: 1.6;
  padding-top: .875rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

/* ═══════════════════════════════════
   INVERSIÓN — PLANES
═══════════════════════════════════ */
.planes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-block: 2rem 1.5rem;
}
@media (min-width: 768px) { .planes-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.plan {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2.25rem 2rem 2rem;
  text-align: left;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform .18s var(--ease-spring), border-color .2s var(--ease-out),
              box-shadow .2s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .plan:hover { transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(0,0,0,.55); }
  .plan:hover .plan-stripe { opacity: 1; }
}
.plan:active { transform: scale(.98); }

/* Franja decorativa superior */
.plan-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--line);
  opacity: .6;
  transition: opacity .2s var(--ease-out);
}
.plan-stripe--gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-hi) 100%);
  opacity: 1;
}

/* Número decorativo de fondo */
.plan-num {
  position: absolute;
  top: 2.25rem; right: 1rem;
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: rgba(255,255,255,.03);
  pointer-events: none;
  user-select: none;
}
.plan-num--gold { color: rgba(201,168,76,.07); }

.plan--destacado {
  border-color: rgba(201,168,76,.45);
  border-width: 1px;
  background: linear-gradient(155deg, rgba(201,168,76,.06) 0%, var(--bg-card) 50%);
  box-shadow: 0 0 0 1px rgba(201,168,76,.15), 0 8px 40px rgba(201,168,76,.1);
}
@media (hover: hover) and (pointer: fine) {
  .plan--destacado:hover {
    box-shadow: 0 0 0 1px rgba(201,168,76,.3), 0 28px 60px rgba(201,168,76,.18);
  }
}

.plan-badge {
  position: absolute; top: 0; right: 1.5rem;
  background: var(--gold);
  color: #0a0804;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  white-space: nowrap;
  border-radius: 0 0 8px 8px;
}

/* Cabecera del plan */
.plan-head {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.plan-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .875rem;
}
.plan-dur-pill {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-3);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: .25rem .875rem;
}
.plan-dur-pill--gold {
  color: var(--gold);
  border-color: rgba(201,168,76,.35);
  background: rgba(201,168,76,.07);
}
/* Indicador de nivel (dots) */
.plan-nivel {
  display: flex; gap: .3rem; align-items: center;
}
.plan-nivel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background .2s;
}
.plan-nivel-dot--on { background: var(--cream-3); }
.plan-nivel-dot--gold { background: var(--gold); }

.plan-nombre {
  font-family: var(--ff-display);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: .5rem;
}
.plan--destacado .plan-nombre { color: var(--gold-hi); }
.plan-tagline {
  font-size: .825rem;
  color: var(--cream-3);
  line-height: 1.55;
}
.plan--destacado .plan-tagline { color: var(--cream-2); }
.plan-btn { width: 100%; margin-top: 1.75rem; }

.garantia {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}
.garantia svg { color: var(--gold); flex-shrink: 0; }
.garantia p { font-size: .9rem; color: var(--cream-2); line-height: 1.55; }
.garantia strong { color: var(--cream); }

/* ═══════════════════════════════════
   CTA FINAL
═══════════════════════════════════ */
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-tint {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,8,4,.95) 0%, rgba(10,8,4,.87) 100%);
}
.s-cta .container { position: relative; z-index: 1; }

.cta-inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  overflow: hidden;
}
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 6vw, 3.25rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: clamp(.95rem, 2.5vw, 1.1rem);
  color: var(--cream-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-sub strong { color: var(--gold); font-weight: 600; }
.cta-btns {
  display: flex; flex-direction: column; gap: .75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 480px) {
  .cta-btns { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 479px) {
  .cta-btns .btn { width: 100%; max-width: 340px; }
}
.cta-nota {
  font-size: .8rem;
  color: var(--cream-3);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: 2rem 1.5rem;
}
.footer-top {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.footer-brand { display: flex; flex-direction: column; gap: .125rem; }
.f-wog {
  font-family: var(--ff-display);
  font-size: 1.375rem;
  letter-spacing: .08em;
  color: var(--gold);
}
.f-sub {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: .25rem 1.25rem;
  margin-left: auto;
}
.footer-nav a {
  font-size: .8rem; color: var(--cream-3);
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--cream-3);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .625rem;
  font-size: .75rem; color: var(--cream-3);
}
.footer-credits {
  color: var(--cream-3);
  text-decoration: underline;
  transition: color .2s;
}
.footer-credits:hover { color: var(--gold); }
.footer-credits:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ═══════════════════════════════════
   PLAN FEATURES
═══════════════════════════════════ */
.planes-intro {
  font-size: .975rem;
  color: var(--cream-2);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--cream-2);
  line-height: 1.5;
}
.plan-features li svg {
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--gold);
}
.plan--destacado .plan-features li { color: var(--cream); }
.plan--destacado .plan-features li svg { color: var(--gold-hi); }

/* ═══════════════════════════════════
   CÓMO FUNCIONA
═══════════════════════════════════ */
.s-como { background: var(--bg-2); }

.pasos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-block: 2.5rem 2rem;
  counter-reset: paso;
  overflow: hidden;
}
@media (min-width: 768px) {
  .pasos-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.paso {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
@media (min-width: 768px) {
  /* connector line between steps */
  .paso:not(:last-child)::after {
    content: '';
    position: absolute; top: 2.25rem; right: -1.25rem;
    width: .5rem; height: 1px;
    background: var(--line-gold);
  }
}
@media (hover: hover) and (pointer: fine) {
  .paso:hover { border-color: var(--line-gold); transform: translateY(-3px); }
}

.paso-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  margin-bottom: .875rem;
}
.paso-title {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .5rem;
  letter-spacing: .04em;
}
.paso-desc {
  font-size: .875rem;
  color: var(--cream-2);
  line-height: 1.6;
}

.como-cta {
  text-align: center;
  margin-top: .5rem;
}
.como-cta .btn { width: 100%; max-width: 360px; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.s-faq { background: var(--bg-2); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .faq-grid { grid-template-columns: 1fr 1fr; gap: .875rem; align-items: start; }
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s var(--ease-out);
}
.faq-item[open] {
  border-color: var(--line-gold);
  background: var(--bg-card);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .2s var(--ease-out);
}
.faq-q::-webkit-details-marker { display: none; }
@media (hover: hover) and (pointer: fine) {
  .faq-q:hover { background: var(--bg-card-2); }
}
.faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; background: var(--bg-card-2); }

.faq-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background .2s var(--ease-out);
}
.faq-item[open] .faq-icon {
  background: rgba(201,168,76,.18);
  border-color: var(--gold);
}

.faq-q-text {
  flex: 1;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  transition: color .2s var(--ease-out);
}
.faq-item[open] .faq-q-text { color: var(--gold); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--cream-3);
  transition: transform .3s var(--ease-spring), color .2s;
  display: flex;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-a {
  padding: 0 1.25rem 1.125rem 4.125rem;
  animation: faqOpen .22s var(--ease-out) both;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
.faq-a p {
  font-size: .875rem;
  color: var(--cream-2);
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: .875rem;
}

/* ═══════════════════════════════════
   FAB WHATSAPP
═══════════════════════════════════ */
.fab-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 800;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s var(--ease-spring), box-shadow .2s var(--ease-out);
  opacity: 0;
  pointer-events: none;
}
.fab-wa.is-visible {
  opacity: 1;
  pointer-events: auto;
  animation: fabIn .4s var(--ease-spring) both;
}
@keyframes fabIn {
  from { opacity: 0; transform: scale(.6); }
  to   { opacity: 1; transform: none; }
}
@media (hover: hover) and (pointer: fine) {
  .fab-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
}
.fab-wa:active { transform: scale(.93); }
.fab-wa:focus-visible { outline: 3px solid #25d366; outline-offset: 3px; }

/* on desktop, push FAB up so it doesn't overlap sticky bar */
@media (min-width: 768px) {
  .fab-wa { bottom: 2rem; right: 2rem; }
}

/* ═══════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════ */
.sticky-cta {
  display: none;
}
@media (max-width: 767px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 700;
    padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
    background: rgba(10,8,4,.97);
    border-top: 1px solid var(--line-gold);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform .35s var(--ease-drawer);
  }
  .sticky-cta.is-visible {
    transform: none;
  }
  .sticky-cta-btn {
    width: 100%;
    justify-content: center;
  }
  /* push FAB above sticky bar when both visible */
  .fab-wa {
    bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
}

/* ═══════════════════════════════════
   RUTINAS
═══════════════════════════════════ */
.s-rutinas { background: var(--bg-2); }

.rutinas-sub {
  font-size: clamp(.95rem, 2.5vw, 1.1rem);
  color: var(--cream-2);
  line-height: 1.7;
  max-width: 620px;
  margin-top: .75rem;
}

.rutinas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-block: 2.5rem 1.5rem;
}
@media (min-width: 900px) {
  .rutinas-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.rutina-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .rutina-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
}
.rutina-card--destacada {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(201,168,76,.12);
  position: relative;
}
.rutina-card--destacada::before {
  content: 'Más popular';
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--ff-display);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 0 0 .5rem .5rem;
}

.rutina-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
}

.rutina-tag {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.rutina-title {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3vw, 1.625rem);
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: .02em;
}
.rutina-title em {
  font-style: italic;
  color: var(--gold);
}

.rutina-desc {
  font-size: .875rem;
  color: var(--cream-2);
  line-height: 1.65;
}

.rutina-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  flex: 1;
}
.rutina-features li {
  font-size: .85rem;
  color: var(--cream-2);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.45;
}
.rutina-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}
.rutina-card--destacada .rutina-features li { color: var(--cream); }

.rutinas-cta-nota {
  text-align: center;
  font-size: .9rem;
  color: var(--cream-3);
  margin-top: 1rem;
}
.rutinas-cta-nota a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.rutinas-cta-nota a:hover { text-decoration: underline; }
.rutinas-cta-nota a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
