/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #F5EFE4;
  --bg-2:       #F0E8D9;
  --paper:      #FBF6EC;
  --ink:        #0E0D0C;
  --ink-soft:   #3A362F;
  --ink-mute:   #5C574E;
  --gold:       #B08A50;
  --gold-light: #D8BE8E;
  --gold-pale:  #F3E9D6;
  --gold-deep:  #8B6A3D;
  --espresso:   #100C08;
  --espresso-2: #17140D;
  --cream:      #F7EFE3;
  --cream-mute: #C9C2B4;
  --green:      #5AA86E;
  --line:       rgba(74,70,64,0.16);
  --line-dark:  rgba(176,138,80,0.25);
  --shadow-soft: 0 30px 60px -25px rgba(20,16,8,0.35);
  --shadow-card: 0 18px 40px -20px rgba(20,16,8,0.28);
  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  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.01em; font-family: var(--serif); color: var(--ink); font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--paper); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.5rem; }
.container-narrow { width: 100%; max-width: 780px; margin-inline: auto; padding-inline: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.italic { font-style: italic; }
.gold-text { color: var(--gold-deep); }
.section { position: relative; padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-dark { background: var(--espresso); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
/* Single global background image, fixed behind the whole page. Implemented as a real
   element (not background-attachment:fixed, which iOS/Android browsers render
   unreliably) so desktop and mobile share the exact same fixed-in-place image with
   no per-section duplication, reset, or reposition between sections. */
.global-fixed-bg {
  position: fixed; inset: 0; z-index: -1;
  background: url('assets/img/bg-partitura-piano-desktop.webp') center / cover no-repeat;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .global-fixed-bg { background-image: url('assets/img/bg-partitura-piano-tablet.webp'); }
}
@media (max-width: 640px) {
  .global-fixed-bg { background-image: url('assets/img/bg-partitura-piano-mobile.webp'); }
}
.section-paper, .hero-landing { background: transparent; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep);
}
.section-dark .eyebrow { color: var(--gold-light); }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .7; }
.center { text-align: center; }
.section-head { max-width: 860px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head .lede { max-width: 640px; margin-inline: auto; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: .9rem; }
.section-head h1, .section-head h2 { margin-bottom: .9rem; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.home-title { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-mute); line-height: 1.75; }
.section-dark .lede { color: var(--cream-mute); }
.section-subtitle-italic { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--gold-deep); font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-top: -.3rem; margin-bottom: .9rem; }
.section-dark .section-subtitle-italic { color: var(--gold-light); }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 2.1rem; border-radius: 999px; font-weight: 700; font-size: .95rem;
  letter-spacing: .02em; transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background .3s var(--ease-out);
  white-space: nowrap; position: relative; overflow: hidden; isolation: isolate;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--espresso);
  box-shadow: 0 16px 32px -14px rgba(138,98,41,0.55);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 48%, transparent 66%);
  background-size: 220% 100%; background-position: 120% 0;
  transition: background-position .7s var(--ease-out);
}
.btn-primary:hover::before { background-position: -20% 0; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(138,98,41,0.7); }
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid var(--line); color: var(--ink);
  transition: transform .45s var(--ease-out), border-color .3s var(--ease-out), color .3s var(--ease-out), background .3s var(--ease-out);
}
.section-dark .btn-ghost { border-color: var(--line-dark); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(169,124,63,0.08); transform: translateY(-2px); }
.section-dark .btn-ghost:hover { color: var(--gold-light); background: rgba(216,176,119,0.08); }
/* Light cards (like the pricing card and CTA-final card) sitting inside a dark section keep light-card button styling */
.price-card-v2 .btn-ghost, .cta-final-card .btn-ghost {
  border-color: var(--gold-deep); color: var(--ink); background: var(--gold-pale);
}
.price-card-v2 .btn-ghost:hover, .cta-final-card .btn-ghost:hover {
  border-color: var(--gold-deep); color: var(--ink); background: var(--gold-light); transform: translateY(-2px);
}
.price-card-v2 .btn-ghost:focus-visible, .cta-final-card .btn-ghost:focus-visible {
  outline: 2px solid var(--gold-deep); outline-offset: 2px;
}
.price-card-v2 .btn-ghost:active, .cta-final-card .btn-ghost:active { transform: translateY(0); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.15rem 2.4rem; font-size: 1.02rem; }
@media (max-width: 479px) {
  .price-ctas .btn, .cta-final-ctas .btn { padding-inline: 1rem; font-size: .82rem; gap: .35rem; letter-spacing: 0; }
}

.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.1rem; border-radius: 999px; font-size: .8rem; font-weight: 600;
  background: linear-gradient(135deg, var(--gold-pale), #e9cf9d); color: var(--gold-deep);
  border: 1px solid rgba(138,98,41,0.18);
}
.section-dark .badge { background: linear-gradient(135deg, rgba(216,176,119,0.18), rgba(216,176,119,0.08)); color: var(--gold-light); border-color: rgba(216,176,119,0.25); }

.card {
  background: var(--paper); border-radius: 22px; padding: 2rem;
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(169,124,63,0.35); }

