/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #07050A;
  --bg-2:        #0D0A13;
  --bg-3:        #13101C;
  --bg-card:     #110E19;
  --cream:       #F0EAD6;
  --cream-2:     #C8BFA8;
  --cream-3:     #7A7060;
  --gold:        #C9A84C;
  --gold-2:      #A8872E;
  --gold-glow:   rgba(201,168,76,0.18);
  --violet:      #7C4DFF;
  --violet-soft: rgba(124,77,255,0.15);
  --cyan:        #00C9CC;
  --cyan-soft:   rgba(0,201,204,0.12);
  --line:        rgba(240,234,214,0.08);
  --line-gold:   rgba(201,168,76,0.22);

  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --mono:   "JetBrains Mono", "Fira Code", monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h:    72px;
  --gutter:   clamp(1rem, 5vw, 4rem);
  --max-w:    1280px;

  /* Cream scale */
  --cream-1:  #F5EFE0;
  --cream-4:  #4A4035;
  --cream-5:  #2E2820;

  /* Spacing scale */
  --space-xl:  clamp(2rem, 5vw, 4rem);
  --space-2xl: clamp(3rem, 7vw, 6rem);
  --space-3xl: clamp(5rem, 10vw, 9rem);
}

/* ═══════════════════════════════════════════════════════════
   MODO CLARO — CLINICAL (cyan + violet)
   ═══════════════════════════════════════════════════════════ */

/* 1 · Override tokens globally */
[data-theme="light"] {
  --bg:        #F0F7FF;
  --bg-2:      #E8F2FC;
  --bg-3:      #DDEAF8;
  --bg-card:   #FFFFFF;
  --cream:     #0D1B2A;
  --cream-2:   #2A3F5A;
  --cream-3:   #4A6080;
  --gold:      #0891B2;
  --gold-2:    #0E7490;
  --gold-glow: rgba(8,145,178,0.1);
  --line:      rgba(13,27,42,0.1);
  --line-gold: rgba(8,145,178,0.25);
}