/* Accordion / FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.section-dark .faq-item { border-color: var(--line-dark); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left; font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
}
.section-dark .faq-q { color: var(--cream); }
.faq-q .plus { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gold); position: relative; transition: transform .4s var(--ease-out); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--gold); top: 50%; left: 50%; }
.faq-q .plus::before { width: 12px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 1.5px; height: 12px; transform: translate(-50%,-50%); transition: opacity .3s; }
.faq-item.is-open .faq-q .plus { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out); }
.faq-a p { padding-bottom: 1.6rem; max-width: 62ch; color: var(--ink-mute); }
.section-dark .faq-a p { color: var(--cream-mute); }

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 200;
  padding: 1.1rem 1.5rem;
  background: rgba(247,241,230,0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease-out), background .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
@supports not (backdrop-filter: blur(10px)) { .nav { background: rgba(247,241,230,0.96); } }
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 12px 30px -22px rgba(30,20,10,0.4); background: rgba(247,241,230,0.92); }
.nav-inner { max-width: 1180px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: .8rem; min-width: 0; flex-shrink: 1; }
.nav-logo { width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; }
.nav-links { display: none; align-items: center; gap: 2.2rem; }
.nav-links a { font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; position: relative; color: var(--ink-soft); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--gold); transition: width .35s var(--ease-out); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1.6rem; flex-shrink: 0; }

/* Registrarse dropdown (desktop) */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft);
  transition: color .25s var(--ease-out);
}
.nav-dropdown-toggle:hover { color: var(--ink); }
.nav-dropdown-caret { width: 10px; height: 7px; flex-shrink: 0; transition: transform .3s var(--ease-out); }
.nav-dropdown.is-open .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; z-index: 10;
  min-width: 200px; padding: .5rem; border-radius: 14px;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: .15rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
}
.nav-dropdown-menu a {
  display: block; padding: .7rem .9rem; border-radius: 9px;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em; text-transform: none; color: var(--ink-soft);
  transition: background .2s var(--ease-out), color .2s var(--ease-out);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--gold-pale); color: var(--gold-deep); }
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-caret { transform: rotate(180deg); }
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
}
.nav-burger { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; }
@media (max-width: 639px) {
  .nav-actions .btn { display: none; }
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after { content: ""; display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; transition: transform .3s var(--ease-out), opacity .3s; }
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after { position: absolute; top: 6px; }
.nav-burger.is-open span { background: transparent; }
.nav-burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 190; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateY(-100%); transition: transform .5s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); transition: color .3s var(--ease-out); }
.mobile-menu a:hover { color: var(--gold-deep); }
.mobile-menu > a:last-child {
  font-family: var(--sans); font-size: 1rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--espresso); padding: 1rem 2.2rem; border-radius: 999px;
}
.mobile-menu-dropdown { display: flex; flex-direction: column; align-items: center; }
.mobile-menu-toggle { display: flex; align-items: center; gap: .6rem; }
.mobile-menu-dropdown .nav-dropdown-caret { width: 15px; height: 10px; transition: transform .3s var(--ease-out); }
.mobile-menu-dropdown.is-open .nav-dropdown-caret { transform: rotate(180deg); }
.mobile-menu-submenu {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s var(--ease-out), opacity .3s var(--ease-out), margin-top .4s var(--ease-out);
}
.mobile-menu-submenu a { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; color: var(--ink-soft); }
.mobile-menu-submenu a:hover { color: var(--gold-deep); }
.mobile-menu-dropdown.is-open .mobile-menu-submenu { max-height: 220px; opacity: 1; margin-top: 1.2rem; }

@media (min-width: 960px) {
  .nav { padding: 1.3rem 2.4rem; }
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

/* =============================================================
   7. Sections — Home hero
   ============================================================= */
.hero-home {
  padding-block: clamp(3rem, 8vw, 5rem) clamp(4rem, 9vw, 6rem);
  position: relative; overflow: clip;
  text-align: center;
}
.hero-home .halo {
  position: absolute; inset: -20% -10% auto -10%; height: 70%;
  background: radial-gradient(50% 50% at 50% 40%, rgba(169,124,63,0.22), transparent 72%);
  filter: blur(50px); pointer-events: none;
}
.hero-home-visual {
  position: relative; max-width: 620px; margin: 0 auto clamp(2rem, 5vw, 3rem);
}
.hero-home-visual img {
  border-radius: 20px; box-shadow: var(--shadow-soft);
}
.hero-kicker { justify-content: center; margin-bottom: 1.2rem; }
.hero-home h1 { max-width: 16ch; margin-inline: auto; }
.hero-home .lede { max-width: 46ch; margin: 1.3rem auto 0; }
.hero-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.2rem; }

/* Stats band — standalone dark strip between hero and pain section */
.stats-band { position: relative; background: var(--espresso); padding-block: clamp(1.6rem, 4vw, 2.4rem); border-block: 1px solid var(--line-dark); }
.stats-band-divider { display: flex; align-items: center; justify-content: center; gap: .9rem; margin-bottom: 1.5rem; }
.stats-band-divider span:not(.mark) { height: 1px; width: 90px; max-width: 20vw; background: linear-gradient(90deg, transparent, var(--gold)); }
.stats-band-divider span:last-child:not(.mark) { background: linear-gradient(90deg, var(--gold), transparent); }
.stats-band-divider .mark { color: var(--gold); font-size: .8rem; }
.stats-band-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 460px; margin-inline: auto; text-align: center; }
.stats-band-item svg { width: 26px; height: 26px; color: var(--gold-light); margin: 0 auto .7rem; }
.stats-band-item strong { display: block; font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem, 5.5vw, 3rem); color: var(--gold-light); line-height: 1; white-space: nowrap; }
.stats-band-item > span { display: block; margin-top: .5rem; font-size: .7rem; font-weight: 600; letter-spacing: .04em; color: var(--cream-mute); }

/* Feature split sections */
.feature-split {
  display: grid; gap: 2.6rem; align-items: center;
}
.feature-split-media { position: relative; }
.feature-split-media img { border-radius: 24px; box-shadow: var(--shadow-card); width: 100%; }
.feature-split-media::before {
  content: ""; position: absolute; inset: -6% -6% auto auto; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(169,124,63,0.18), transparent 70%);
  filter: blur(30px); z-index: -1;
}
.feature-split h2 { margin-bottom: 1.1rem; }
.feature-split p { color: var(--ink-mute); max-width: 52ch; }
.feature-split .btn-ghost { margin-top: 1.6rem; }
.feature-split.reverse .feature-split-media { order: -1; }

@media (min-width: 960px) {
  .feature-split { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .feature-split.reverse .feature-split-media { order: 2; }
}

/* CTA band */
.cta-band {
  text-align: center; padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--espresso); color: var(--cream); position: relative; overflow: clip;
}
.cta-band::before {
  content: ""; position: absolute; inset: -40% 20% auto 20%; height: 80%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(216,176,119,0.22), transparent 75%);
  filter: blur(60px); pointer-events: none;
}
.cta-band h2 { color: var(--cream); max-width: 18ch; margin-inline: auto; }
.cta-band .lede { color: var(--cream-mute); margin: 1rem auto 2rem; max-width: 44ch; }

/* =============================================================
   8. Footer
   ============================================================= */
.footer-whatsapp {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  width: fit-content;
  background: transparent; color: #3FA57A;
  transition: color .25s var(--ease-out), transform .25s var(--ease-out);
}
.footer-whatsapp:hover { color: #59C293; transform: translateY(-2px); }
.footer-whatsapp svg { width: 46px; height: 46px; }
.footer-whatsapp span { font-family: var(--sans); font-size: .92rem; font-weight: 600; }

.site-footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 2.6rem 1.6rem 2.2rem;
  border-top: 1px solid rgba(216,176,119,0.25);
}
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.footer-logo { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(216,176,119,0.35); }
.footer-brand { text-align: center; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; letter-spacing: .05em; color: var(--cream); margin-bottom: .3rem; }
.footer-by { text-align: center; font-family: var(--serif); font-style: italic; font-size: .86rem; color: var(--gold-light); margin-bottom: 1.2rem; }
.footer-tagline { text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--gold-light); margin: 0 auto 1.8rem; }
.footer-links { display: flex; gap: 1.6rem; justify-content: center; }
.footer-links a { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--cream); }
.footer-links a:hover { text-decoration: underline; color: var(--gold-light); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(216,176,119,0.18); padding-top: 1.4rem; }
.footer-copy { font-size: .8rem; font-weight: 600; color: var(--cream-mute); }
.footer-legal { font-size: .74rem; margin-top: .35rem; color: var(--cream-mute); }
.footer-legal a:hover { text-decoration: underline; color: var(--gold-light); }
.site-footer-minimal { padding-block: 2rem 1.8rem; }
.site-footer-minimal .footer-top { margin-bottom: 1.2rem; }
.site-footer-minimal .footer-bottom { padding-top: 1.2rem; max-width: 560px; margin-inline: auto; }
.site-footer-minimal .footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 .5rem; }
@media (max-width: 640px) {
  .site-footer-minimal .footer-top { justify-content: center; }
}

/* =============================================================
   9. Landing — announcement bar
   ============================================================= */
.urgency-bar {
  position: sticky; top: 0; z-index: 300;
  background: var(--espresso);
  color: var(--cream);
  border-bottom: 1px solid rgba(216,176,119,0.35);
  padding: .75rem 0;
}
.urgency-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .4rem 1.6rem; text-align: center;
}
.urgency-bar-text { display: flex; flex-direction: column; gap: .15rem; max-width: 640px; }
.urgency-bar-text strong { font-size: .8rem; font-weight: 700; letter-spacing: .02em; color: var(--cream); }
.urgency-bar-text span { font-size: .76rem; color: var(--gold-light); }
.cupos-num { color: var(--gold-light); font-weight: 800; font-size: 1.25em; }
.urgency-countdown-box { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; justify-content: center; }
.ucdb-label { font-size: .66rem; color: var(--cream-mute); text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.ucdb-units { display: flex; gap: .35rem; }
.ucdb-unit {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 2.7rem; padding: .32rem .3rem;
  background: rgba(227,184,118,0.14); border: 1px solid rgba(227,184,118,0.45); border-radius: 6px;
}
.ucdb-unit b { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; font-variant-numeric: tabular-nums; }
.ucdb-unit small { display: block; font-size: .56rem; color: var(--cream-mute); text-transform: uppercase; letter-spacing: .03em; margin-top: .15rem; }
.btn-champagne {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-light); color: var(--espresso);
  padding: .6rem 1.3rem; border-radius: 999px; font-size: .74rem; font-weight: 800;
  letter-spacing: .03em; white-space: nowrap; transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.btn-champagne:hover { background: var(--gold); transform: translateY(-2px); }
@media (max-width: 639px) {
  .urgency-bar-inner { flex-direction: column; gap: .5rem; }
}

/* Landing hero */
.hero-landing { padding-block: clamp(1.5rem, 4vw, 2.6rem) clamp(2.8rem, 6vw, 4rem); text-align: center; position: relative; overflow: clip; }
.hero-landing .halo { position: absolute; inset: -10% -10% auto -10%; height: 60%; background: radial-gradient(50% 50% at 50% 30%, rgba(169,124,63,0.2), transparent 70%); filter: blur(50px); pointer-events: none; }
.hero-landing .lede { max-width: 50ch; margin: 1.1rem auto 0; }
.hero-landing-eyebrow { justify-content: center; max-width: 640px; margin-inline: auto; margin-bottom: 1.4rem; }
.hero-landing-title { font-size: clamp(2rem, 5vw, 3.5rem); max-width: 1180px; text-align: center; margin-inline: auto; text-wrap: balance; }
.hero-landing-subtitle {
  font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--gold-deep);
  font-size: clamp(1.5rem, 3.6vw, 2.5rem); line-height: 1.2; max-width: 900px;
  text-align: center; margin: .3rem auto 0; text-wrap: balance;
}
.hero-landing-lede { max-width: 56ch; font-size: clamp(1.02rem, 1.7vw, 1.15rem); text-align: center; margin: 1.5rem auto 0; color: var(--ink-soft); }
.hero-landing-lede strong { color: var(--gold-deep); font-weight: 600; }
.hero-media {
  max-width: 640px; margin: clamp(2rem,5vw,3rem) auto 0; position: relative;
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-soft);
}
.hero-media img, .hero-media video { width: 100%; height: auto; }

/* Pain points (icon-card grid, v2) */
.pain-section-v2 { position: relative; overflow: hidden; }
.pain-grid-v2, .transformation-grid { position: relative; display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .pain-grid-v2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .transformation-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .transformation-grid { grid-template-columns: repeat(3, 1fr); } }

/* Shared icon + title + divider + description card (pain points & transformation) */
.icon-feature-card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 2.4rem 1.8rem 2rem; text-align: center;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
}
.icon-feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: rgba(169,124,63,0.3); }
.icon-feature-card .pain-num {
  position: absolute; top: 1.1rem; left: 1.1rem;
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gold);
  color: var(--gold-deep); font-family: var(--serif); font-size: .85rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.icon-feature-card .feature-icon { width: 42px; height: 42px; margin: 0 auto 1.2rem; color: var(--gold-deep); }
.icon-feature-card .feature-icon svg { width: 100%; height: 100%; }
.icon-feature-card h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: .8rem; line-height: 1.4; }
.icon-feature-card .card-divider { display: block; width: 28px; height: 1px; background: var(--gold); margin: 0 auto .9rem; }
.icon-feature-card p { color: var(--ink-mute); font-size: .9rem; line-height: 1.6; }