/* 2 · Body */
[data-theme="light"] body { background: #F0F7FF; color: #0D1B2A; }

/* 3 · NAV solid */
[data-theme="light"] .nav.is-solid {
  background: rgba(240,247,255,0.97);
  border-bottom-color: rgba(13,27,42,0.08);
}
[data-theme="light"] .nav.is-solid .nav-logo-name,
[data-theme="light"] .nav.is-solid .nav-link { color: #0D1B2A; }
[data-theme="light"] .nav.is-solid .nav-toggle span { background: #0D1B2A; }
[data-theme="light"] .nav.is-solid .theme-toggle { color: #0D1B2A; border-color: rgba(13,27,42,0.2); }
/* Nav not-solid over light hero */
[data-theme="light"] .nav:not(.is-solid) .nav-link,
[data-theme="light"] .nav:not(.is-solid) .nav-logo-name { color: #0D1B2A; }

/* 4 · HERO — clinical light redesign */
[data-theme="light"] .hero { background: #F0F7FF !important; }
[data-theme="light"] .hero-gradient {
  background:
    radial-gradient(circle 600px at var(--mx, 60%) var(--my, 40%),
      rgba(8,145,178,0.38) 0%, transparent 55%),
    radial-gradient(circle 800px at calc(var(--mx, 60%) - 15%) calc(var(--my, 40%) + 20%),
      rgba(124,77,255,0.18) 0%, transparent 55%),
    radial-gradient(circle 500px at 80% 80%,
      rgba(8,145,178,0.12) 0%, transparent 50%),
    #F0F7FF;
}
[data-theme="light"] .hero-grain { opacity: 0; }
[data-theme="light"] .hero-line { color: #0D1B2A; -webkit-text-stroke: 0; }
[data-theme="light"] .hero-line--accent { color: #0891B2; -webkit-text-stroke: 0; font-style: italic; }
[data-theme="light"] .kicker-dot { background: #0891B2; }
[data-theme="light"] .hero-kicker { color: #4A6080; }
[data-theme="light"] .hero-manifesto { color: #2A3F5A; }
[data-theme="light"] .hero-manifesto-highlight { color: #0891B2; }
[data-theme="light"] .hero-photo-badge { background: rgba(13,27,42,0.75); color: #F0EAD6; }
[data-theme="light"] .hero-photo-frame { border-color: rgba(8,145,178,0.2); box-shadow: 0 24px 64px rgba(8,145,178,0.12); }
[data-theme="light"] .social-link { color: #4A6080; }
[data-theme="light"] .social-link:hover { color: #0891B2; }
[data-theme="light"] .scroll-label { color: #4A6080; }
[data-theme="light"] .scroll-line { background: rgba(8,145,178,0.4); }

/* 4b · PAGE-HERO — clinical light in light mode */
[data-theme="light"] .page-hero { background: #F0F7FF !important; }
[data-theme="light"] .page-hero-gradient { opacity: 0.3; }
[data-theme="light"] .page-hero-title { color: #0D1B2A; }
[data-theme="light"] .page-hero-title em { color: #0891B2; }
[data-theme="light"] .page-hero-sub { color: #2A3F5A; }
[data-theme="light"] .page-breadcrumb,
[data-theme="light"] .page-hero-eyebrow { color: #0891B2; }
/* Mentoria: violet accent */
[data-theme="light"] .page-hero--violet .page-hero-title em { color: #7C4DFF; }
[data-theme="light"] .page-hero--violet .page-breadcrumb,
[data-theme="light"] .page-hero--violet .page-hero-eyebrow { color: #7C4DFF; }
/* Nav on subpages: page-hero is light → darken non-solid nav links */
[data-theme="light"]:has(.page-hero) .nav:not(.is-solid) .nav-link,
[data-theme="light"]:has(.page-hero) .nav:not(.is-solid) .nav-logo-name { color: #0D1B2A; }

/* 5 · MARQUEE — clinical in light mode */
[data-theme="light"] .marquee-wrap {
  background: #DDEAF8;
  border-top: 1px solid rgba(8,145,178,0.15);
  border-bottom: 1px solid rgba(8,145,178,0.15);
}
[data-theme="light"] .marquee-item { color: #2A3F5A !important; }
[data-theme="light"] .marquee-sep  { color: #0891B2 !important; }

/* 6 · FOOTER — always dark */
[data-theme="light"] .footer {
  background: #07050A !important;
  border-top-color: rgba(240,234,214,0.08) !important;
  --cream:   #F0EAD6;
  --cream-2: #C8BFA8;
  --cream-3: #7A7060;
}
[data-theme="light"] .footer-name,
[data-theme="light"] .footer-tagline,
[data-theme="light"] .footer-copy { color: #F0EAD6; }
[data-theme="light"] .footer-nav a { color: #7A7060; }
[data-theme="light"] .footer-nav a:hover { color: #F0EAD6; }
[data-theme="light"] .footer-social a { color: #7A7060; }

/* 7 · HUB */
[data-theme="light"] .hub { background: #E8F2FC; }
[data-theme="light"] .hub .section-eyebrow { color: #0891B2; }
[data-theme="light"] .hub .section-title { color: #0D1B2A; }
[data-theme="light"] .hub .section-title em { color: #0891B2; }
[data-theme="light"] .hub .hub-group-label { color: #4A6080; }
[data-theme="light"] .hub-card { background: #FFFFFF; border-color: rgba(8,145,178,0.15); }
[data-theme="light"] .hub-card:hover { background: #F5FAFE; }
[data-theme="light"] .hub-card-desc { color: #4A6080; }
[data-theme="light"] .hub-card-num { color: #B8C9D8; }
[data-theme="light"] .hub-card--gold  .hub-card-title,
[data-theme="light"] .hub-card--gold  .hub-card-arrow { color: #0891B2; }
[data-theme="light"] .hub-card--violet .hub-card-title,
[data-theme="light"] .hub-card--violet .hub-card-arrow { color: #7C4DFF; }
[data-theme="light"] .hub-card--cyan   .hub-card-title,
[data-theme="light"] .hub-card--cyan   .hub-card-arrow { color: #00A8AB; }

/* 8 · STORY */
[data-theme="light"] .story-strip { background: #FFFFFF; }
[data-theme="light"] .story-eyebrow { color: #0891B2; }
[data-theme="light"] .story-title { color: #0D1B2A; }
[data-theme="light"] .story-title em { color: #0891B2; }
[data-theme="light"] .story-body { color: #2A3F5A; }
[data-theme="light"] .story-body em { color: #0D1B2A; }

/* 9 · PRENSA */
[data-theme="light"] .prensa { background: #F0F7FF; }
[data-theme="light"] .prensa-card { background: #FFFFFF; border-color: rgba(8,145,178,0.15); padding: 2.25rem; }
[data-theme="light"] .prensa-card:hover { border-color: #0891B2; }
[data-theme="light"] .prensa-title { color: #0D1B2A; font-size: clamp(1.3rem,2.8vw,1.6rem); }
[data-theme="light"] .prensa-desc { color: #2A3F5A; font-size: .95rem; }
[data-theme="light"] .prensa-outlet,
[data-theme="light"] .prensa-link { color: #0891B2; }
[data-theme="light"] .prensa-date,
[data-theme="light"] .prensa-tag { color: #4A6080; }

/* 10 · CLINICA grid */
[data-theme="light"] .clinica { background: #EEF4FB; }
[data-theme="light"] .clinica .section-eyebrow { color: #0891B2; }
[data-theme="light"] .clinica .section-sub { color: #4A6080; }
[data-theme="light"] .clinica .pro-card { background: #FFFFFF; border-color: rgba(8,145,178,0.12); }
[data-theme="light"] .clinica .pro-card-name { color: #0D1B2A; }
[data-theme="light"] .clinica .pro-card-desc { color: #2A3F5A; }
[data-theme="light"] .clinica .pro-card-esp { color: #0891B2; }

/* 11 · CLINICA STEPS */
[data-theme="light"] .clinica-steps { background: #F0F7FF; }
[data-theme="light"] .clinica-steps-title em { color: #0891B2 !important; }
[data-theme="light"] .step-card { background: #FFFFFF; border-color: rgba(8,145,178,0.15); }
[data-theme="light"] .clinica-step-num { color: #0891B2; }
[data-theme="light"] .clinica-sidebar-card { background: #FFFFFF; border-color: rgba(8,145,178,0.15); }

/* 12 · CLINICA WHY */
[data-theme="light"] .clinica-why { background: #E8F2FC; }
[data-theme="light"] .clinica-why-card { background: #FFFFFF; border-color: rgba(8,145,178,0.15); }
[data-theme="light"] .clinica-why-card-title { color: #0D1B2A; }
[data-theme="light"] .clinica-why-card-desc { color: #2A3F5A; }
[data-theme="light"] .clinica-why-icon { color: #0891B2; }

/* 13 · PRO DETAIL pages */
[data-theme="light"] .pro-detail { background: #F0F7FF; }
[data-theme="light"] .pro-detail-section-title { color: #0D1B2A; }
[data-theme="light"] .pro-detail-bio { color: #2A3F5A; }
[data-theme="light"] .pro-others { background: #E8F2FC; }
[data-theme="light"] .pro-sidebar-card { background: #FFFFFF; border-color: rgba(8,145,178,0.15); }

/* 14 · MENTORIA */
[data-theme="light"] .para-quien { background: #EEF4FB; }
[data-theme="light"] .incluye { background: #F0F7FF; }
[data-theme="light"] .mentoria-cta-section { background: #E8F2FC; }
[data-theme="light"] .pq-card { background: #FFFFFF; border-color: rgba(8,145,178,0.12); }
[data-theme="light"] .pq-card-text { color: #2A3F5A; }
[data-theme="light"] .incluye-item { background: #FFFFFF; border-color: rgba(8,145,178,0.12); }
[data-theme="light"] .incluye-item--featured { background: rgba(8,145,178,0.07); box-shadow: inset 0 0 0 1px #0891B2, 0 0 30px rgba(8,145,178,0.15); }
[data-theme="light"] .incluye-item--featured .incluye-title { color: #0891B2 !important; }
[data-theme="light"] .incluye-item--featured .incluye-num  { color: #0891B2 !important; }
[data-theme="light"] .incluye-grid { background: rgba(8,145,178,0.04); border-color: rgba(8,145,178,0.1); }
[data-theme="light"] .incluye-num { color: #0891B2; }
[data-theme="light"] .incluye-title { color: #0D1B2A; }
[data-theme="light"] .incluye-desc { color: #2A3F5A; }
[data-theme="light"] .mentoria-cta-box { background: #FFFFFF; border-color: rgba(8,145,178,0.15); }
[data-theme="light"] .mentoria-cta-title { color: #0D1B2A; }
[data-theme="light"] .mentoria-cta-title em { color: #7C4DFF; }
[data-theme="light"] .resultado-quote em { color: #0891B2 !important; }
[data-theme="light"] .mentoria-cta-desc { color: #2A3F5A; }

/* 15 · TIENDA */
[data-theme="light"] .tienda { background: #F0F7FF; }
[data-theme="light"] .product-card { background: #FFFFFF; border-color: rgba(8,145,178,0.12); }
[data-theme="light"] .product-card-name { color: #0D1B2A; }
[data-theme="light"] .product-card-cat,
[data-theme="light"] .product-card-desc { color: #4A6080; }
[data-theme="light"] .tienda-section-label { color: #0891B2; }
[data-theme="light"] .tienda-section-tag { color: #4A6080; border-color: rgba(8,145,178,0.2); }

/* 16 · LAREFORMA + PROPOSITO */
[data-theme="light"] .lareforma,
[data-theme="light"] .proposito { background: #F0F7FF; }
[data-theme="light"] .reforma-deco-inner {
  background: #0A3040;
  border-color: rgba(8,145,178,0.4);
}
[data-theme="light"] .reforma-deco-inner .reforma-deco-num { color: rgba(201,168,76,0.7) !important; }
[data-theme="light"] .reforma-deco-inner .reforma-deco-label { color: #C9A84C !important; opacity: 0.9; }

/* 17 · PAY MODAL */
[data-theme="light"] .pay-modal-overlay { background: rgba(0,0,0,0.5); }
[data-theme="light"] .pay-modal { background: #F0F7FF; border-color: rgba(8,145,178,0.15); }
[data-theme="light"] .pay-modal-close { color: #4A6080; }
[data-theme="light"] .pay-modal-close:hover { color: #0D1B2A; background: rgba(8,145,178,0.08); }
[data-theme="light"] .pay-modal-eyebrow { color: #0891B2; }
[data-theme="light"] .pay-modal-title { color: #0D1B2A; }
[data-theme="light"] .pay-modal-sub { color: #4A6080; }
[data-theme="light"] .pay-option { background: #FFFFFF; border-color: rgba(8,145,178,0.2); }
[data-theme="light"] .pay-option:hover { border-color: #0891B2; background: #F5FAFE; }
[data-theme="light"] .pay-option-label { color: #0D1B2A; }
[data-theme="light"] .pay-option-desc { color: #4A6080; }
[data-theme="light"] .pay-modal-methods-label { color: #4A6080; }

/* 18 · BUTTONS */
[data-theme="light"] .btn-primary {
  background: #0891B2; border-color: #0891B2; color: #FFFFFF !important;
}
[data-theme="light"] .btn-primary:hover { background: #0E7490; box-shadow: 0 8px 32px rgba(8,145,178,0.35); }
[data-theme="light"] .btn-gold {
  background: #0891B2; border-color: #0891B2; color: #FFFFFF !important;
}
[data-theme="light"] .btn-gold:hover { background: #0E7490; box-shadow: 0 8px 32px rgba(8,145,178,0.3); }
[data-theme="light"] .btn-outline {
  border-color: #0891B2; color: #0891B2 !important; background: transparent;
}
[data-theme="light"] .btn-outline:hover { background: rgba(8,145,178,0.08); border-color: #0891B2; }
[data-theme="light"] .btn-ghost { border-color: rgba(8,145,178,0.3); color: #0891B2; }
[data-theme="light"] .btn-ghost:hover { border-color: #0891B2; color: #0891B2; }
/* Violet buttons always white text */
[data-theme="light"] .btn-primary-soft { color: #FFFFFF !important; }

/* 19 · SECTION-LEVEL text catch-all */
[data-theme="light"] .section-eyebrow,
[data-theme="light"] .story-eyebrow,
[data-theme="light"] .page-breadcrumb,
[data-theme="light"] .pro-card-esp,
[data-theme="light"] .section-title em,
[data-theme="light"] .story-title em { color: #0891B2; }

[data-theme="light"] .section-title,
[data-theme="light"] .section-sub { color: #0D1B2A; }

/* 20 · Global catch-all — covers anything not explicitly targeted */
[data-theme="light"] h1:not(.hero *),
[data-theme="light"] h2:not(.hero *),
[data-theme="light"] h3:not(.hero *),
[data-theme="light"] h4:not(.hero *),
[data-theme="light"] h5:not(.hero *),
[data-theme="light"] p:not(.hero *):not(.marquee-wrap *):not(.footer *),
[data-theme="light"] li:not(.hero *):not(.footer *),
[data-theme="light"] span:not(.hub-card-arrow):not(.kicker-dot):not(.marquee-item):not(.marquee-sep):not(.pay-option-icon):not(.pay-option-arrow):not(.star-particle):not(.hero *):not(.footer *),
[data-theme="light"] label:not(.hero *),
[data-theme="light"] strong:not(.hero *):not(.footer *),
[data-theme="light"] em:not(.hero *):not(.hero-line--accent),
[data-theme="light"] dt, [data-theme="light"] dd,
[data-theme="light"] button:not(.btn):not(.theme-toggle),
[data-theme="light"] a:not([class*="btn"]):not(.footer *):not(.hero *) {
  color: #0D1B2A;
}

/* 21 · THEME TOGGLE button */
.theme-toggle {
  background: none;
  border: 1px solid var(--line-gold);
  border-radius: 20px;
  padding: .3rem .7rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: var(--cream);
  transition: border-color .2s, background .2s;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.theme-toggle:hover { border-color: var(--gold); background: var(--gold-glow); }
[data-theme="light"] .theme-toggle { color: #0D1B2A; border-color: rgba(8,145,178,0.3); }
[data-theme="light"] .theme-toggle:hover { border-color: #0891B2; background: rgba(8,145,178,0.08); }


/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.025em; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: .875rem;
}
.skip-link:focus { top: 1rem; }

.section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.mono { font-family: var(--mono); font-size: .75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.br-md { display: none; }
@media (min-width: 720px) { .br-md { display: block; } }

/* =============================================================
   4. Reveal system
   ============================================================= */

/* Only apply hidden state once JS marks body as ready */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.js-ready [data-reveal="fade"]  { transform: translateY(16px); }
.js-ready [data-reveal="up"]    { transform: translateY(48px); }
.js-ready [data-reveal="photo"] {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="0.1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="0.2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="0.25"] { transition-delay: 0.25s; }
[data-reveal][data-delay="0.3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="0.35"] { transition-delay: 0.35s; }
[data-reveal][data-delay="0.45"] { transition-delay: 0.45s; }
[data-reveal][data-delay="0.55"] { transition-delay: 0.55s; }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
}
@media (hover: hover) {
  .btn-primary:hover { background: #dbb84f; box-shadow: 0 8px 32px rgba(201,168,76,0.35); }
}

.btn-ghost {
  border: 1px solid var(--line-gold);
  color: var(--cream);
  background: transparent;
}
@media (hover: hover) {
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
}
@media (hover: hover) {
  .btn-gold:hover { background: #dbb84f; box-shadow: 0 8px 32px rgba(201,168,76,0.3); transform: translateY(-2px); }
}

.btn-outline {
  border: 1px solid var(--line-gold);
  color: var(--gold);
  background: transparent;
  font-weight: 500;
}
@media (hover: hover) {
  .btn-outline:hover { background: var(--gold-glow); border-color: var(--gold); transform: translateY(-2px); }
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: 10px;
  white-space: nowrap;
}

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
  overflow: visible;
}
.nav.is-solid {
  background: rgba(7, 5, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  overflow: visible;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
@media (hover: hover) {
  .nav-logo:hover .nav-logo-name { color: var(--gold); }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .875rem;
  font-weight: 400;
  color: var(--cream-2);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
@media (hover: hover) {
  .nav-link:hover { color: var(--cream); }
  .nav-link:hover::after { width: 100%; }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1199px) {
  .nav { background: rgba(7,5,10,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(7,5,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu:not(.is-open) { display: none; }
  .nav-link {
    padding: .75rem 0;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
}

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: clip;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle 700px at var(--mx, 60%) var(--my, 40%),
      rgba(201,168,76,0.22) 0%, transparent 60%),
    radial-gradient(circle 900px at calc(var(--mx, 60%) - 15%) calc(var(--my, 40%) + 20%),
      rgba(124,77,255,0.18) 0%, transparent 55%),
    radial-gradient(circle 600px at 80% 80%,
      rgba(0,201,204,0.1) 0%, transparent 50%),
    var(--bg);
  transition: background 0.15s linear;
}

/* Smoke / atmospheric layer — animado, siempre visible */
.hero-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 20% 80%,
      rgba(124,77,255,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 15%,
      rgba(201,168,76,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 50% 50%,
      rgba(124,77,255,0.08) 0%, transparent 70%);
  filter: blur(55px);
  animation: smokeShift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 35% at 75% 85%,
      rgba(201,168,76,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 10% 20%,
      rgba(0,201,204,0.1) 0%, transparent 60%);
  filter: blur(70px);
  animation: smokeShift2 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes smokeShift {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.06); }
  66%  { transform: translate(-20px, 30px) scale(0.96); }
  100% { transform: translate(15px, -35px) scale(1.08); }
}
@keyframes smokeShift2 {
  0%   { transform: translate(0px, 0px) scale(1.02); }
  40%  { transform: translate(-25px, 20px) scale(0.95); }
  80%  { transform: translate(20px, -15px) scale(1.07); }
  100% { transform: translate(-10px, 25px) scale(0.98); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  padding-top: var(--nav-h);
}
/* Text content area */
.hero-content {
  padding-inline: var(--gutter);
  padding-block: 7rem 5rem;
  max-width: 640px;
  margin-inline: 0;
}
@media (min-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr 42%;
    grid-template-rows: 1fr;
    padding-top: 0;
    align-items: center;
  }
  .hero-content {
    padding-inline: var(--gutter);
    padding-block: 8rem 6rem;
    max-width: none;
    margin-inline: 0;
  }
}
@media (min-width: 1280px) {
  .hero-inner { grid-template-columns: 1fr 40%; padding-top: 0; }
}

.hero-kicker {
  font-family: var(--mono);
  font-size: clamp(.65rem, 2vw, .9rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  white-space: normal;
}
.kicker-dot {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 12vw, 9rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.hero-line--accent {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  font-style: italic;
}

.hero-manifesto {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  line-height: 1.75;
  color: var(--cream-2);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}
.hero-manifesto em {
  color: var(--cream);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05em;
}
.hero-manifesto-highlight {
  font-size: 1.5em;
  line-height: 1.3;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.hero-cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}
.btn-primary-soft {
  background: rgba(60, 30, 110, 0.9);
  color: #e8e8e8;
  font-weight: 600;
  border: 1px solid rgba(80, 45, 140, 0.7);
}
@media (hover: hover) {
  .btn-primary-soft:hover { background: rgba(70, 38, 125, 1); }
}

.hero-social {
  display: flex;
  gap: 1.25rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream-3);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
@media (hover: hover) {
  .social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
  }
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-inline: var(--gutter);
  padding-bottom: 3rem;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1080px) {
  .hero-photo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 0;
    padding-bottom: 0;
    overflow: visible;
    padding: 2rem 2rem 2rem 0;
  }
}
/* Frame: tight wrapper around img so badge is truly inside */
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}
.hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 10%;
}
.hero-photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  background: rgba(7,5,10,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: .375rem;
  padding: .3rem .65rem;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 959px) {
  .hero-photo-frame { max-width: 280px; margin-inline: auto; }
  .hero-photo { max-width: 100%; aspect-ratio: 3/4; object-position: top; }
  .hero-photo--bata { object-position: center 15%; }
}

/* Portrait hero — contained retrato on the right column */
.hero-portrait-wrap {
  display: none;
}
@media (min-width: 960px) {
  .hero-portrait-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 3rem 4rem 1rem;
  }
}
.hero-portrait {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 1rem;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(240,234,214,0.04);
  display: block;
}
.hero-portrait-badge {
  position: absolute;
  bottom: 5.5rem;
  right: 3.5rem;
  background: rgba(7,5,10,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: .375rem;
  padding: .3rem .65rem;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .4;
}
.scroll-line {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: bottom; }
}
.scroll-label {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* =============================================================
   8. Story strip
   ============================================================= */
.story-strip {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}
.story-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 720px) {
  .story-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.story-eyebrow {
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.story-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 2rem;
}
.story-title em { color: var(--gold); font-style: italic; }
.story-body {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--cream-2);
  margin-bottom: 1rem;
}
.story-body--accent {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}

.story-photo-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.story-photo-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: scale(1.25) translateX(4%);
  transition: transform 0.6s var(--ease-out);
}
@media (hover: hover) {
  .story-photo-frame:hover img { transform: scale(1.28) translateX(4%); }
}
.story-photo-label {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: rgba(7,5,10,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: .5rem .875rem;
  border-radius: 6px;
  color: var(--cream-3);
}

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee-wrap {
  overflow: clip;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1.1rem;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.marquee-track.is-ready {
  animation: marqueeScroll var(--marquee-duration, 30s) linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-offset, -50%)); }
}
.marquee-item {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-3);
  padding-inline: 1.25rem;
}
.marquee-num {
  color: var(--gold);
  font-weight: 500;
}
.marquee-sep {
  color: var(--cream-3);
  opacity: 0.3;
  padding-inline: 0;
  flex-shrink: 0;
}

/* =============================================================
   10. Section headers (shared)
   ============================================================= */
.section-header {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--cream-2);
  max-width: 56ch;
}

/* =============================================================
   11. Clínica Online
   ============================================================= */
.clinica {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}

.clinica-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .clinica-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .clinica-grid { grid-template-columns: repeat(3, 1fr); }
}

.pro-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: clip;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: fadeInCard 0.6s var(--ease-out) both;
}
@media (hover: hover) {
  .pro-card:hover {
    border-color: var(--line-gold);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--line-gold);
  }
  .pro-card:hover .pro-card-glow { opacity: 1; }
  .pro-card:hover img { transform: scale(1.05); }
}

.pro-card-photo {
  position: relative;
  overflow: clip;
  aspect-ratio: 4/3;
  background: var(--bg-3);
}
.pro-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease-out);
}
.pro-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(201,168,76,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.pro-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .625rem;
}
.pro-card-esp {
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.5;
}
.pro-card-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
}
.pro-card-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--cream-2);
  flex: 1;
}
.pro-card-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-top: .5rem;
}
.pro-card-btns .btn {
  flex: 1;
  min-width: 130px;
  justify-content: center;
  font-size: .8rem;
  padding: .625rem 1rem;
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   12. Mentoría
   ============================================================= */
.mentoria {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
  overflow: clip;
}
.mentoria-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 80%, rgba(124,77,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.mentoria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 960px) {
  .mentoria-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.mentoria-body {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--cream-2);
  margin-bottom: 1.5rem;
}

.mentoria-includes {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.mentoria-includes li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--cream-2);
}
.check-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: .8rem;
  margin-top: .15rem;
}

.mentoria-precio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: 12px;
}
.precio-original {
  font-size: 1.1rem;
  color: var(--cream-3);
  text-decoration: line-through;
  font-family: var(--serif);
}
.precio-actual {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.precio-badge {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  padding: .25rem .625rem;
  border-radius: 4px;
  font-weight: 500;
}

.video-placeholder {
  position: relative;
  border-radius: 14px;
  overflow: clip;
  background: var(--bg-3);
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
  cursor: pointer;
}
.video-placeholder img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: .7;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .video-placeholder:hover img { opacity: .85; }
  .video-placeholder:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); }
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.9);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease-bounce), background 0.2s;
  padding-left: 4px;
}
.video-caption {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
  white-space: nowrap;
}

.mentoria-photo-secondary {
  border-radius: 10px;
  overflow: clip;
  border: 1px solid var(--line);
}
.mentoria-photo-secondary img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease-out);
}
@media (hover: hover) {
  .mentoria-photo-secondary:hover img { transform: scale(1.04); }
}

/* =============================================================
   13. Propósito
   ============================================================= */
.proposito {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  position: relative;
  overflow: clip;
}
.proposito::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.proposito-inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.proposito-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--bg-3);
  border: 1px solid var(--line-gold);
  padding: .4rem 1rem;
  border-radius: 100px;
}
.proposito-label .mono { color: var(--gold); }

.proposito-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}
.proposito-title em { color: var(--gold); font-style: italic; }

.proposito-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream-2);
  max-width: 58ch;
}
.proposito-body--alt {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}
.proposito-body strong { color: var(--cream); font-weight: 500; }

.proposito-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}
.tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: .375rem .875rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--cream-2);
  transition: border-color 0.2s, color 0.2s;
}
@media (hover: hover) {
  .tag:hover { border-color: var(--gold); color: var(--gold); }
}

/* =============================================================
   14. Tienda
   ============================================================= */
.tienda {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}
.tienda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .tienda-grid { grid-template-columns: repeat(4, 1fr); }
}

.tienda-card {
  border-radius: 14px;
  overflow: clip;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
@media (hover: hover) {
  .tienda-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
  .tienda-card:hover .tienda-card-overlay { opacity: 1; }
  .tienda-card:hover .tienda-placeholder { filter: brightness(0.75); }
}

.tienda-card-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: clip;
}
.tienda-placeholder {
  width: 100%; height: 100%;
  transition: filter 0.3s;
}
.tienda-placeholder--1 {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(124,77,255,0.3) 0%, transparent 50%),
    var(--bg-3);
}
.tienda-placeholder--2 {
  background:
    radial-gradient(ellipse at 40% 30%, rgba(0,201,204,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(201,168,76,0.2) 0%, transparent 50%),
    var(--bg-3);
}
.tienda-placeholder--3 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0,201,204,0.2) 0%, transparent 50%),
    var(--bg-3);
}
.tienda-placeholder--4 {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(124,77,255,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.25) 0%, transparent 50%),
    var(--bg-3);
}

.tienda-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,5,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.tienda-card-body {
  padding: 1rem 1.25rem;
}
.tienda-cat {
  display: block;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.tienda-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
}

/* =============================================================
   15. Footer CTA strip
   ============================================================= */
.footer-cta {
  padding-block: clamp(5rem, 10vw, 8rem);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  position: relative;
  overflow: clip;
  text-align: center;
}
.footer-cta::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80vw);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.footer-cta-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.footer-cta-eyebrow {
  color: var(--cream-3);
}
.footer-cta-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}
.footer-cta-title em { color: var(--gold); font-style: italic; }

/* =============================================================
   15b. Payment Modal
   ============================================================= */
.pay-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.pay-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.pay-modal {
  background: var(--bg-2);
  border: 1px solid var(--line-gold);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 5vw, 2.75rem);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s var(--ease-out);
  -webkit-overflow-scrolling: touch;
}
.pay-modal-overlay.is-open .pay-modal {
  transform: translateY(0) scale(1);
}
.pay-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--cream-3);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: .25rem .5rem;
  border-radius: .375rem;
  transition: color .2s, background .2s;
}
.pay-modal-close:hover { color: var(--cream); background: var(--bg-3); }
.pay-modal-eyebrow {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.pay-modal-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: .5rem;
}
.pay-modal-sub {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.pay-modal-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.pay-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: .875rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .15s;
  width: 100%;
  text-align: left;
}
.pay-option:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: translateY(-1px);
}
.pay-option-flag {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: .1rem;
}
.pay-option-body { display: flex; flex-direction: column; gap: .2rem; }
.pay-option-label {
  font-size: .95rem;
  font-weight: 500;
  color: var(--cream);
}
.pay-option-desc {
  font-size: .8rem;
  color: var(--cream-3);
  line-height: 1.5;
}
.pay-option-price {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--sans);
}
.pay-option-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1rem;
  align-self: center;
  flex-shrink: 0;
}
.pay-modal-methods {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.pay-modal-methods-label {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.pay-modal-methods-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.pay-method {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--cream-2);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: .45rem 1rem;
  white-space: nowrap;
}
.pay-method-flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.pay-method-flag-icon {
  width: auto;
  font-size: .9rem;
  line-height: 1;
}
.pay-option-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* =============================================================
   15c. Prensa / Press
   ============================================================= */
/* =============================================================
   La Reforma page
   ============================================================= */
.reforma-body {
  padding-block: clamp(3rem, 8vw, 6rem);
}
.reforma-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 900px) {
  .reforma-inner { grid-template-columns: 1fr 340px; }
}
.reforma-lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--cream-2);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.reforma-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.reforma-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.reforma-icon {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: .375rem;
  padding: .35rem .6rem;
  flex-shrink: 0;
  margin-top: .2rem;
}
.reforma-item strong {
  display: block;
  color: var(--cream);
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: .35rem;
}
.reforma-item p {
  font-size: .88rem;
  color: var(--cream-3);
  line-height: 1.65;
  margin: 0;
}
.reforma-note {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
}
.reforma-note p {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream-2);
  line-height: 1.7;
  font-style: italic;
}
.reforma-note em { color: var(--cream); font-style: normal; }
.reforma-cta { display: inline-flex; }
.reforma-deco {
  display: none;
}
@media (min-width: 900px) {
  .reforma-deco {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.reforma-deco-inner {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: radial-gradient(circle at center, rgba(201,168,76,0.04) 0%, transparent 70%);
}
.reforma-deco-num {
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(201,168,76,0.25);
  line-height: 1;
}
.reforma-deco-label {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .6;
}

/* =============================================================
   Prensa
   ============================================================= */
.prensa {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}
.prensa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .prensa-grid { grid-template-columns: 1fr 1fr; }
}
.prensa-card {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.75rem;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.prensa-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.prensa-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.prensa-outlet {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.prensa-date {
  font-family: var(--mono);
  font-size: .62rem;
  color: var(--cream-3);
}
.prensa-tag {
  font-size: .78rem;
  color: var(--cream-3);
  font-style: italic;
  margin: 0;
}
.prensa-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  margin: 0;
}
.prensa-desc {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.prensa-link {
  font-size: .82rem;
  color: var(--gold);
  font-family: var(--mono);
  letter-spacing: .05em;
  margin-top: auto;
}

/* =============================================================
   16. Footer
   ============================================================= */
.footer {
  padding-block: 3rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-tagline {
  font-size: .8rem;
  color: var(--cream-3);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-nav a {
  font-size: .85rem;
  color: var(--cream-3);
  transition: color 0.2s;
}
@media (hover: hover) {
  .footer-nav a:hover { color: var(--cream); }
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: 0.08em;
  color: var(--cream-3);
  padding: .4rem .7rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
@media (hover: hover) {
  .footer-social a:hover { border-color: var(--gold); color: var(--gold); }
}
.footer-copy {
  font-size: .78rem;
  color: var(--cream-3);
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* =============================================================
   17. Image placeholder (while photos load)
   ============================================================= */
.pro-card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-3);
  z-index: 0;
}
.pro-card-photo img { position: relative; z-index: 1; }

/* =============================================================
   18. Reduced-motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .kicker-dot { animation: none; }
  .scroll-line { animation: none; }
}

/* =============================================================
   19. Hub — home portal grid
   ============================================================= */
.hub {
  padding-block: var(--space-3xl);
}
.hub .section-header {
  margin-bottom: var(--space-xl);
}
.hub-group-label {
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  padding-left: .1rem;
}
.hub-group-label:first-of-type { margin-top: 0; }
.hub-grid--creadores {
  grid-template-columns: 1fr !important;
}
@media (min-width: 720px) {
  .hub-grid--creadores { grid-template-columns: 1fr !important; }
}
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
}
@media (min-width: 720px) {
  .hub-grid { grid-template-columns: 1fr 1fr; }
}
.hub-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background: var(--bg-2);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.28s ease;
}
.hub-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.hub-card--gold::after  { background: radial-gradient(ellipse at 0% 110%, rgba(201,168,76,0.10) 0%, transparent 65%); }
.hub-card--violet::after { background: radial-gradient(ellipse at 0% 110%, rgba(124,77,255,0.10) 0%, transparent 65%); }
.hub-card--cyan::after   { background: radial-gradient(ellipse at 0% 110%, rgba(0,201,204,0.09) 0%, transparent 65%); }
.hub-card--muted::after  { background: radial-gradient(ellipse at 0% 110%, rgba(255,255,255,0.04) 0%, transparent 65%); }
.hub-card:hover { background: var(--bg-3); }
.hub-card:hover::after { opacity: 1; }
.hub-card:hover .hub-card-arrow { transform: translateX(5px); }

.hub-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hub-card-num {
  font-size: 0.68rem;
  color: var(--cream-5);
  letter-spacing: 0.12em;
}
.hub-card-arrow {
  font-size: 1.3rem;
  transition: transform 0.25s ease;
}
.hub-card--gold .hub-card-arrow   { color: var(--gold); }
.hub-card--violet .hub-card-arrow { color: var(--violet); }
.hub-card--cyan .hub-card-arrow   { color: var(--cyan); }
.hub-card--muted .hub-card-arrow  { color: var(--cream-4); }

.hub-card-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream-1);
  margin: 0;
}
.hub-card--violet .hub-card-title { color: var(--violet); }
.hub-card--cyan .hub-card-title   { color: var(--cyan); }
.hub-card--gold .hub-card-title   { color: var(--gold); }

.hub-card-desc {
  font-size: 0.88rem;
  color: var(--cream-4);
  line-height: 1.65;
  margin: 0;
}
.hub-card-btn {
  display: inline-block;
  margin-top: 1.4rem;
  padding: .55rem 1.2rem;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  pointer-events: none;
}
.hub-card-btn--gold   { background: rgba(201,168,76,0.12);  color: var(--gold);   border: 1px solid rgba(201,168,76,0.3); }
.hub-card-btn--violet { background: rgba(124,77,255,0.12);  color: var(--violet); border: 1px solid rgba(124,77,255,0.3); }
[data-theme="light"] .hub-card-btn--gold   { background: rgba(8,145,178,0.1);  color: #0891B2; border-color: rgba(8,145,178,0.3); }
[data-theme="light"] .hub-card-btn--violet { background: rgba(124,77,255,0.1); color: #7C4DFF; border-color: rgba(124,77,255,0.3); }

/* =============================================================
   20. Page hero — subpage header
   ============================================================= */
.page-hero {
  position: relative;
  padding-top: clamp(5rem, 10vw, 7rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.page-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero--violet .page-hero-gradient {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(124,77,255,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(124,77,255,0.05) 0%, transparent 70%);
}
.page-hero--cyan .page-hero-gradient {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(0,201,204,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(0,201,204,0.04) 0%, transparent 70%);
}

.page-breadcrumb {
  display: inline-block;
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-4);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}
.page-breadcrumb:hover { color: var(--gold); }

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream-1);
  margin: 0.5rem 0 1.5rem;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}
.page-hero--violet .page-hero-title em { color: var(--violet); }
.page-hero--cyan .page-hero-title em   { color: var(--cyan); }

.page-hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--cream-3);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

/* Nav active state */
.nav-link[aria-current="page"] {
  color: var(--gold) !important;
  position: relative;
}
.nav-link[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}
[data-theme="light"] .nav-link[aria-current="page"] {
  color: #0891B2 !important;
}
[data-theme="light"] .nav-link[aria-current="page"]::after {
  background: #0891B2;
}

/* =============================================================
   21. Pro card — updated layout (2 buttons, no Tally)
   ============================================================= */
.pro-card-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}
.pro-card-btns .btn {
  text-align: center;
  width: 100%;
}
@media (min-width: 480px) {
  .pro-card-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pro-card-btns .btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* =============================================================
   22. Individual professional page
   ============================================================= */
.pro-page {
  padding-block: var(--space-3xl);
}
.pro-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 800px) {
  .pro-page-grid {
    grid-template-columns: 340px 1fr;
  }
}
@media (min-width: 1100px) {
  .pro-page-grid {
    grid-template-columns: 400px 1fr;
  }
}

/* Photo column */
.pro-page-photo-wrap {
  position: sticky;
  top: 6rem;
}
.pro-page-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}
.pro-page-photo-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.pro-page-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,4,3,0.55) 0%, transparent 50%);
  pointer-events: none;
}
.pro-page-photo-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pro-page-photo-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream-1);
  line-height: 1.2;
}
.pro-page-photo-esp {
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Info column */
.pro-page-esp-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}
.pro-page-name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream-1);
  margin-bottom: 1.2rem;
}
.pro-page-bio {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: var(--cream-3);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.pro-page-bio + .pro-page-bio {
  margin-top: -1rem;
}
.pro-page-specialties-title {
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-5);
  margin-bottom: 0.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.pro-page-specialties {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pro-page-specialties li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--cream-3);
}
.pro-page-specialties li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}
.pro-page-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 540px) {
  .pro-page-cta { flex-direction: row; }
}

/* =============================================================
   23. Tienda — Dr-Heal-style product grid
   ============================================================= */
.tienda-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.product-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}
.product-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-placeholder-img svg {
  opacity: 0.18;
}
.product-card-body {
  padding: 1.1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.product-card-cat {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-card-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream-1);
  line-height: 1.25;
}
.product-card-price {
  font-size: 0.88rem;
  color: var(--cream-4);
  margin-top: 0.2rem;
}
.product-card-price strong {
  color: var(--cream-1);
  font-weight: 500;
}
.product-card-btn {
  margin-top: 0.8rem;
  width: 100%;
  text-align: center;
}

/* =============================================================
   24. Mobile — comprehensive fixes for phones (≤ 639px)
   ============================================================= */

/* Minimum touch target on all interactive elements */
.btn { min-height: 44px; }
.nav-toggle { min-width: 44px; min-height: 44px; justify-content: center; }
.social-link { width: 44px; height: 44px; }

/* Tienda product grid: 2 columns on mobile, auto on larger */
.tienda-product-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .tienda-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

/* Pro-page: unstick photo on mobile, tighten aspect ratio */
@media (max-width: 799px) {
  .pro-page-photo-wrap { position: static; }
  .pro-page-photo { aspect-ratio: 4/3; }
  .pro-page { padding-block: 2.5rem 4rem; }
}

/* Pro card buttons: always stack on narrow cards */
@media (max-width: 479px) {
  .pro-card-btns { flex-direction: column; }
  .pro-card-btns .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Hub: tighten padding on very small screens */
@media (max-width: 479px) {
  .hub-card { padding: 1.4rem; }
  .hub-card-title { font-size: 1.4rem; }
}

/* ── MOBILE FIXES ─────────────────────────────────────────── */

/* 1. Hero CTA button: full width on mobile */
@media (max-width: 600px) {
  .hero-cta-row .btn-lg {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    justify-content: center;
    display: flex;
  }
  .hero-content { max-width: 100%; overflow: hidden; }
}

/* 2. Mobile nav in light mode: light background + dark links */
@media (max-width: 1199px) {
  [data-theme="light"] .nav { background: rgba(240,247,255,0.97) !important; }
  [data-theme="light"] .nav-menu {
    background: rgba(240,247,255,0.99) !important;
    border-bottom-color: rgba(13,27,42,0.08);
  }
  [data-theme="light"] .nav-link { color: #0D1B2A !important; border-bottom-color: rgba(13,27,42,0.08); }
  [data-theme="light"] .nav-logo-name { color: #0D1B2A !important; }
}

/* 3. Clinica sidebar card: full-width button on mobile */
@media (max-width: 900px) {
  .clinica-steps-card { padding: 1.4rem; }
  .clinica-steps-card .btn,
  .clinica-steps-card .btn-lg {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    justify-content: center;
    display: flex;
  }
  .clinica-steps-right { position: static; }
}

/* 4. Clinica steps text overflow on mobile */
@media (max-width: 768px) {
  .clinica-steps { overflow-x: hidden; }
  .clinica-steps-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .clinica-steps-left,
  .clinica-steps-right {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }
  .clinica-step {
    gap: .875rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .clinica-step-body {
    min-width: 0;
    flex: 1;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .clinica-step-desc { font-size: .85rem; }
  .clinica-step-pay-list { padding-left: 0; }
  .clinica-steps-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .clinica-steps-card-note {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .clinica-steps-sub { max-width: 100%; }
}

/* Hero mobile: two-column from 580px, single column below */
@media (min-width: 580px) and (max-width: 1079px) {
  .hero-inner {
    grid-template-columns: 1fr 38%;
    align-items: center;
    padding-top: var(--nav-h);
    gap: 1.5rem;
    min-height: 100svh;
  }
  .hero-photo-wrap {
    padding-inline: 0;
    padding-bottom: 0;
  }
  .hero-photo-frame { max-width: 100%; }
  .hero-photo { aspect-ratio: 3/4; object-position: top; }
  .hero-content { padding-block: 5rem 3rem; }
}

@media (max-width: 579px) {
  .hero-inner { padding-top: var(--nav-h); gap: 1.25rem; min-height: unset; padding-bottom: 2.5rem; }
  .hero-content { padding-block: 2.5rem 0; }
  .hero-photo-wrap { padding-inline: var(--gutter); padding-bottom: 1rem; }
  .hero-photo-frame { max-width: 240px; }
  .hero-photo { aspect-ratio: 4/5; object-position: top; }
}

/* Page hero: tighten on small screens */
@media (max-width: 479px) {
  .page-hero { padding-top: 5.5rem; padding-bottom: 2rem; }
  .page-hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}

/* Mentoria grid: stack on mobile with less gap */
@media (max-width: 959px) {
  .mentoria-grid { gap: 2.5rem; }
}

/* Story strip: tighter on mobile */
@media (max-width: 719px) {
  .story-strip { padding-block: 3.5rem; }
}

/* Footer: vertical on mobile */
@media (max-width: 719px) {
  .footer-inner { gap: 1.2rem; }
  .footer-nav { gap: 0.75rem 1.1rem; }
  .footer-nav a { font-size: .8rem; }
}

/* Nav menu links: bigger tap area */
@media (max-width: 1199px) {
  .nav-link { padding: 1.1rem 0; font-size: 1.15rem; }
}

/* Clinica grid: single column on very small screens */
@media (max-width: 479px) {
  .clinica-grid { grid-template-columns: 1fr; }
}

/* Mentoria price block: wrap cleanly on mobile */
@media (max-width: 479px) {
  .mentoria-precio { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .precio-actual { font-size: 1.75rem; }
}

/* Section eyebrow / titles */
@media (max-width: 479px) {
  .section-title { font-size: 1.9rem; }
  .proposito-title { font-size: 2rem; }
}

/* Pro page CTA buttons: stack on very small screens */
@media (max-width: 479px) {
  .pro-page-cta { flex-direction: column; }
  .pro-page-cta .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   23. PRO DETAIL — Doctor Heal-style layout
   ============================================================ */
.pro-detail { padding-block: var(--space-2xl); }

.pro-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 960px) {
  .pro-detail-grid {
    grid-template-columns: 1fr;
  }
  .pro-detail-sidebar { order: 1; }
}

/* — Main column — */
.pro-detail-photo {
  width: 100%;
  max-width: 440px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
}
.pro-detail-bio {
  font-size: clamp(.9rem, 1.8vw, 1rem);
  color: var(--cream-3);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.pro-detail-section-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
  margin: 2rem 0 .9rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}

/* Specialties */
.pro-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 .5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.pro-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .93rem;
  color: var(--cream-2);
  line-height: 1.5;
}
.pro-spec-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: .65rem;
  margin-top: .25rem;
  flex-shrink: 0;
}

/* Formation */
.pro-form-list {
  list-style: none;
  padding: 0;
  margin: 0 0 .5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.pro-form-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .87rem;
  color: var(--cream-3);
  line-height: 1.6;
}
.pro-form-list li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}

/* Video placeholder */
.pro-video-placeholder {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--cream-3);
}
.pro-video-placeholder .video-icon {
  font-size: 2.2rem;
  opacity: .35;
}
.pro-video-placeholder p {
  font-size: .82rem;
  opacity: .45;
  margin: 0;
}
.pro-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: none;
  display: block;
}

/* FAQ */
.pro-faq { margin-bottom: 1rem; }
.pro-faq-item { border-bottom: 1px solid var(--line); }
.pro-faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--sans);
  font-size: .93rem;
  font-weight: 500;
  text-align: left;
  padding: .95rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.pro-faq-q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.pro-faq-item.is-open .pro-faq-q::after { transform: rotate(45deg); }
.pro-faq-a {
  font-size: .88rem;
  color: var(--cream-3);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding-bottom .25s;
}
.pro-faq-item.is-open .pro-faq-a {
  max-height: 500px;
  padding-bottom: 1rem;
}

/* — Masterclasses — */
.pro-masterclass-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: .5rem;
}
.pro-masterclass-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  transition: border-color .2s;
}
.pro-masterclass-item:hover {
  border-color: rgba(var(--gold-rgb, 185,145,75), .35);
}
.pro-masterclass-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.pro-masterclass-body {
  flex: 1;
  min-width: 0;
}
.pro-masterclass-body strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream-1);
  line-height: 1.35;
}
.pro-masterclass-body p {
  font-size: .95rem;
  color: var(--cream-3);
  margin: .3rem 0 0;
  line-height: 1.5;
}
.pro-masterclass-badge {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: .3rem .75rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* — Sidebar — */
.pro-sidebar-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem;
  margin-bottom: 1.25rem;
}
.pro-sidebar-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
  margin: 0 0 1.25rem;
  line-height: 1.35;
}

/* Steps */
.pro-steps { display: flex; flex-direction: column; gap: 1rem; }
.pro-step { display: flex; align-items: flex-start; gap: .85rem; }
.pro-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.pro-step-body strong {
  display: block;
  font-size: .87rem;
  color: var(--cream);
  margin-bottom: .18rem;
}
.pro-step-body p {
  font-size: .8rem;
  color: var(--cream-3);
  line-height: 1.55;
  margin: 0;
}
.pro-sidebar-price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: .01em;
  margin: 1.25rem 0 .5rem;
}
.pro-sidebar-price small {
  font-size: .78rem;
  color: var(--cream-3);
  font-family: var(--sans);
  display: block;
  margin-top: .1rem;
  font-style: normal;
}
.pro-sidebar-price p {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: .01em;
  margin: 0 0 .6rem;
}
.pro-sidebar-price p:last-child {
  font-size: 1.1rem;
  margin-bottom: 0;
}
.pro-sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1rem;
}
.pro-sidebar-cta .btn { text-align: center; justify-content: center; }
.pro-sidebar-tyc {
  font-size: .72rem;
  color: var(--cream-3);
  text-align: center;
  opacity: .5;
  margin-top: .25rem;
}
.pro-sidebar-tyc a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* Experience */
.pro-exp-list { display: flex; flex-direction: column; gap: .9rem; }
.pro-exp-item { display: flex; gap: .75rem; align-items: flex-start; }
.pro-exp-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.pro-exp-body strong {
  display: block;
  font-size: .84rem;
  color: var(--cream);
  line-height: 1.3;
}
.pro-exp-body p {
  font-size: .76rem;
  color: var(--cream-3);
  margin: .1rem 0 0;
  line-height: 1.4;
}

/* Otros profesionales */
.pro-others {
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--line);
}
.pro-others-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--cream);
  margin-bottom: 2rem;
  text-align: center;
}
.pro-others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 700px) {
  .pro-others-grid { grid-template-columns: 1fr; }
}
.pro-other-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s;
}
.pro-other-card:hover { border-color: rgba(212,175,55,.35); }
.pro-other-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.pro-other-card-body { padding: 1rem; }
.pro-other-card-esp {
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: .08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.pro-other-card-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.pro-other-card-btns {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.pro-other-card-btns .btn { font-size: .78rem; padding: .45rem .9rem; }

/* ============================================================
   24b. PRO OTHERS — INFINITE TICKER
   ============================================================ */
.pro-others-grid { display: none; } /* replaced by ticker */

/* --- ticker wrapper --- */
.pro-ticker-wrap {
  overflow: hidden;
  margin-top: 2rem;
  cursor: default;
}
.pro-ticker-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}
.pro-ticker-track.is-ready {
  animation: proTickerScroll var(--pro-ticker-duration, 30s) linear infinite;
}
.pro-ticker-track:hover { animation-play-state: paused; }
@keyframes proTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--pro-ticker-offset, -50%)); }
}
.pro-ticker-track .pro-other-card {
  flex: 0 0 280px;
  width: 280px;
}
@media (max-width: 600px) {
  .pro-ticker-track .pro-other-card { flex: 0 0 240px; width: 240px; }
}

.pro-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.pro-carousel-track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.pro-carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.pro-carousel-track .pro-other-card {
  flex: 0 0 calc(33.333% - .84rem);
  min-width: 0;
}
@media (max-width: 960px) {
  .pro-carousel-track .pro-other-card {
    flex: 0 0 calc(50% - .625rem);
  }
}
@media (max-width: 600px) {
  .pro-carousel-track .pro-other-card {
    flex: 0 0 100%;
  }
}
.pro-carousel-btn {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--cream);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
  padding: 0;
}
.pro-carousel-btn:hover:not(:disabled) {
  background: rgba(212,175,55,.15);
  border-color: var(--gold);
  color: var(--gold);
}
.pro-carousel-btn:disabled { opacity: .25; cursor: default; }
.pro-carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}
.pro-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.pro-carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ============================================================
   24. TESTIMONIALS on pro pages
   ============================================================ */
.pro-testimonials {
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--line);
}
.pro-testimonials-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--cream);
  margin-bottom: .4rem;
  text-align: center;
}
.pro-testimonials-sub {
  text-align: center;
  font-size: .83rem;
  color: var(--cream-3);
  margin-bottom: 2rem;
}
.pro-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .pro-testi-grid { grid-template-columns: 1fr; }
}
.pro-testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.4rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.pro-testi-stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .05em;
}
.pro-testi-text {
  font-size: .87rem;
  color: var(--cream-2);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}
.pro-testi-handle {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--cream-3);
  opacity: .6;
  margin-top: .2rem;
}

/* Video grid (Alexa — YouTube embeds) */
.pro-testi-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .pro-testi-video-grid { grid-template-columns: 1fr; }
}
.pro-testi-video-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.pro-testi-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

/* Single video (Mariela — MP4) */
.pro-testi-single-video {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.pro-testi-single-video video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* =============================================================
   25. CLINICA — ¿Por qué agendar?
   ============================================================= */
.clinica-why {
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--line);
}
.clinica-why-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--cream-1);
  margin-bottom: .75rem;
}
.clinica-why-sub {
  font-size: .98rem;
  color: var(--cream-3);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.clinica-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 960px) {
  .clinica-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .clinica-why-grid { grid-template-columns: 1fr; }
}
.clinica-why-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color .25s;
}
.clinica-why-card:hover { border-color: rgba(212,175,55,.3); }
.clinica-why-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: .85rem;
  line-height: 1;
}
.clinica-why-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream-1);
  margin-bottom: .5rem;
}
.clinica-why-card-desc {
  font-size: .88rem;
  color: var(--cream-3);
  line-height: 1.65;
}

/* =============================================================
   26. CLINICA — Agenda en 4 pasos
   ============================================================= */
.clinica-steps {
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--line);
}
.clinica-steps-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .clinica-steps-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.clinica-steps-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream-1);
  margin-bottom: .75rem;
}
.clinica-steps-title em {
  font-style: italic;
  color: var(--gold);
}
.clinica-steps-sub {
  font-size: .98rem;
  color: var(--cream-3);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.clinica-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.clinica-step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clinica-step-body { padding-top: .15rem; }
.clinica-step-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream-1);
  margin-bottom: .35rem;
}
.clinica-step-desc {
  font-size: .9rem;
  color: var(--cream-3);
  line-height: 1.7;
}
.clinica-step-desc strong { color: var(--cream-2); font-weight: 500; }
.clinica-step-pay-list {
  list-style: none;
  padding: 0;
  margin: .6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.clinica-step-pay-list li {
  font-size: .9rem;
  color: var(--cream-3);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.clinica-step-pay-list img {
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,.1);
}
.pay-globe { font-size: 1rem; line-height: 1; }
.clinica-step-pay-list li strong { color: var(--cream-2); font-weight: 500; }
.clinica-steps-tyc {
  font-size: .8rem;
  color: var(--cream-3);
  margin-top: 2rem;
  opacity: .75;
}
.clinica-steps-tyc a { color: var(--cream-3); text-decoration: underline; text-underline-offset: 3px; }

/* sidebar card */
.clinica-steps-right { position: sticky; top: 5rem; }
.clinica-steps-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 16px;
  padding: 2rem;
}
.clinica-steps-card-eyebrow {
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.clinica-steps-card-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--cream-1);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.clinica-steps-card-desc {
  font-size: .9rem;
  color: var(--cream-3);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.clinica-steps-card-note {
  font-size: .82rem;
  color: var(--cream-3);
  font-style: italic;
  opacity: .8;
  margin-bottom: 1.5rem;
  padding-left: .85rem;
  border-left: 2px solid rgba(212,175,55,.3);
  line-height: 1.6;
}