/* Transformation closing nudge */
.transformation-close { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.transformation-close p:not(.transformation-note) { color: var(--ink-mute); font-size: 1.02rem; line-height: 1.6; margin-bottom: 0; }
.transformation-close p strong { color: var(--gold-deep); }
.tc-divider { display: flex; align-items: center; justify-content: center; gap: .9rem; margin: 1.6rem 0; }
.tc-divider span:not(.mark) { height: 1px; width: 70px; background: linear-gradient(90deg, transparent, var(--gold)); }
.tc-divider span:last-child:not(.mark) { background: linear-gradient(90deg, var(--gold), transparent); }
.tc-divider .mark { color: var(--gold); font-size: .8rem; }
.transformation-note {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: 1rem; font-size: .8rem; color: var(--ink-mute);
}
.transformation-note svg { width: 15px; height: 15px; color: var(--gold-deep); flex-shrink: 0; }

/* Testimonials (dark editorial card grid) */
.stars { color: var(--gold); letter-spacing: .15em; font-size: .95rem; margin-bottom: .5rem; }
.stars-summary { text-align: center; color: var(--gold); font-size: 1.6rem; letter-spacing: .2em; margin-bottom: .9rem; }
.section-dark .stars, .section-dark .stars-summary { color: var(--gold-light); }

.testimonial-carousel { position: relative; }
.testimonial-grid-v2 {
  display: flex; gap: 1.4rem; overflow-x: auto;
  padding-bottom: .3rem; scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab; touch-action: pan-y;
}
.testimonial-grid-v2::-webkit-scrollbar { display: none; }
.testimonial-grid-v2.is-dragging { cursor: grabbing; }
.testimonial-card-v2 {
  display: flex; flex-direction: column; align-items: stretch; text-align: center;
  flex: 0 0 auto; width: 82vw; max-width: 320px;
  background: var(--espresso-2); border-radius: 20px; padding: 0; overflow: hidden;
  border: 1px solid rgba(216,176,119,0.22);
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out);
  -webkit-user-drag: none; user-select: none;
}
.testimonial-card-v2 img { pointer-events: none; }
.tcarousel-arrow {
  display: none; position: absolute; top: 40%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--espresso-2); border: 1px solid rgba(216,176,119,0.4); color: var(--gold-light);
  align-items: center; justify-content: center; z-index: 2;
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}
.tcarousel-arrow:hover { background: rgba(216,176,119,0.15); border-color: var(--gold-light); }
.tcarousel-arrow svg { width: 18px; height: 18px; }
.tcarousel-prev { left: -6px; }
.tcarousel-next { right: -6px; }
.tcarousel-dots { display: flex; align-items: center; justify-content: center; gap: .55rem; margin-top: 1.8rem; }
.tcarousel-dot {
  display: block; flex-shrink: 0; box-sizing: border-box;
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(216,176,119,0.4);
  transition: background .35s var(--ease-out), width .35s var(--ease-out);
}
.tcarousel-dot.is-active { width: 26px; background: var(--gold-light); }
/* Mobile fallback: swipe should work, but always show arrows too in case a given
   device/browser doesn't cooperate with the touch-drag gesture. */
@media (max-width: 639px) {
  .tcarousel-arrow {
    display: flex; width: 36px; height: 36px;
    background: rgba(20,16,8,0.6); border-color: rgba(216,176,119,0.55);
  }
  .tcarousel-prev { left: 6px; }
  .tcarousel-next { right: 6px; }
}
@media (min-width: 640px) {
  .tcarousel-arrow { display: flex; }
  .testimonial-card-v2 { width: calc((100% - 1.4rem) / 2); }
}
@media (min-width: 1024px) {
  .testimonial-card-v2 { width: calc((100% - 2.8rem) / 3); }
}
@media (min-width: 1200px) {
  .tcarousel-prev { left: -54px; }
  .tcarousel-next { right: -54px; }
}
.testimonial-card-v2:hover { transform: translateY(-6px); border-color: rgba(216,176,119,0.5); }
.tcard-video-preview {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background-size: cover; background-position: center; background-color: var(--espresso);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(216,176,119,0.18);
}
.tcard-video-preview::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,10,6,0.15), rgba(15,10,6,0.45));
}
.tcard-video-preview .play-dot {
  position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(24,19,13,0.55); border: 1.5px solid var(--gold-light); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease-out), background .3s var(--ease-out);
}
.testimonial-card-v2:hover .play-dot { transform: scale(1.08); background: rgba(24,19,13,0.75); }
.tcard-video-preview .play-dot svg { width: 15px; height: 15px; margin-left: 2px; }
.tcard-body { padding: 1.6rem 1.5rem 1.8rem; }
.tcard-quote { display: block; color: var(--cream-mute); font-family: var(--serif); font-style: italic; font-size: .96rem; line-height: 1.6; margin-bottom: 1.1rem; }
.tcard-name { display: block; font-weight: 700; font-size: .92rem; color: var(--cream); letter-spacing: .02em; }
.tcard-role { display: block; font-size: .72rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: .06em; margin-top: .2rem; }

/* Emotional transition quote / authority band (dark, no photo — clean per approved design) */
.cta-band-quote { background: var(--espresso); color: var(--cream); text-align: center; padding-block: clamp(3rem, 6vw, 4.5rem); }
.quote-mark { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.6rem); color: var(--gold); line-height: 1; margin-bottom: .3rem; }
.quote-transition { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.2rem, 2vw, 1.55rem); color: var(--cream); line-height: 1.5; max-width: 46ch; margin-inline: auto; }
.quote-transition-attr { margin-top: 1.2rem; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* Testimonial expand modal */
.testimonial-modal {
  position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease-out);
}
.testimonial-modal.is-open { opacity: 1; pointer-events: auto; }
.testimonial-modal-backdrop { position: absolute; inset: 0; background: rgba(24,19,13,0.7); }
.testimonial-modal-box {
  position: relative; background: var(--paper); border-radius: 22px; overflow: hidden;
  max-width: 640px; width: 100%; display: grid; grid-template-columns: 1fr; box-shadow: var(--shadow-soft);
  transform: translateY(16px) scale(.97); transition: transform .35s var(--ease-out);
}
.testimonial-modal.is-open .testimonial-modal-box { transform: translateY(0) scale(1); }
.testimonial-modal-box img, .testimonial-modal-box video { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--espresso); }
.testimonial-modal-body { padding: 1.8rem; }
.testimonial-modal-body p[data-testimonial-modal-quote] { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink); margin-bottom: 1rem; }
.testimonial-modal-close {
  position: absolute; top: .8rem; right: .8rem; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(24,19,13,0.55); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
@media (min-width: 640px) { .testimonial-modal-box { grid-template-columns: 240px 1fr; } .testimonial-modal-box img, .testimonial-modal-box video { aspect-ratio: auto; height: 100%; } }

/* Unlock teaser bar (dark, flat) — rendered as its own dark card when embedded inside a light section */
.unlock-section-v2 { background: var(--espresso); padding-block: clamp(2.2rem, 5vw, 3rem); }
.unlock-v2-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.8rem; justify-content: space-between;
  background: var(--espresso); border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.6rem, 4vw, 2.4rem);
  margin-top: clamp(2.6rem, 6vw, 4rem);
  box-shadow: 0 20px 44px -20px rgba(20,16,8,0.35);
  position: relative; z-index: 1;
}
.unlock-v2-text { display: flex; gap: 1rem; align-items: flex-start; flex: 1 1 320px; }
.unlock-v2-text svg { flex-shrink: 0; width: 34px; height: 34px; color: var(--gold-light); margin-top: .1rem; }
.unlock-v2-text h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: .4rem; }
.unlock-v2-text p { color: var(--cream-mute); font-size: .88rem; line-height: 1.55; max-width: 42ch; }
.unlock-v2-cta { flex-shrink: 0; }
.unlock-v2-badges { width: 100%; margin-top: 1.4rem; }
@media (max-width: 900px) {
  .unlock-v2-inner { justify-content: flex-start; }
  .unlock-v2-cta {
    flex-shrink: 1; box-sizing: border-box;
    width: calc(100% - 32px); max-width: 320px; margin: 0 auto;
    padding-inline: 1.3rem; font-size: .92rem; white-space: normal; text-align: center; line-height: 1.25;
  }
  /* Badge phrases are long enough to wrap on mobile — hide the "·" separators
     so wrapping never strands a dot alone at the end of a line. */
  .unlock-v2-badges .sep { display: none; }
  .unlock-v2-badges { row-gap: .5rem; }
}

/* Fit / not-fit comparison */
.fit-section-v2 { position: relative; overflow: hidden; }
.fit-grid { position: relative; display: grid; gap: 1.4rem; }
.fit-card { border-radius: 22px; padding: 2.2rem 2rem; }
.fit-card.yes { background: var(--paper); border: 1.5px solid var(--gold-light); }
.fit-card.no { background: var(--bg-2); border: 1.5px solid var(--line); }
.fit-card h3 { text-align: center; margin-bottom: .8rem; }
.fit-card .card-divider { display: block; width: 30px; height: 1px; background: var(--gold); margin: 0 auto 1.6rem; }
.fit-list li { display: flex; gap: .7rem; padding: .55rem 0; font-size: .94rem; color: var(--ink-soft); align-items: flex-start; }
.fit-list .ic { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; margin-top: .1rem; border: 1px solid var(--gold); color: var(--gold-deep); }
.fit-card.no .ic { border-color: var(--ink-mute); color: var(--ink-mute); }
@media (min-width: 760px) { .fit-grid { grid-template-columns: 1fr 1fr; } }

/* Authority */
.authority-wrap { display: grid; gap: 2.6rem; align-items: center; }
.authority-wrap .eyebrow { margin-bottom: .9rem; }
.authority-wrap h2 { margin-bottom: 1rem; }
.authority-wrap .lede + .lede { margin-top: 1rem; }
.authority-media { position: relative; }
.authority-media img { border-radius: 24px; box-shadow: var(--shadow-soft); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.authority-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.authority-accent { font-family: var(--serif); font-style: italic; color: var(--gold-light); }
.section-dark .lede strong { color: var(--gold-light); font-weight: 700; }
.authority-note {
  display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.6rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(216,176,119,0.2);
}
.authority-note svg { flex-shrink: 0; width: 28px; height: 28px; color: var(--gold-light); margin-top: .15rem; }
.authority-note p { color: var(--cream-mute); font-size: .92rem; line-height: 1.6; }
.authority-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.5rem, 2vw, 1.4rem); margin-top: 1.8rem; }
.authority-stat { position: relative; text-align: center; padding-inline: clamp(.3rem, 2vw, 1rem); }
.authority-stat::before { content: ""; position: absolute; left: 0; top: .1rem; bottom: .1rem; width: 1px; background: rgba(216,176,119,0.25); }
.authority-stat:first-child::before { display: none; }
.authority-stat strong { display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 4.4vw, 3rem); color: var(--gold-light); line-height: 1; margin-bottom: .3rem; white-space: nowrap; }
.authority-stat > span { display: block; font-size: clamp(.6rem, 1.8vw, .74rem); letter-spacing: .04em; color: var(--cream-mute); line-height: 1.3; overflow-wrap: break-word; }
@media (min-width: 960px) { .authority-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; } }

/* Program catalog cards (home) */
.programs-grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; }
.program-card { padding: 0; overflow: hidden; }
.program-photo { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; }
.program-body { padding: 1.8rem 1.8rem 2rem; }
.program-body h2 { font-size: 1.5rem; margin-bottom: .6rem; }
.program-body p { color: var(--ink-mute); margin-bottom: 1.4rem; }
@media (min-width: 720px) { .programs-grid { grid-template-columns: 1fr 1fr; } }

/* Bonuses */
.bonus-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
.bonus-card-v2 { padding: 0; overflow: hidden; text-align: left; }
.bonus-photo-wrap { position: relative; }
.bonus-photo { width: 100%; height: auto; flex-shrink: 0; }
.bonus-tag {
  position: absolute; top: .9rem; left: .9rem; background: var(--gold); color: var(--ink);
  font-size: .68rem; font-weight: 700; letter-spacing: .05em; padding: .35rem .8rem; border-radius: 999px;
}
.bonus-card-v2 > div { padding: 1.6rem 1.6rem 1.8rem; }
.bonus-microlabel { font-size: .68rem; font-weight: 700; letter-spacing: .07em; color: var(--gold-deep); margin-bottom: .7rem; }
.bonus-card-v2 p:not(.bonus-microlabel):not(.bonus-value) { color: var(--ink-mute); font-size: .92rem; line-height: 1.6; margin-bottom: 1rem; }
.bonus-value { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem; font-size: .88rem; color: var(--ink-mute); }
.bonus-value-strike { text-decoration: line-through; color: var(--ink-mute); }
.bonus-value-tag { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: .92rem; }
.bonus-urgency-pill {
  display: flex; align-items: center; gap: .8rem; width: fit-content; margin: 2.6rem auto 0;
  background: var(--paper); border: 1px solid rgba(176,138,80,0.4); border-radius: 999px;
  padding: .9rem 1.6rem; font-size: .88rem; color: var(--ink-soft);
}
.bonus-urgency-pill svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.bonus-urgency-pill strong { color: var(--gold-deep); font-weight: 700; }
@media (min-width: 760px) { .bonus-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .bonus-grid.bonus-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin-inline: auto; } }

/* Real student messages, recreated as on-brand IG/WhatsApp style cards */
.messages-grid-v2 { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .messages-grid-v2 { grid-template-columns: repeat(3, 1fr); } }
.msg-shot-card {
  background: var(--espresso-2); border: 1px solid rgba(216,176,119,0.18); border-radius: 16px;
  padding: .6rem; height: 220px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
@media (min-width: 760px) { .msg-shot-card { height: 240px; } }
.msg-shot-card img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; display: block; }
.messages-more { text-align: center; margin-top: 2.2rem; }

/* Written testimonials without photo (text-only quote cards) */
.testimonial-quote-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .testimonial-quote-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonial-quote-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-quote-card { display: flex; flex-direction: column; }
.testimonial-quote-text { font-family: var(--serif); font-style: italic; color: var(--ink); line-height: 1.65; font-size: .96rem; margin-bottom: 1.1rem; }
.testimonial-quote-name { font-weight: 700; color: var(--gold-deep); font-size: .88rem; }
.btn-ghost-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(216,176,119,0.4); color: var(--gold-light);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.btn-ghost-gold:hover { border-color: var(--gold-light); background: rgba(216,176,119,0.08); }

/* Platform showcase ("Mirá por dentro") */
.platform-showcase { display: grid; gap: 2.6rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .platform-showcase { grid-template-columns: 1.2fr 1fr; } }
.platform-video-wrap {
  border-radius: 22px; overflow: hidden; position: relative;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
}
.platform-video-wrap video { width: 100%; height: auto; display: block; }
.platform-feature-list { display: grid; gap: 1.6rem; }
.platform-feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.platform-feature-list .feature-icon { width: 34px; height: 34px; margin: 0; flex-shrink: 0; color: var(--gold-deep); }
.platform-feature-list .feature-icon svg { width: 100%; height: 100%; }
.platform-feature-list h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .3rem; }
.platform-feature-list p { color: var(--ink-mute); font-size: .88rem; line-height: 1.55; }

/* Pricing / offer */
.price-badge-pill {
  display: flex; align-items: center; gap: .6rem; width: fit-content; margin: 0 auto -1.5rem;
  position: relative; z-index: 2;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--ink); font-size: .78rem; font-weight: 800; letter-spacing: .04em;
  padding: .8rem 1.6rem; border-radius: 999px; box-shadow: 0 14px 30px -14px rgba(121,76,22,0.5);
}
.price-badge-pill svg { width: 16px; height: 16px; }
.price-card-v2 {
  background: var(--paper); border: 1px solid rgba(176,138,80,0.4); border-radius: 32px;
  box-shadow: var(--shadow-soft); padding: clamp(2.4rem, 5vw, 4rem) clamp(1.6rem, 4vw, 3rem) clamp(2rem, 4vw, 2.8rem);
  color: var(--ink-soft);
}
.price-card-grid { display: grid; gap: 2.4rem; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 900px) { .price-card-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.2rem; } }
.price-mockup { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); }
.price-mockup img { width: 100%; height: auto; display: block; }
.price-mentoria-box {
  display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.6rem;
  background: var(--gold-pale); border: 1px solid rgba(176,138,80,0.35); border-radius: 18px; padding: 1.4rem 1.5rem;
}
.price-mentoria-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); }
.price-mentoria-icon svg { width: 17px; height: 17px; }
.price-mentoria-box h4 { font-size: 1rem; color: var(--ink); margin-bottom: .3rem; }
.price-mentoria-box p { font-size: .84rem; color: var(--ink-mute); line-height: 1.55; }
.price-included-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.2rem; }
.price-included-head span:not(:nth-child(2)) { height: 1px; flex: 1; background: rgba(176,138,80,0.3); }
.price-included-head span:nth-child(2) { font-size: .74rem; font-weight: 700; letter-spacing: .08em; color: var(--gold-deep); white-space: nowrap; }
.included-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-bottom: .75rem; margin-bottom: .75rem; border-bottom: 1px dashed rgba(176,138,80,0.3); }
.included-label { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--ink); min-width: 0; }
.included-label svg { width: 17px; height: 17px; flex-shrink: 0; }
.included-label .check-bg { fill: var(--gold); }
.included-label .check-mark { stroke: var(--paper); stroke-width: 1.6; fill: none; }
.included-val { font-size: .88rem; color: var(--ink-mute); flex-shrink: 0; white-space: nowrap; }
.included-val.is-highlight { color: var(--gold-deep); font-weight: 700; }
.price-valor-total { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; padding-top: 1rem; margin-top: .6rem; border-top: 2px solid rgba(74,70,64,0.18); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.valor-strike { text-decoration: line-through; color: var(--ink-mute); font-weight: 400; font-size: 1.4rem; }
.price-today { text-align: center; margin: 1.8rem 0; }
.price-today .tag { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-deep); font-weight: 700; }
.price-today .amount {
  font-family: var(--serif); font-size: clamp(3.2rem, 7.5vw, 4.6rem); margin: .3rem 0;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--ink);
}
.price-today .amount sup { font-size: 1.7rem; }
.price-ctas { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.6rem; }
.price-note { text-align: center; font-size: .82rem; color: var(--ink-mute); margin-top: 1rem; }
.guarantee-strip {
  display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.8rem;
  padding: 1.2rem 1.4rem; border-radius: 16px;
  background: var(--gold-pale); border: 1px solid rgba(138,98,41,0.2);
}
.guarantee-strip svg { width: 30px; height: 30px; color: var(--gold-deep); flex-shrink: 0; margin-top: .1rem; }
.guarantee-strip img { width: 72px; height: 72px; object-fit: contain; flex-shrink: 0; }
.guarantee-strip strong { display: block; font-family: var(--serif); font-size: 1.02rem; color: var(--ink); margin-bottom: .2rem; }
.guarantee-strip p { font-size: .86rem; color: var(--ink-mute); }
.offer-guarantees { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.6rem; }
.guarantee-pill { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--ink-mute); }
.guarantee-pill svg { width: 16px; height: 16px; color: var(--gold-deep); flex-shrink: 0; }
.section-dark .guarantee-pill { color: var(--cream-mute); }
.section-dark .guarantee-pill svg { color: var(--gold-light); }

/* Closing statement */
/* CTA final — dark closing section before footer */
.cta-final { text-align: center; background: var(--espresso); padding-block: clamp(4rem, 9vw, 6rem) clamp(2.5rem, 6vw, 4rem); }
.cta-final .container-narrow { max-width: 900px; }
.cta-final h2 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin-inline: auto; line-height: 1.3; }
.cta-final .lede { margin: 1.2rem auto 0; }
.cta-final-card {
  background: var(--paper); border: 1px solid rgba(176,138,80,0.22); border-radius: 28px;
  box-shadow: 0 30px 60px -20px rgba(10,8,4,0.4);
  padding: 2.4rem 2rem 2.2rem; margin: 2.6rem auto 0; max-width: 520px; text-align: center;
}
.cta-final-mockup { margin: 0 auto 1.6rem; }
.cta-final-mockup img { width: 100%; height: auto; display: block; }
.cta-final-eyebrow { font-size: .74rem; font-weight: 600; letter-spacing: .08em; color: var(--ink-mute); margin-bottom: .3rem; }
.cta-final-brand { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; letter-spacing: .04em; color: var(--gold-deep); margin-bottom: 1.2rem; }
.cta-final-divider { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.3rem; }
.cta-final-divider span:not(.mark) { height: 1px; flex: 1; background: rgba(176,138,80,0.3); }
.cta-final-divider .mark { color: var(--gold); font-size: .75rem; }
.cta-final-price { display: flex; align-items: baseline; justify-content: center; gap: .5rem; }
.cta-final-price span:first-child { font-size: 1.05rem; font-weight: 600; color: var(--gold-deep); }
.cta-final-price strong { font-family: var(--serif); font-weight: 700; font-size: 3.2rem; color: var(--gold-deep); line-height: 1; }
.cta-final-price span:last-child { font-size: .9rem; color: var(--ink-mute); }
.cta-final-includes { margin-top: 1.1rem; font-size: .86rem; line-height: 1.6; color: var(--ink-mute); }
.cta-final-ctas { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.8rem; }
.cta-final-stamps { display: flex; align-items: center; justify-content: center; gap: .9rem; flex-wrap: wrap; margin-top: 1.8rem; font-size: .82rem; color: var(--cream-mute); }
.cta-final-stamps span:not(.sep) { display: flex; align-items: center; gap: .45rem; }
.cta-final-stamps svg { width: 15px; height: 15px; color: var(--gold-light); flex-shrink: 0; }
.cta-final-stamps .sep { color: rgba(176,138,80,0.4); }
.cta-final-viewers { justify-content: center; margin-top: 1.8rem; }

/* =============================================================
   10. Responsive helpers
   ============================================================= */
@media (min-width: 720px) {
  .container { padding-inline: 2rem; }
}
@media (min-width: 1280px) {
  .container { padding-inline: 2.5rem; }
}

/* Small-screen refinements (phones < 420px) */
@media (max-width: 419px) {
  .nav { padding: .9rem 1rem; }
  .nav-logo { width: 36px; height: 36px; }
  .nav-actions .btn { padding: .75rem 1.2rem; font-size: .82rem; }
  .urgency-bar { padding: .6rem 0; }
  .urgency-bar-text strong { font-size: .74rem; }
  .hero-home, .hero-landing { padding-block: 2rem 2.6rem; }
  .offer-stack::after { font-size: .6rem; padding: .4rem 1rem; }
}

/* Inline "people viewing" micro-trigger (subtle, non-floating) */
.viewers-inline {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  font-size: .82rem; color: var(--ink-mute); margin-top: 1rem; text-align: center;
}
.viewers-live { display: inline-flex; align-items: baseline; gap: .45rem; max-width: 100%; }
.viewers-secondary { display: inline-flex; align-items: baseline; gap: .35rem; max-width: 100%; }
.viewers-dot { align-self: center; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: livePulse 1.8s infinite; }
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(90,168,110,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(90,168,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(90,168,110,0); }
}
[data-viewers-inline] { transition: opacity .26s ease; }
[data-viewers-inline].is-updating { opacity: 0; }
.viewers-inline-pricing { justify-content: center; }
.viewers-inline-pricing .viewers-dot { width: 5px; height: 5px; }
.viewers-sep { opacity: .5; }
/* Mobile-only: keep the dot tightly integrated with the first line as one unit,
   and drop the "·" before the second line so it doesn't read as a stray mark. */
@media (max-width: 640px) {
  .viewers-live { align-items: center; gap: .35rem; }
  .viewers-secondary .viewers-sep { display: none; }
}

/* =============================================================
   11. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-home .halo, .hero-landing .halo, .cta-band::before { animation: none; }
}

/* =============================================================
   12. MusicalMente theme — scoped palette, background & components
   Applies only under .theme-musicalmente (musicalmente/index.html).
   Gimnasio Musical (plan-inicial) keeps the tokens in §1 untouched —
   this block only redefines the CSS custom properties inside its own
   scope, so every existing rule that reads var(--x) re-themes
   automatically without being duplicated.
   ============================================================= */
.theme-musicalmente {
  --espresso:   #4A3826;
  --espresso-2: #5C4530;
  --gold:       #C79A5D;
  --gold-light: #E8CC9C;
  --gold-pale:  #F5E9D3;
  --gold-deep:  #9C7239;
  --ink:        #2B2013;
  --ink-soft:   #46392A;
  --ink-mute:   #6B5D4B;
  --paper:      #FCF7EC;
  --bg:         #F6EEDF;
  --bg-2:       #F1E6D2;
  --cream:      #FBF3E6;
  --cream-mute: #E4D3B8;
  --line:       rgba(90,69,42,0.16);
  --line-dark:  rgba(199,154,93,0.28);
}

/* Soft paper/parchment backdrop instead of the piano photo (kept for
   Gimnasio Musical): a warm gradient wash + a very faint inline-SVG
   noise layer. No new binary asset needed. */
.theme-musicalmente .global-fixed-bg {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E") repeat,
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(255,252,245,0.75), transparent 60%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(199,154,93,0.16), transparent 55%),
    linear-gradient(175deg, #FBF3E6 0%, #F3E7D0 55%, #EFDFC4 100%);
}

/* Urgency bar: warm caramel gradient instead of Gimnasio Musical's near-black bar */
.theme-musicalmente .urgency-bar {
  background: linear-gradient(90deg, var(--espresso-2), #6E4F2E 55%, var(--gold-deep));
  border-bottom-color: rgba(232,204,156,0.4);
}

/* "Tu entrenadora" stats sit on a light paper section here (Gimnasio Musical
   uses a dark section for the same block) — the gold-light / cream-mute
   tones in §7 are tuned for a dark background and read as low-contrast on
   paper, so give them a dedicated dark, high-contrast treatment. */
/* Hero: smaller italic tagline + tighter media card to fit the longer
   approved copy (the approved subtitle/lede run longer than a one-line
   tagline, so the display-size treatment from the base .hero-landing-subtitle
   rule is scaled down here). */
.theme-musicalmente .hero-landing-subtitle { font-size: clamp(1.1rem, 2.2vw, 1.4rem); font-weight: 500; max-width: 640px; }
.theme-musicalmente .hero-media { max-width: 880px; border-radius: 14px; box-shadow: 0 34px 74px -30px rgba(43,33,24,0.4); }
.theme-musicalmente .hero-media video { display: block; object-fit: cover; aspect-ratio: 16/9; background: var(--espresso); }

/* "Tu entrenadora" reads on a light paper section here (Gimnasio Musical
   uses a dark section for the same block) — the gold-light / cream-mute
   tones in §7 are tuned for a dark background and read as low-contrast on
   paper, so give them a dedicated dark, high-contrast treatment. */
.theme-musicalmente .section-paper .authority-note svg { color: var(--gold-deep); }
.theme-musicalmente .section-paper .authority-note p { color: var(--ink-soft); }
.theme-musicalmente .section-paper .authority-accent { color: var(--gold-deep); }

/* Short italic-serif punchline — the recurring "closing statement" pattern
   after dolores, beneficios, "¿es para vos?", "todo lo que te llevás", etc. */
.mm-punchline { text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold-deep); line-height: 1.5; max-width: 640px; margin: 2.2rem auto 0; }
.section-dark .mm-punchline { color: var(--gold-light); }

/* "Dolores" — a minimal numbered list (no card background, no icon):
   embossed serif numeral + bottom-border divider, matching the approved
   design file's editorial, whitespace-driven layout. */
.mm-dolor-list { max-width: 880px; margin-inline: auto; }
.mm-dolor-row { display: grid; grid-template-columns: 60px 1fr; gap: 1.1rem; align-items: start; padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.mm-dolor-row:last-child { border-bottom: none; }
.mm-dolor-index { font-family: var(--serif); font-weight: 700; font-size: 2.1rem; line-height: 1; color: var(--gold-pale); -webkit-text-stroke: 1.5px var(--gold); }
.mm-dolor-copy h3 { font-size: 1.02rem; font-weight: 700; letter-spacing: .01em; color: var(--ink); margin-bottom: .4rem; }
.mm-dolor-copy p { font-size: .93rem; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 480px) { .mm-dolor-row { grid-template-columns: 46px 1fr; gap: .8rem; } .mm-dolor-index { font-size: 1.6rem; } }

/* "Qué cambia" — a plain 3-column grid with a small gold rule per item
   (no icons, no card backgrounds), on the dark #4A3826 band. */
.mm-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 1.8rem; max-width: 940px; margin-inline: auto; }
.mm-benefit-item .rule { width: 30px; height: 2px; background: var(--gold); margin-bottom: .8rem; }
.mm-benefit-item h3 { font-size: .86rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--cream); margin-bottom: .4rem; }
.mm-benefit-item p { font-size: .92rem; line-height: 1.55; color: var(--cream-mute); }
@media (max-width: 720px) { .mm-benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .mm-benefit-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* "¿Es para vos?" — a simple checkmark list in a narrow centered column,
   on the light #F1E6D2 band (var(--bg-2)). */
.mm-fit-list { max-width: 640px; margin-inline: auto; }
.mm-fit-row { display: flex; gap: .9rem; align-items: flex-start; padding: .95rem 0; border-bottom: 1px solid rgba(90,69,42,0.14); }
.mm-fit-row:last-child { border-bottom: none; }
.mm-fit-row .check { flex-shrink: 0; width: 19px; height: 19px; margin-top: .2rem; }
.mm-fit-row h3 { font-size: .98rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.mm-fit-row p { font-size: .93rem; line-height: 1.5; color: var(--ink-soft); }

/* "Todo lo que te llevás" — 2-column grid, top-border divider, on the dark band. */
.mm-component-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 2.2rem; max-width: 940px; margin-inline: auto; }
.mm-component-item { display: flex; gap: .9rem; align-items: flex-start; padding-top: 1.1rem; border-top: 1px solid rgba(232,204,156,0.25); }
.mm-component-icon { width: 24px; height: 24px; margin-top: .1rem; color: var(--gold); flex-shrink: 0; }
.mm-component-icon svg { width: 100%; height: 100%; }
.mm-component-item h3 { font-size: 1.02rem; font-weight: 700; color: var(--cream); margin-bottom: .4rem; }
.mm-component-item p { font-size: .9rem; line-height: 1.55; color: var(--cream-mute); }
@media (max-width: 640px) { .mm-component-grid { grid-template-columns: 1fr; } }

/* Bonus cards — the individual bonus mockup as the card's photo, simpler
   and lighter than Gimnasio Musical's .bonus-card-v2. */
.mm-bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 820px; margin-inline: auto; }
.mm-bonus-card { background: var(--paper); border-radius: 14px; overflow: hidden; box-shadow: 0 18px 40px -26px rgba(43,33,24,0.35); }
.mm-bonus-card img { width: 100%; height: auto; display: block; }
.mm-bonus-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.mm-bonus-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.mm-bonus-card .text { font-size: .92rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: .8rem; }
.mm-bonus-card .value { font-size: .84rem; color: var(--gold-deep); font-weight: 700; }
.mm-bonus-card .value .strike { text-decoration: line-through; opacity: .55; font-weight: 400; color: var(--ink-mute); }
@media (max-width: 640px) { .mm-bonus-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* Testimonials — small circular avatar + name + stars in a header row,
   italic quote below (replaces the old centered-avatar-above layout). */
.theme-musicalmente .testimonial-quote-card { padding: 1.3rem 1.2rem; }
.mm-testimonial-head { display: flex; align-items: center; gap: .65rem; margin-bottom: .8rem; }
.mm-testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); flex-shrink: 0; }
.mm-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mm-testimonial-avatar.is-fallback { display: flex; align-items: center; justify-content: center; background: var(--gold-pale); color: var(--gold-deep); font-family: var(--serif); font-weight: 700; font-size: 1rem; }
.mm-testimonial-meta .name { font-size: .9rem; font-weight: 700; color: var(--ink); }
.mm-testimonial-meta .stars { font-size: .7rem; color: var(--gold); letter-spacing: .12em; margin-top: .1rem; }
.theme-musicalmente .testimonial-quote-text { font-size: .92rem; margin-bottom: 0; }

/* Compact CTA button inside the sticky urgency bar (base .btn padding is
   sized for full sections, too large for a slim top bar). */
.urgency-bar-cta { padding: .55rem 1.3rem; font-size: .78rem; flex-shrink: 0; }
.theme-musicalmente .urgency-bar-text strong { color: var(--gold-light); font-size: .75rem; letter-spacing: .09em; }

/* Small centered microtext under a CTA (hero, price card). */
.hero-landing-microtext { text-align: center; font-size: .85rem; color: var(--ink-mute); margin-top: 1.1rem; }
.section-dark .hero-landing-microtext { color: var(--cream-mute); }
/* .price-card-v2 is a light card that can sit inside a dark section (Oferta) —
   the dark-section override above would otherwise wash the text out against
   the card's own light background, so force it back to the dark-on-light color. */
.price-card-v2 .hero-landing-microtext { color: var(--ink-mute); }


/* Price card: slightly tighter radius to match the approved design file. */
.theme-musicalmente .price-card-v2 { border-radius: 20px; }
.mm-price-guarantee { display: flex; align-items: center; gap: .6rem; justify-content: center; margin-top: .9rem; padding-top: .9rem; border-top: 1px dashed rgba(156,114,57,0.3); }
.mm-price-guarantee img { width: 30px; height: 30px; flex-shrink: 0; }
.mm-price-guarantee p { font-size: .78rem; line-height: 1.4; color: var(--ink-mute); text-align: left; }
.mm-price-guarantee p strong { color: var(--ink); }

/* Footer — a darker brown than the rest of the dark sections, for a clean
   final visual stop. */
.theme-musicalmente .site-footer { background: #3A2C1C; }
.footer-logo-mm {
  width: 168px; height: auto; margin: 0 auto 1rem; display: block;
  filter: brightness(1.55) saturate(1.15) drop-shadow(0 0 10px rgba(0,0,0,0.35));
}
