/* ============================================================
   POUDMAN ACADEMIA · Cálido editorial
   ============================================================ */

:root {
  --ink: #0F0D0B;       /* negro tinta */
  --paper: #F4EDE0;     /* crema papel */
  --ember: #C75A2A;     /* naranja brasa */
  --gold: #B8924F;      /* dorado antiguo */
  --wine: #3D1A0F;      /* vino profundo */
  --smoke: #8A847C;     /* gris humo */
  --black: #000000;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --max: 1440px;
  --pad-x: clamp(20px, 5vw, 88px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- Typography utilities ---------- */
.serif { font-family: var(--font-display); font-optical-sizing: auto; }
.italic { font-style: italic; }
.mono { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section { position: relative; }

.section-ink { background: var(--ink); color: var(--paper); }
.section-paper { background: var(--paper); color: var(--ink); }
.section-wine { background: var(--wine); color: var(--paper); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 200ms; }
.reveal[data-delay="3"] { transition-delay: 300ms; }
.reveal[data-delay="4"] { transition-delay: 400ms; }
.reveal[data-delay="5"] { transition-delay: 500ms; }
.reveal[data-delay="6"] { transition-delay: 600ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition-duration: 200ms; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-ember {
  background: var(--ember);
  color: #fff;
}
.btn-ember:hover { box-shadow: 0 8px 24px -10px rgba(199, 90, 42, .55); }
.btn-outline-paper {
  border-color: var(--paper);
  color: var(--paper);
}
.btn-outline-paper:hover { background: var(--paper); color: var(--ink); }
.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--ink); }
.btn-outline-ink {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-ink:hover { background: var(--ink); color: var(--paper); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav.is-scrolled {
  background: rgba(15, 13, 11, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(184, 146, 79, 0.15);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--paper);
}
.nav-logo small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: block;
  margin-top: -2px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .82;
  transition: opacity .2s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-cta { justify-self: end; display: flex; gap: 12px; align-items: center; }
.nav-cta .btn { padding: 12px 20px; font-size: 12px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(54px, 8.4vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 36px;
}
.hero-title .ember-word {
  color: var(--ember);
}
.hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(244, 237, 224, 0.78);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 64px;
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(184, 146, 79, 0.2);
  padding-top: 28px;
}
.hero-meta-item .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-meta-item .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ---------- Placeholder photos (striped SVG) ---------- */
.photo-ph {
  position: relative;
  width: 100%;
  background: #1a1714;
  overflow: hidden;
  isolation: isolate;
}
.photo-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(184, 146, 79, 0.07) 0 2px,
    transparent 2px 14px
  );
  z-index: 0;
}
.photo-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(199, 90, 42, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(15,13,11,0) 0%, rgba(15,13,11,0.5) 100%);
  z-index: 1;
}
.photo-ph .ph-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(244, 237, 224, 0.55);
  letter-spacing: 0.05em;
  max-width: 70%;
  line-height: 1.35;
}
.photo-ph .ph-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 146, 79, 0.4);
  padding: 4px 8px;
}
.photo-ph.light {
  background: #e8dfd0;
}
.photo-ph.light::before {
  background: repeating-linear-gradient(
    115deg,
    rgba(15, 13, 11, 0.05) 0 2px,
    transparent 2px 14px
  );
}
.photo-ph.light::after {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(199, 90, 42, 0.06), transparent 60%),
    linear-gradient(135deg, rgba(15,13,11,0) 0%, rgba(15,13,11,0.12) 100%);
}
.photo-ph.light .ph-label { color: rgba(15,13,11, 0.55); }
.photo-ph.light .ph-tag { color: var(--ink); border-color: rgba(15,13,11, 0.3); }

.hero-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
}

/* ---------- Manifiesto ---------- */
.manifesto {
  padding: clamp(110px, 16vw, 180px) 0;
}
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--pad-x);
}
.manifesto p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.manifesto p + p { margin-top: 1.2em; }
.manifesto .key { color: var(--ember); font-style: italic; }
.manifesto-eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.gold-line {
  display: block;
  height: 1px;
  background: var(--gold);
  margin: 56px auto 28px;
  transform-origin: left center;
  transform: scaleX(0);
  width: 80px;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}
.is-in .gold-line { transform: scaleX(1); }
.manifesto-sig {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--smoke);
  text-transform: uppercase;
}

/* ---------- Contraste ---------- */
.contraste { padding: 130px 0; }
.contraste-head {
  text-align: center;
  margin-bottom: 80px;
}
.contraste-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-top: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.contraste-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  position: relative;
}
.contraste-divider {
  background: var(--gold);
  height: 100%;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1000ms cubic-bezier(.2,.7,.2,1);
}
.contraste-grid.is-in .contraste-divider { transform: scaleY(1); }
.contraste-col { padding: 0 56px; }
.contraste-col:first-child { padding-left: 0; }
.contraste-col:last-child { padding-right: 0; }
.contraste-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid currentColor;
  margin-bottom: 28px;
}
.contraste-tag.dim { color: var(--smoke); }
.contraste-tag.ember { color: var(--ember); border-color: var(--ember); }
.contraste-col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  margin-bottom: 36px;
  color: var(--paper);
}
.contraste-col.dim h3 { color: rgba(244,237,224,0.5); }
.contraste-list { list-style: none; display: grid; gap: 18px; }
.contraste-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 14px;
  font-size: 17px;
  line-height: 1.45;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.08);
}
.contraste-col.dim li { color: rgba(244,237,224,0.55); }
.contraste-list .mark {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.5;
  color: var(--smoke);
}
.contraste-list .check { color: var(--gold); font-weight: 600; }

@media (max-width: 900px) {
  .contraste-grid { grid-template-columns: 1fr; gap: 48px; }
  .contraste-divider { display: none; }
  .contraste-col { padding: 0; }
}

/* ---------- Método ---------- */
.metodo { padding: 120px 0 80px; position: relative; }
.metodo-head {
  margin-bottom: 100px;
  max-width: 880px;
}
.metodo-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 18px;
}
.metodo-stack {
  position: relative;
  padding-left: 0;
}
.metodo-thread {
  position: absolute;
  left: clamp(80px, 12vw, 180px);
  top: 0;
  bottom: 80px;
  width: 1px;
  background: rgba(184, 146, 79, 0.18);
  z-index: 0;
}
.metodo-thread::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform-origin: top;
  transform: scaleY(var(--thread, 0));
  transition: transform 80ms linear;
}
.etapa {
  display: grid;
  grid-template-columns: clamp(180px, 24vw, 360px) 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  min-height: 72vh;
  position: relative;
  z-index: 1;
}
.etapa-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(140px, 18vw, 240px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  letter-spacing: -0.02em;
}
.etapa-body { max-width: 540px; }
.etapa-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 22px;
  font-weight: 600;
}
.etapa-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.etapa-body p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(15, 13, 11, 0.7);
  max-width: 460px;
}
.etapa-dot {
  position: absolute;
  left: clamp(80px, 12vw, 180px);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold);
  z-index: 2;
}

@media (max-width: 900px) {
  .metodo-thread { left: 30px; }
  .etapa { grid-template-columns: 1fr; min-height: 0; gap: 24px; padding: 60px 0 60px 60px; }
  .etapa-dot { left: 30px; top: 80px; transform: translate(-50%, 0); }
  .etapa-num { font-size: 100px; }
}

/* ---------- Módulos ---------- */
.modulos { padding: 130px 0; }
.modulos-head { margin-bottom: 72px; max-width: 760px; }
.modulos-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 18px;
  color: var(--paper);
}
.mod-row {
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid rgba(184, 146, 79, 0.18);
}
.mod-row:last-child { border-bottom: 1px solid rgba(184, 146, 79, 0.18); }
.mod-row.elite {
  background: linear-gradient(90deg, rgba(199, 90, 42, 0.06), transparent 60%);
  padding-left: 24px;
  margin-left: -24px;
  border-left: 2px solid var(--ember);
  padding-top: 40px;
  padding-bottom: 40px;
}
.mod-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 56px;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.mod-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.mod-title .mod-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mod-row.elite .mod-title .mod-eyebrow { color: var(--ember); }
.mod-desc {
  color: rgba(244, 237, 224, 0.7);
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
}
.mod-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid var(--ember);
  padding: 4px 10px;
  margin-top: 14px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .mod-row { grid-template-columns: 80px 1fr; gap: 20px; }
  .mod-row .mod-desc { grid-column: 1 / -1; }
}

/* ---------- Evaluación ---------- */
.evaluacion { padding: 140px 0; }
.evaluacion-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.evaluacion-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 28px;
}
.evaluacion-head p {
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(244, 237, 224, 0.7);
  line-height: 1.5;
}
.evaluacion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.eval-card {
  background: var(--paper);
  color: var(--ink);
  padding: 40px 36px;
  position: relative;
  min-height: 220px;
}
.eval-card .eval-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--ember);
  margin-bottom: 14px;
}
.eval-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.eval-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(15, 13, 11, 0.7);
}
.eval-prize {
  max-width: 980px;
  margin: 28px auto 0;
  border: 1px solid var(--gold);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.eval-prize .amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
  letter-spacing: -0.01em;
}
.eval-prize p {
  font-size: 14px;
  color: rgba(244, 237, 224, 0.8);
  max-width: 380px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .evaluacion-grid { grid-template-columns: 1fr; }
  .eval-prize { grid-template-columns: 1fr; padding: 28px; }
}

/* ---------- Egresados ---------- */
.egresados { padding: 130px 0 0; }
.egresados-head { margin-bottom: 72px; max-width: 880px; }
.egresados-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 18px 0 18px;
}
.egresados-head .sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--smoke);
}
.egresados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.egresado-card {
  background: #fff;
  border: 1px solid transparent;
  padding: 0;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.egresado-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -30px rgba(61, 26, 15, 0.25);
}
.egresado-card .photo-ph {
  aspect-ratio: 4 / 5;
  width: 100%;
}
.egresado-body { padding: 24px 24px 28px; }
.egresado-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.egresado-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid var(--ember);
  padding: 3px 8px;
  margin: 12px 0 18px;
  font-weight: 600;
}
.egresado-cifra {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.egresado-cifra .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.egresado-cifra .per {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--smoke);
  text-transform: uppercase;
}
.egresado-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(15,13,11, 0.72);
  line-height: 1.4;
  margin-bottom: 12px;
}
.egresado-ctx {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--smoke);
}

.egresados-totals {
  margin-top: 110px;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 9vw, 96px) var(--pad-x);
  text-align: center;
}
.egresados-totals p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.2;
  max-width: 880px;
  margin: 0 auto;
  color: var(--paper);
}
.egresados-totals .ember-num { color: var(--ember); font-style: italic; }

@media (max-width: 900px) {
  .egresados-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .egresados-grid { grid-template-columns: 1fr; }
}

/* ---------- Instructores ---------- */
.instructores { padding: 130px 0; }
.instructores-head { margin-bottom: 64px; max-width: 760px; }
.instructores-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 18px 0 22px;
}
.instructores-head p {
  color: rgba(244, 237, 224, 0.65);
  font-size: 18px;
  max-width: 540px;
  line-height: 1.55;
}
.instructores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.instructor-card {
  background: rgba(244, 237, 224, 0.03);
  border: 1px solid rgba(184, 146, 79, 0.18);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.instructor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -28px rgba(199, 90, 42, 0.35);
  border-color: rgba(184, 146, 79, 0.4);
}
.instructor-card .photo-ph {
  aspect-ratio: 3 / 4;
  width: 100%;
  filter: saturate(0);
  transition: filter .5s ease;
}
.instructor-card:hover .photo-ph { filter: saturate(0.6); }
.instructor-body { padding: 28px 26px 32px; }
.instructor-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 8px;
}
.instructor-spec {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ember);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.instructor-years {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.instructor-years::before {
  content: "✦";
  color: var(--gold);
  font-size: 11px;
}
.instructor-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(244, 237, 224, 0.75);
}

@media (max-width: 900px) {
  .instructores-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .instructores-grid { grid-template-columns: 1fr; }
}

/* ---------- Planes ---------- */
.planes { padding: 130px 0; }
.planes-head { margin-bottom: 64px; }
.planes-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 18px;
  color: var(--ink);
}
.planes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.plan-card {
  background: #fff;
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(15,13,11,0.06);
  position: relative;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -30px rgba(61, 26, 15, 0.28);
}
.plan-card.elite {
  border: 2px solid var(--ember);
}
.plan-card.elite::before {
  content: "MÁS ELEGIDO";
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--ember);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 5px 10px;
  font-weight: 600;
}
.plan-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.plan-tagline {
  font-size: 13px;
  color: var(--smoke);
  margin-bottom: 28px;
  line-height: 1.5;
  min-height: 40px;
}
.plan-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-period {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  margin: 0 0 36px;
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: rgba(15,13,11,0.75);
  line-height: 1.5;
  flex-grow: 1;
}
.plan-features li {
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 600;
}
.plan-card .btn { width: 100%; justify-content: center; }

@media (max-width: 1100px) {
  .planes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .planes-grid { grid-template-columns: 1fr; }
}

/* ---------- Sedes ---------- */
.sedes { padding: 130px 0; }
.sedes-head { margin-bottom: 64px; max-width: 760px; }
.sedes-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 18px;
  color: var(--paper);
}
.sede-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding: 60px 0;
  border-top: 1px solid rgba(184, 146, 79, 0.18);
  align-items: center;
}
.sede-block:last-of-type { border-bottom: 1px solid rgba(184, 146, 79, 0.18); }
.sede-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  margin-bottom: 22px;
  border: 1px solid currentColor;
}
.sede-tag.gold { color: var(--gold); }
.sede-tag.gold::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
.sede-tag.ember { color: var(--ember); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}
.sede-block h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 8px;
}
.sede-addr {
  font-size: 15px;
  color: var(--smoke);
  margin-bottom: 28px;
}
.sede-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.sede-map {
  aspect-ratio: 4 / 3;
  background: #14110f;
  border: 1px solid rgba(184, 146, 79, 0.2);
  position: relative;
  overflow: hidden;
}
.sede-map svg { width: 100%; height: 100%; display: block; }

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0 32px;
  max-width: 460px;
}
.cd-cell {
  text-align: center;
  padding: 16px 8px;
  background: rgba(184, 146, 79, 0.05);
  border: 1px solid rgba(184, 146, 79, 0.15);
}
.cd-cell .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  display: block;
  transition: opacity .3s ease;
}
.cd-cell .l {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-top: 8px;
}
.bono-card {
  background: var(--paper);
  color: var(--ink);
  padding: 28px;
  border: 1px solid var(--gold);
  margin-top: 28px;
}
.bono-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.bono-sub {
  font-size: 13px;
  color: rgba(15,13,11,0.6);
  margin-bottom: 18px;
}
.bono-progress {
  height: 6px;
  background: rgba(15,13,11,0.08);
  position: relative;
  overflow: hidden;
}
.bono-progress .bar {
  position: absolute;
  inset: 0;
  background: var(--ember);
  transform-origin: left;
  transform: scaleX(var(--p, .5));
}
.bono-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .sede-block { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { padding: 130px 0; }
.faq-head { margin-bottom: 56px; max-width: 720px; }
.faq-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 18px;
  color: var(--ink);
}
.faq-list { max-width: 880px; }
.faq-item {
  border-top: 1px solid rgba(184, 146, 79, 0.35);
}
.faq-list .faq-item:last-child {
  border-bottom: 1px solid rgba(184, 146, 79, 0.35);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: left;
  padding: 28px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.005em;
  color: var(--ink);
  cursor: pointer;
}
.faq-q .plus {
  width: 22px;
  height: 22px;
  position: relative;
  color: var(--gold);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.faq-q .plus::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.7,.2,1);
}
.faq-a-inner {
  padding: 0 0 32px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(15,13,11,0.72);
  max-width: 700px;
}

/* ---------- CTA Final ---------- */
.cta-final {
  padding: clamp(120px, 18vw, 200px) 0;
  text-align: center;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(46px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--paper);
  max-width: 1080px;
  margin: 0 auto;
}
.cta-final h2 .ember { color: var(--ember); font-style: italic; }
.cta-final .gold-line { margin: 56px auto; }
.cta-final-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: rgba(244, 237, 224, 0.7);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--paper);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.footer-tag {
  font-size: 13px;
  color: var(--smoke);
  max-width: 280px;
  line-height: 1.55;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { font-size: 14px; color: rgba(244, 237, 224, 0.7); transition: color .2s ease; }
.footer a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(244, 237, 224, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--smoke);
}
.footer-bottom .legal { display: flex; gap: 24px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; }
}

/* Section anchors offset for sticky nav */
section[id] { scroll-margin-top: 80px; }

/* ════════════════════════════════════════════════════════════
   POST-AUDITORÍA · estilos nuevos
   ════════════════════════════════════════════════════════════ */

/* ---------- Top bar urgencia (Fix 10) ---------- */
/* TOPBAR — altura fija + z-index por encima del nav para que nunca se corte */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;                /* arriba del nav (100) */
  height: 36px;                /* altura fija para evitar overlap */
  background: linear-gradient(90deg, #C75A2A 0%, #B8924F 100%);
  color: #0F0D0B;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  overflow: hidden;            /* nada se desborda nunca */
  box-shadow: 0 1px 0 rgba(0,0,0,0.18);
}
.topbar-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  white-space: nowrap;         /* ÚNICA línea, no wrap */
  overflow: hidden;
  text-overflow: ellipsis;
}
.tb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #0F0D0B;
  flex-shrink: 0;
  animation: tb-pulse 1.8s ease-in-out infinite;
}
@keyframes tb-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.35); }
}
.tb-text {
  display: inline;             /* simple inline, no wrap, no flex */
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.tb-text strong { font-weight: 600; }
.tb-sep { opacity: 0.55; margin: 0 4px; }
.tb-cd {
  font-family: var(--font-mono);
  font-size: 11.5px;
  background: #0F0D0B;
  color: #B8924F;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
/* Topbar dual chips — Bosa abierto + Chapinero próximo */
.tb-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tb-chip-live {
  background: rgba(15, 13, 11, 0.85);
  color: #66ff8a;
}
.tb-chip-live .tb-chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #45e26a;
  box-shadow: 0 0 0 0 rgba(70, 226, 106, 0.7);
  animation: tb-live-pulse 1.6s ease-in-out infinite;
}
@keyframes tb-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,226,106,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(70,226,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,226,106,0); }
}
.tb-chip-soon {
  background: rgba(15, 13, 11, 0.85);
  color: #F5EFE6;
}
.tb-chip-soon .tb-cd {
  margin-left: 4px;
  padding: 2px 7px;
  font-size: 10.5px;
}
@media (max-width: 700px) {
  .tb-chip { font-size: 10.5px; padding: 4px 8px; }
  .tb-chip-soon .tb-cd { font-size: 9.5px; padding: 2px 5px; }
}

/* Nav siempre debajo del topbar exacto a 36px */
.nav { top: 36px; }

@media (max-width: 700px) {
  .topbar { height: 32px; font-size: 11px; }
  .topbar-inner { padding: 0 12px; gap: 8px; }
  .tb-sep { display: none; }
  .tb-cd { font-size: 10px; padding: 2px 6px; }
  /* En móvil acortamos texto: ocultamos parte secundaria, dejamos solo lo crítico */
  .tb-text .tb-extra { display: none; }
  .nav { top: 32px; }
}
@media (max-width: 480px) {
  .topbar { height: 30px; font-size: 10.5px; }
  .tb-dot { width: 6px; height: 6px; }
  .nav { top: 30px; }
}

/* ---------- Sticky CTA móvil (Fix 4) ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 55;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(15, 13, 11, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184, 146, 79, 0.18);
  transform: translateY(100%);
  transition: transform .35s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 4px;
}
.sc-wa { background: #25D366; color: #fff; flex-direction: column; gap: 2px; line-height: 1.1; padding: 8px 12px; }
.sc-wa .sc-wa-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}
.sc-wa .sc-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.95;
}
.sc-wa .sc-wa-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: sc-wa-pulse 1.6s ease-in-out infinite;
}
@keyframes sc-wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.sc-visit { background: #C75A2A; color: #fff; }
@media (max-width: 900px) {
  .sticky-cta { display: grid; }
  /* dejar espacio inferior al contenido para no taparlo */
  body { padding-bottom: 72px; }
}

/* Garantía chip en el hero (subida desde footer) */
.hv-guarantee { margin: 14px 0 0; }
.hv-guarantee-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 90, 42, 0.12);
  border: 1px solid rgba(199, 90, 42, 0.35);
  color: #E8743C;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .hv-guarantee-chip { font-size: 11.5px; padding: 6px 12px; }
}

/* ---------- Cookie banner (Fix 20) ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 70;
  background: #0F0D0B;
  color: var(--paper);
  border: 1px solid rgba(184, 146, 79, 0.3);
  padding: 14px 18px;
  border-radius: 6px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-family: var(--font-sans);
  max-width: 720px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-banner.is-in { opacity: 1; transform: translateY(0); }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-btn {
  background: var(--ember);
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 80px; }
  .cookie-btn { width: 100%; }
}

/* ---------- Hamburger móvil (Fix 15) ---------- */
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--paper);
  margin: 4px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav.is-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(15, 13, 11, 0.98);
    backdrop-filter: blur(16px);
    padding: 100px 24px 40px;
    flex-direction: column;
    display: flex !important;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    height: 100vh;
    z-index: 40;
  }
  .nav.is-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 18px; letter-spacing: 0.1em; }
  .nav-cta { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
}

/* ---------- HERO STORYTELLING (Fix 12) ---------- */
.hero-story {
  position: relative;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
.story-act {
  margin-bottom: 28px;
  max-width: 580px;
}
.story-eyebrow { color: var(--smoke); margin-bottom: 12px; }
.story-line {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.32;
  color: rgba(244, 237, 224, 0.62);
  margin: 0;
  font-style: italic;
}
.story-strike {
  text-decoration: line-through;
  text-decoration-color: rgba(199, 90, 42, 0.6);
  text-decoration-thickness: 2px;
}
.story-and { display: block; margin-top: 4px; }
.story-em {
  color: var(--paper);
  font-style: normal;
  font-weight: 600;
}
.act-3 { margin-top: 18px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 18px 0 26px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title .ital { font-style: italic; color: rgba(244, 237, 224, 0.55); font-weight: 500; }

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.85);
  margin: 0 0 28px;
  max-width: 540px;
}
.hero-sub strong { color: var(--gold); font-weight: 600; }
.hero-sub em { color: var(--ember); font-style: italic; font-weight: 500; }

/* Precio strip (Fix 2 — visible pero sereno, no asusta) */
.hero-price-strip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(184, 146, 79, 0.08);
  border: 1px solid rgba(184, 146, 79, 0.28);
  border-radius: 3px;
  margin-bottom: 28px;
  font-family: var(--font-sans);
  flex-wrap: wrap;
}
.hpi-from { font-size: 11px; color: var(--smoke); letter-spacing: 0.14em; text-transform: uppercase; }
.hpi-amount { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--gold); }
.hpi-per { font-size: 13px; color: rgba(244, 237, 224, 0.7); }
.hpi-sep { color: var(--smoke); opacity: 0.6; }
.hpi-note { font-size: 12.5px; color: rgba(244, 237, 224, 0.72); }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.btn-lg { padding: 16px 28px; font-size: 15px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ht-item { display: grid; gap: 4px; }
.ht-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.ht-lbl { font-size: 11px; color: var(--smoke); letter-spacing: 0.12em; text-transform: uppercase; }
.ht-sep { width: 1px; height: 32px; background: rgba(184, 146, 79, 0.3); }

.hero-photo-wrap { display: flex; justify-content: center; }
.hero-photo { aspect-ratio: 4/5; width: 100%; max-width: 480px; }

@media (max-width: 900px) {
  .hero-story { padding: 100px 0 50px; }
  .hero-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-line { font-size: 18px; }
  .hero-title { font-size: 44px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-lg { justify-content: center; }
  .ht-sep { display: none; }
  .hero-trust { gap: 18px; }
}

/* ---------- Método CTA al final ---------- */
.metodo-cta { text-align: center; margin-top: 60px; }

/* ---------- Premios destacado (Fix 19) ---------- */
.prize-hero {
  margin-top: 80px;
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(180deg, rgba(184, 146, 79, 0.06) 0%, transparent 100%);
  border-top: 1px solid rgba(184, 146, 79, 0.2);
  border-bottom: 1px solid rgba(184, 146, 79, 0.2);
}
.prize-amount {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 12px;
}
.prize-cur { font-size: 48px; font-weight: 500; margin-right: 4px; opacity: 0.85; }
.prize-num { font-size: clamp(60px, 10vw, 120px); font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.prize-label {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--paper);
  margin-bottom: 18px;
}
.prize-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(244, 237, 224, 0.75);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ---------- Egresados Instagram link (Fix 6 prep) ---------- */
.egresado-ig {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ember);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.egresado-ig:hover { border-color: var(--ember); }
.egresados-totals { text-align: center; }
.egresados-totals .btn { margin-top: 28px; }

/* ---------- Founder section (Fix 14) ---------- */
.founder { padding: 120px 0; }
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: center;
}
.founder-photo-wrap .photo-ph { aspect-ratio: 4/5; }
.founder-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.04;
  margin: 16px 0 26px;
}
.founder-body .ember { color: var(--ember); font-style: italic; }
.founder-lead {
  font-size: 18px;
  color: rgba(244, 237, 224, 0.82);
  line-height: 1.55;
  margin-bottom: 22px;
}
.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--paper);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin-bottom: 30px;
}
.founder-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 10px;
  color: rgba(244, 237, 224, 0.78);
  font-size: 15px;
}
.founder-stats li { display: flex; gap: 10px; }
.founder-stats span { color: var(--gold); }
.founder-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--smoke);
  padding: 12px 16px;
  background: rgba(184, 146, 79, 0.06);
  border: 1px dashed rgba(184, 146, 79, 0.3);
  border-radius: 4px;
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder { padding: 80px 0; }
}

/* ---------- Garantía / Comunidad (Fix 13) ---------- */
.garantia { padding: 120px 0; }
.garantia-card { max-width: 1080px; margin: 0 auto; text-align: center; }
.garantia-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 14px 0 22px;
}
.garantia-card h2 em { font-style: italic; color: var(--ember); }
.garantia-card .ember { color: var(--ember); }
.garantia-lead {
  font-size: 18px;
  color: rgba(15, 13, 11, 0.75);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 56px;
}
.garantia-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.gp-item {
  background: rgba(15, 13, 11, 0.04);
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid rgba(184, 146, 79, 0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gp-item:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -20px rgba(15, 13, 11, 0.25); }
.gp-num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.gp-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 12px;
}
.gp-item p {
  font-size: 14.5px;
  color: rgba(15, 13, 11, 0.7);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .garantia-pillars { grid-template-columns: 1fr; gap: 16px; }
  .garantia { padding: 80px 0; }
}

/* ---------- Plan badge "más elegido" ---------- */
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ember);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-card.elite { position: relative; }
.planes-sub {
  font-size: 14px;
  color: var(--smoke);
  max-width: 540px;
  margin: 12px auto 0;
  text-align: center;
}

/* ---------- CTA final reassure ---------- */
.cta-final-reassure {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--smoke);
  text-align: center;
  letter-spacing: 0.04em;
}
.cta-final-ctas { flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-final-ctas .btn-lg { min-width: 220px; }

/* ---------- Mobile UX (Fix 15) ---------- */
@media (max-width: 900px) {
  .container { padding: 0 18px; }
  body, p { font-size: 16px; }
  .btn { min-height: 44px; }
  .planes-grid { grid-template-columns: 1fr; gap: 16px; }
  .instructores-grid, .egresados-grid { grid-template-columns: 1fr; }
}

/* Hamburger override viewport stop scroll when open */
body.nav-open { overflow: hidden; }

/* ════════════════════════════════════════════════════════════
   HERO VSL — mobile-first (video manda primer fold en celular)
   ════════════════════════════════════════════════════════════ */

.hero-vsl {
  padding: 100px 0 60px;
  position: relative;
}
.hero-vsl-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

/* === ORDEN: copy-top → video → copy-bottom (decisión 29-may) === */
.hv-copy-top    { order: 1; }
.hv-vsl-wrap    { order: 2; }
.hv-copy-bottom { order: 3; display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; }
.hv-copy-bottom .hv-ctas { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 380px; }
.hv-copy-bottom .hv-ctas .btn { width: 100%; }

/* VSL frame */
.hv-vsl-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0A0908;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 79, 0.22);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.6);
}
.hv-vsl-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #0A0908;
  object-fit: cover;
}
.hv-vsl-video.is-playing { z-index: 2; }

/* Overlay "Toca para escuchar" — autoplay muted UX */
.hv-vsl-unmute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 4;
  transition: opacity .35s ease, transform .35s ease;
  user-select: none;
  padding: 4px;
  /* Reset estilos default de <button> */
  background: transparent;
  border: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: rgba(232,116,60,0.3);
  touch-action: manipulation;
}
.hv-vsl-unmute.is-hidden { opacity: 0; pointer-events: none; }
.hv-vsl-unmute:active { transform: translate(-50%, -50%) scale(0.95); }
.hv-vsl-unmute-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232,116,60,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F0D0B;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  animation: pulseUnmute 2s ease-in-out infinite;
}
.hv-vsl-unmute-label {
  background: rgba(15,13,11,0.78);
  color: #F5EFE6;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}
@keyframes pulseUnmute {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 0 0 rgba(232,116,60,0.55); }
  50% { transform: scale(1.06); box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 0 16px rgba(232,116,60,0); }
}

/* Poster overlay */
.hv-vsl-poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  z-index: 3;
  background:
    radial-gradient(circle at center, rgba(15,13,11,0.35) 0%, rgba(15,13,11,0.78) 75%),
    linear-gradient(135deg, #1a1714 0%, #0F0D0B 100%);
  transition: opacity .35s ease;
}
.hv-vsl-poster.is-hidden { opacity: 0; pointer-events: none; }
.hv-vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(184, 146, 79, 0.05) 0,
    rgba(184, 146, 79, 0.05) 12px,
    transparent 12px,
    transparent 24px
  );
}
.hv-vsl-ph-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(184, 146, 79, 0.4);
  border-radius: 2px;
}
.hv-vsl-ph-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(244, 237, 224, 0.55);
  text-align: center;
  line-height: 1.55;
}

.hv-vsl-play {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(199, 90, 42, 0.95);
  border: 0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 0 0 0 rgba(199, 90, 42, 0.45),
    0 12px 30px -8px rgba(199, 90, 42, 0.55);
  animation: vsl-pulse 2.4s ease-out infinite;
  transition: transform .2s ease, background .2s ease;
}
.hv-vsl-play:hover { transform: scale(1.05); background: #d76836; }
.hv-vsl-play svg { margin-left: 4px; }

@keyframes vsl-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(199, 90, 42, 0.45), 0 12px 30px -8px rgba(199, 90, 42, 0.55); }
  70%  { box-shadow: 0 0 0 22px rgba(199, 90, 42, 0), 0 12px 30px -8px rgba(199, 90, 42, 0.55); }
  100% { box-shadow: 0 0 0 0   rgba(199, 90, 42, 0), 0 12px 30px -8px rgba(199, 90, 42, 0.55); }
}

.hv-vsl-cta-row {
  position: absolute;
  bottom: 18px;
  left: 18px; right: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  color: var(--paper);
}
.hv-vsl-cta-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hv-vsl-cta-time {
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(15,13,11,0.7);
  border: 1px solid rgba(184, 146, 79, 0.35);
  padding: 3px 8px;
  border-radius: 3px;
  color: var(--gold);
}

.hv-vsl-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: rgba(244, 237, 224, 0.66);
  letter-spacing: 0.02em;
}
.hv-vsl-hint .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember);
  animation: tb-pulse 1.8s ease-in-out infinite;
}

/* Copy */
.hv-eyebrow { color: var(--smoke); margin-bottom: 14px; }
.hv-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 7.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin: 0 0 22px;
  color: var(--paper);
}
.hv-title em { font-style: italic; color: var(--gold); }
.hv-strike {
  position: relative;
  font-style: italic;
  color: rgba(244, 237, 224, 0.5);
  font-weight: 500;
}
.hv-strike::after {
  content: "";
  position: absolute;
  top: 52%; left: -2%; right: -2%;
  height: 3px;
  background: var(--ember);
  transform: rotate(-1.5deg);
  border-radius: 2px;
}
.hv-sub {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.86);
  margin: 0 0 26px;
  max-width: 540px;
}
.hv-sub strong { color: var(--gold); font-weight: 600; }
.hv-sub em { color: var(--ember); font-style: italic; font-weight: 500; }

.hv-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(184, 146, 79, 0.08);
  border: 1px solid rgba(184, 146, 79, 0.28);
  border-radius: 3px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.hv-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hv-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* === DESKTOP: apilado vertical, video centrado entre copy-top y copy-bottom === */
@media (min-width: 1024px) {
  .hero-vsl { padding: 130px 0 90px; }
  .hero-vsl-inner {
    grid-template-columns: minmax(0, 980px);
    justify-content: center;
    gap: 36px;
    align-items: center;
    text-align: center;
  }
  .hv-copy-top    { order: 1; max-width: 880px; margin: 0 auto; }
  .hv-vsl-wrap    { order: 2; width: 100%; max-width: 980px; }
  .hv-copy-bottom { order: 3; }
  .hv-title { font-size: clamp(56px, 5.6vw, 88px); }
  .hv-copy-bottom .hv-ctas { flex-direction: row; max-width: none; width: auto; }
  .hv-copy-bottom .hv-ctas .btn { width: auto; }
}

/* === MÓVIL: video manda, sin scroll para verlo === */
@media (max-width: 1023px) {
  .hero-vsl { padding: 80px 0 36px; }
  .hv-vsl-wrap { margin: 0 -18px; }       /* full-bleed móvil */
  .hv-vsl-frame { border-radius: 0; border-left: 0; border-right: 0; }
  .hv-vsl-play { width: 72px; height: 72px; }
  .hv-vsl-play svg { width: 24px; height: 24px; }
  .hv-title { font-size: 40px; line-height: 1.02; }
  .hv-sub { font-size: 16px; }
  .hv-ctas { flex-direction: column; align-items: stretch; }
  .hv-ctas .btn-lg { justify-content: center; }
  .ht-sep { display: none; }
  .hv-trust { gap: 16px; }
}

/* === Reemplazar viejo .hero-story para que no quede dead CSS pesando === */
.hero-story, .hero-story-inner, .story-act, .hero-photo-wrap { display: none; }

/* ════════════════════════════════════════════════════════════
   V3 — Feedback móvil-first (compactación + tabla + grids + modal)
   ════════════════════════════════════════════════════════════ */

/* === CONTRASTE V2 — TABLA === */
.contraste-v2 { padding: 80px 0; }
.cv2-head { text-align: center; margin-bottom: 36px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cv2-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin-top: 10px;
}
.cv2-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid rgba(184, 146, 79, 0.22);
  border-radius: 6px;
  overflow: hidden;
}
.cv2-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 14px;
}
.cv2-table thead th {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 18px;
  text-align: left;
  background: rgba(15, 13, 11, 0.6);
  color: var(--smoke);
  border-bottom: 1px solid rgba(184, 146, 79, 0.22);
}
.cv2-table thead th.cv2-us {
  color: var(--gold);
  background: linear-gradient(180deg, rgba(184, 146, 79, 0.16) 0%, rgba(184, 146, 79, 0.06) 100%);
}
.cv2-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(184, 146, 79, 0.1);
  vertical-align: top;
  line-height: 1.4;
}
.cv2-table tbody tr:last-child td { border-bottom: 0; }
.cv2-cat {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--smoke);
  text-transform: uppercase;
  width: 28%;
}
.cv2-them {
  color: rgba(244, 237, 224, 0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(199, 90, 42, 0.4);
}
.cv2-us {
  color: var(--paper);
  font-weight: 500;
  background: rgba(184, 146, 79, 0.04);
}
.cv2-check {
  color: var(--gold);
  margin-right: 6px;
  font-weight: 600;
}
@media (max-width: 700px) {
  .cv2-table thead th { font-size: 10px; padding: 12px 10px; }
  .cv2-table tbody td { padding: 12px 10px; font-size: 13px; }
  .cv2-cat { font-size: 10px; width: 30%; }
}

/* === MANIFIESTO recortado (sigue usando .manifesto-inner del CSS viejo) === */
.manifesto-inner p { margin: 0 0 24px; }

/* === MÉTODO HORIZONTAL === */
.metodo-h { padding: 100px 0; }
.metodo-h-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.metodo-h-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin: 12px 0 12px;
  letter-spacing: -0.015em;
}
.metodo-h-head .ember-it { color: var(--ember); font-style: italic; }
.metodo-h-sub { color: var(--smoke); font-size: 16px; margin: 0; }

.metodo-h-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.metodo-h-card {
  background: rgba(15, 13, 11, 0.04);
  border: 1px solid rgba(184, 146, 79, 0.22);
  border-radius: 6px;
  padding: 28px 22px 26px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.metodo-h-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -22px rgba(15, 13, 11, 0.25);
  border-color: rgba(184, 146, 79, 0.4);
}
.mhc-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.mhc-icon {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--ember);
  margin: 16px 0 6px;
  line-height: 1;
}
.mhc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}
.metodo-h-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}
.metodo-h-card p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(15, 13, 11, 0.72);
  margin: 0;
}
.metodo-h-line {
  position: absolute;
  top: 50%;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 146, 79, 0.4) 50%, transparent 100%);
  z-index: -1;
  display: none; /* sólo decorativo en desktop si quieres encenderla */
}
.metodo-h-cta { text-align: center; margin-top: 44px; }

@media (max-width: 900px) {
  .metodo-h { padding: 70px 0; }
  .metodo-h-row { grid-template-columns: 1fr; gap: 14px; }
  .metodo-h-card { padding: 22px 20px; }
  .mhc-icon { font-size: 30px; margin: 12px 0 4px; }
  .metodo-h-card h3 { font-size: 20px; }
}

/* === MÓDULOS V2 === */
.modulos-v2 { padding: 100px 0; }
.m2-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.m2-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 56px);
  margin: 10px 0 0;
}
.m2-head .gold-it { color: var(--gold); font-style: italic; }
.m2-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.m2-card {
  background: rgba(184, 146, 79, 0.04);
  border: 1px solid rgba(184, 146, 79, 0.2);
  border-radius: 5px;
  padding: 22px 18px 20px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.m2-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 146, 79, 0.45);
  background: rgba(184, 146, 79, 0.08);
}
.m2-card.is-elite {
  background: linear-gradient(180deg, rgba(199, 90, 42, 0.12) 0%, rgba(199, 90, 42, 0.04) 100%);
  border-color: rgba(199, 90, 42, 0.55);
}
.m2-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}
.m2-card.is-elite .m2-num { color: var(--ember); }
.m2-title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 10px;
  font-weight: 500;
}
.m2-body {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.72);
}
.m2-elite-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ember);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .modulos-v2 { padding: 70px 0; }
  .m2-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .m2-card.is-elite { grid-column: span 2; }
  .m2-card { padding: 18px 14px; }
}

/* === EVALUACIÓN V2 + premios arriba === */
.evalv2 { padding: 90px 0; }
.evalv2-prize {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  padding: 32px 30px;
  background: rgba(244, 237, 224, 0.06);
  border: 1px solid rgba(184, 146, 79, 0.34);
  border-radius: 6px;
  margin-bottom: 56px;
}
.ev2p-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.ev2p-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
  margin-top: 8px;
}
.ev2p-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.86);
  margin: 0;
}
.ev2p-text em { font-style: italic; color: var(--gold); }
@media (max-width: 800px) {
  .evalv2-prize {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
    text-align: left;
  }
  .ev2p-amount { font-size: 44px; }
  .ev2p-text { font-size: 14px; }
}

.evalv2-head { text-align: center; max-width: 760px; margin: 0 auto 38px; }
.evalv2-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  margin: 10px 0 0;
}
.evalv2-head .ev2-em { color: var(--gold); font-style: italic; display: inline-block; margin-top: 6px; }

.evalv2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ev2-card {
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid rgba(244, 237, 224, 0.12);
  padding: 22px 20px;
  border-radius: 5px;
}
.ev2-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.ev2-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--paper);
}
.ev2-card p {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(244, 237, 224, 0.72);
  margin: 0;
}
@media (max-width: 900px) {
  .evalv2 { padding: 60px 0; }
  .evalv2-grid { grid-template-columns: repeat(2, 1fr); }
  .ev2-card { padding: 16px 14px; }
  .ev2-card h3 { font-size: 18px; }
}

/* === EGRESADOS V2 — grid 2col móvil === */
.egr-v2 { padding: 90px 0; }
.egrv2-head { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.egrv2-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.1;
  margin: 10px 0 12px;
}
.egrv2-head .sub { color: var(--smoke); font-size: 15px; font-style: italic; }

.egrv2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
@media (min-width: 1100px) {
  .egrv2-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1400px) {
  .egrv2-grid { grid-template-columns: repeat(6, 1fr); }
}
.egrv2-card {
  background: #fff;
  border: 1px solid rgba(15, 13, 11, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.egrv2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -20px rgba(15, 13, 11, 0.18);
  border-color: rgba(184, 146, 79, 0.5);
}
.egrv2-card .photo-ph { aspect-ratio: 3/4; }
.egrv2-body { padding: 16px 16px 18px; }
.egrv2-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.egrv2-cifra {
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 8px;
}
.egrv2-cifra .num { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.egrv2-cifra .per { font-family: var(--font-sans); font-size: 12px; color: var(--smoke); margin-left: 4px; }
.egrv2-quote {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: rgba(15, 13, 11, 0.72);
  line-height: 1.4;
  margin: 0 0 12px;
}
.egrv2-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 13, 11, 0.08);
}
.egrv2-ctx {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}
.egrv2-ig {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.egrv2-ig:hover { border-color: var(--ember); }

.egrv2-cta { text-align: center; margin-top: 40px; }

@media (max-width: 1100px) { .egrv2-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  {
  .egrv2-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .egrv2-body { padding: 12px 12px 14px; }
  .egrv2-name { font-size: 15px; }
  .egrv2-cifra .num { font-size: 18px; }
  .egrv2-quote { font-size: 12.5px; }
  .egrv2-ctx, .egrv2-ig { font-size: 9.5px; }
  .egr-v2 { padding: 60px 0; }
}

/* === INSTRUCTORES V2 === */
.instv2 { padding: 90px 0; }
.instv2-head { text-align: center; max-width: 720px; margin: 0 auto 38px; }
.instv2-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.2vw, 50px);
  margin: 10px 0 10px;
}
.instv2-head p { color: rgba(244, 237, 224, 0.72); font-size: 15px; }

.instv2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.instv2-card {
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid rgba(244, 237, 224, 0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.instv2-card:hover { transform: translateY(-3px); border-color: rgba(184, 146, 79, 0.4); }
.instv2-card .photo-ph { aspect-ratio: 3/4; }
.instv2-body { padding: 16px 16px 18px; }
.instv2-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 4px;
}
.instv2-spec {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 4px;
}
.instv2-years {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--smoke);
  margin-bottom: 8px;
}
.instv2-quote {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-style: italic;
  color: rgba(244, 237, 224, 0.78);
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 800px) {
  .instv2 { padding: 60px 0; }
  .instv2-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .instv2-body { padding: 12px; }
  .instv2-name { font-size: 16px; }
  .instv2-quote { font-size: 12.5px; }
}

/* === SEDES — embed Google Maps === */
.sede-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.sede-map { min-height: 280px; border-radius: 4px; overflow: hidden; }

/* === CALENDAR MODAL === */
.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 11, 0.78);
  backdrop-filter: blur(6px);
  animation: cal-fade .25s ease;
}
.cal-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  background: var(--paper);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  animation: cal-slide .35s cubic-bezier(.2, .7, .25, 1);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.cal-head {
  padding: 22px 26px 14px;
  border-bottom: 1px solid rgba(15, 13, 11, 0.1);
}
.cal-head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin: 6px 0 4px;
}
.cal-head p { font-size: 13.5px; color: var(--smoke); margin: 0; }
.cal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 12px;
  z-index: 3;
}
.cal-close:hover { color: var(--ember); }
.cal-fallback {
  text-align: center;
  padding: 12px 20px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--smoke);
  border-top: 1px solid rgba(15, 13, 11, 0.08);
  background: rgba(15, 13, 11, 0.02);
}
.cal-fallback a { color: var(--ember); font-weight: 600; }

@keyframes cal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cal-slide {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@media (max-width: 600px) {
  .cal-modal { padding: 0; }
  .cal-frame { max-height: 100vh; border-radius: 0; height: 100vh; }
  .cal-head { padding: 18px 20px 12px; }
  .cal-head h3 { font-size: 22px; }
}

/* Helpers nuevos */
.gold-it { color: var(--gold); font-style: italic; }
.ember-it { color: var(--ember); font-style: italic; }

/* ════════════════════════════════════════════════════════════
   V4 — COMPRESIÓN GLOBAL DE SCROLL
   Reduce ~45% del scroll vertical sin perder contenido
   ════════════════════════════════════════════════════════════ */

/* === Padding global más apretado === */
.hero-vsl { padding: 70px 0 28px; }
.contraste-v2 { padding: 48px 0; }
.manifesto { padding: 56px 0; }
.metodo-h, .modulos-v2 { padding: 56px 0; }
.evalv2 { padding: 56px 0; }
.egr-v2 { padding: 56px 0; }
.founder { padding: 56px 0; }
.instv2 { padding: 56px 0; }
.planes { padding: 56px 0; }
.sedes { padding: 56px 0; }
.garantia { padding: 56px 0; }
.faq { padding: 56px 0; }
.cta-final { padding: 80px 0; }

@media (max-width: 900px) {
  .hero-vsl { padding: 58px 0 20px; }
  .contraste-v2 { padding: 36px 0; }
  .manifesto { padding: 40px 0; }
  .metodo-h, .modulos-v2 { padding: 40px 0; }
  .evalv2, .egr-v2, .founder, .instv2, .planes, .sedes, .garantia, .faq { padding: 40px 0; }
  .cta-final { padding: 60px 0; }
}

/* === Apretar márgenes entre header y contenido en cada sección === */
.cv2-head { margin-bottom: 24px !important; }
.metodo-h-head { margin-bottom: 32px !important; }
.metodo-h-cta { margin-top: 28px !important; }
.m2-head { margin-bottom: 32px !important; }
.evalv2-prize { margin-bottom: 36px !important; }
.evalv2-head { margin-bottom: 26px !important; }
.egrv2-head { margin-bottom: 28px !important; }
.egrv2-cta { margin-top: 28px !important; }
.instv2-head { margin-bottom: 28px !important; }
.planes-head { margin-bottom: 28px !important; }
.sedes-head { margin-bottom: 28px !important; }
.faq-head { margin-bottom: 26px !important; }

/* === Cards: menos padding interno === */
@media (max-width: 900px) {
  .metodo-h-card { padding: 18px 16px !important; }
  .m2-card { padding: 14px 12px !important; }
  .ev2-card { padding: 14px 12px !important; }
  .egrv2-body { padding: 10px 12px 12px !important; }
  .instv2-body { padding: 10px 12px 12px !important; }
  .plan-card { padding: 22px 18px !important; }
  .bono-card { padding: 14px 16px !important; }
}

/* === Reducir tamaño tipográfico ligeramente en móvil (sin perder legibilidad) === */
@media (max-width: 900px) {
  .cv2-head h2, .metodo-h-head h2, .m2-head h2,
  .evalv2-head h2, .egrv2-head h2, .instv2-head h2,
  .planes-head h2, .sedes-head h2, .faq-head h2 {
    font-size: 26px !important;
    line-height: 1.15 !important;
  }
  .cta-final h2 { font-size: 32px !important; line-height: 1.1 !important; }
  .eyebrow { font-size: 11px !important; }
}

/* === Sede block: menos espacio entre bloques === */
.sede-block { margin-bottom: 36px !important; gap: 24px !important; }
@media (max-width: 900px) { .sede-block { margin-bottom: 28px !important; gap: 16px !important; } }
.sede-map { min-height: 220px !important; }
@media (max-width: 900px) { .sede-map { min-height: 200px !important; } }

/* === Manifest: compacto y limpio === */
.manifesto-inner p { margin: 0 0 14px !important; font-size: 22px !important; line-height: 1.4 !important; }
@media (max-width: 900px) {
  .manifesto-inner p { font-size: 18px !important; margin: 0 0 12px !important; }
}
.manifesto-inner { padding: 0 24px !important; }
.manifesto-sig { margin-top: 24px !important; }
.gold-line { margin: 24px auto !important; }

/* === FAQ items: menos aire === */
.faq-item { margin: 0 !important; }
.faq-q { padding: 16px 0 !important; font-size: 15px !important; }
@media (max-width: 900px) { .faq-q { font-size: 14px !important; padding: 14px 0 !important; } }
.faq-a-inner { padding: 0 0 16px !important; font-size: 14px !important; }

/* === Footer compacto === */
.footer { padding: 48px 0 28px !important; }
@media (max-width: 900px) { .footer { padding: 36px 0 20px !important; } }

/* === Hero: comprimir trust bar y CTA === */
.hv-trust { gap: 14px !important; }
.hv-ctas { margin-bottom: 18px !important; gap: 10px !important; }
.hv-price { margin-bottom: 18px !important; padding: 8px 14px !important; }
.hv-sub { margin: 0 0 18px !important; font-size: 15.5px !important; line-height: 1.5 !important; }
@media (max-width: 900px) {
  .hv-title { font-size: 32px !important; line-height: 1.05 !important; margin: 0 0 14px !important; }
  .hv-sub { font-size: 14.5px !important; margin: 0 0 14px !important; }
  .hv-trust { gap: 12px !important; }
  .ht-num { font-size: 22px !important; }
  .ht-lbl { font-size: 10px !important; }
  .hv-eyebrow { margin-bottom: 10px !important; }
}

/* === Garantía pilares más compactos === */
.garantia-pillars { gap: 14px !important; }
.gp-item { padding: 18px 16px !important; }
.gp-item h3 { font-size: 17px !important; margin: 0 0 8px !important; }
.gp-item p { font-size: 13px !important; }
.garantia-lead { margin: 0 auto 28px !important; font-size: 16px !important; }
@media (max-width: 900px) { .garantia-lead { font-size: 14.5px !important; margin: 0 auto 20px !important; } }

/* === Egresados card: foto más compacta === */
.egrv2-card .photo-ph { aspect-ratio: 4/4 !important; }
@media (max-width: 800px) { .egrv2-card .photo-ph { aspect-ratio: 1/1 !important; } }
.instv2-card .photo-ph { aspect-ratio: 4/4 !important; }
@media (max-width: 800px) { .instv2-card .photo-ph { aspect-ratio: 1/1 !important; } }

/* === Spacing entre planes === */
.planes-grid { gap: 14px !important; }
@media (max-width: 900px) { .planes-grid { gap: 10px !important; } }

/* === Evaluación grid más compacta === */
.evalv2-grid { gap: 10px !important; }

/* === Quitar margen entre secciones consecutivas si son del mismo color === */
.section-paper + .section-paper, .section-ink + .section-ink {
  padding-top: 0 !important;
}

/* === Sticky CTA un poco más bajo para no estorbar === */
.sticky-cta { padding: 8px 12px calc(8px + env(safe-area-inset-bottom)) !important; }
.sc-btn { min-height: 42px !important; font-size: 13.5px !important; }
@media (max-width: 900px) { body { padding-bottom: 64px !important; } }

/* ════════════════════════════════════════════════════════════
   V4 — COMBO Programa + Founder-mini en Garantía
   ════════════════════════════════════════════════════════════ */

/* === Combo Método + Módulos === */
.combo { padding: 60px 0; }
@media (max-width: 900px) { .combo { padding: 44px 0; } }

.combo-head, .combo-mod-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 22px;
}
.combo-mod-head { margin-top: 56px; }
@media (max-width: 900px) { .combo-mod-head { margin-top: 36px; } }

.combo-head h2, .combo-mod-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  margin: 6px 0 0;
}

.combo-metodo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}
.combo-mcard {
  background: rgba(15, 13, 11, 0.04);
  border: 1px solid rgba(184, 146, 79, 0.22);
  border-radius: 5px;
  padding: 18px 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.combo-mcard:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 146, 79, 0.45);
  box-shadow: 0 14px 30px -20px rgba(15, 13, 11, 0.22);
}
.cmc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cmc-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.cmc-icon {
  font-family: var(--font-display);
  color: var(--ember);
  font-size: 22px;
  line-height: 1;
}
.cmc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-left: auto;
}
.combo-mcard h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--ink);
}
.combo-mcard p {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(15, 13, 11, 0.72);
  margin: 0;
}

.combo-mods {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.combo-modcard {
  position: relative;
  background: rgba(15, 13, 11, 0.03);
  border: 1px solid rgba(184, 146, 79, 0.22);
  border-radius: 4px;
  padding: 16px 14px;
  transition: transform .25s ease, border-color .25s ease;
}
.combo-modcard:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 146, 79, 0.45);
}
.combo-modcard.is-elite {
  background: linear-gradient(180deg, rgba(199, 90, 42, 0.12) 0%, rgba(199, 90, 42, 0.03) 100%);
  border-color: rgba(199, 90, 42, 0.55);
}
.cmc2-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.combo-modcard.is-elite .cmc2-num { color: var(--ember); }
.cmc2-title {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 500;
}
.cmc2-body {
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(15, 13, 11, 0.68);
}
.cmc2-tag {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ember);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.combo-cta { text-align: center; margin-top: 28px; }

@media (max-width: 900px) {
  .combo-metodo { grid-template-columns: 1fr; gap: 10px; }
  .combo-mods { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .combo-modcard.is-elite { grid-column: span 2; }
  .combo-mcard { padding: 14px 14px; }
  .combo-mcard h3 { font-size: 17px; }
}

/* === Founder mini (dentro de Garantía) === */
.founder-mini {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  margin-bottom: 36px;
  background: rgba(15, 13, 11, 0.04);
  border: 1px solid rgba(184, 146, 79, 0.22);
  border-radius: 6px;
}
.fm-photo { width: 480px; max-width: 100%; }
.fm-photo .photo-ph { aspect-ratio: 1/1; border-radius: 4px; }
.fm-body { min-width: 0; }
.fm-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.18;
  margin: 6px 0 8px;
  color: var(--ink);
}
.fm-title .ember { color: var(--ember); font-style: italic; }
.fm-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(15, 13, 11, 0.78);
  margin: 0 auto 10px;
  padding: 0 8px;
  text-align: center;
  max-width: 540px;
}
.fm-quote strong { font-style: normal; font-weight: 700; color: var(--ink); }
.fm-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--smoke);
  text-transform: uppercase;
}
.fm-stats li { display: inline; }

@media (max-width: 700px) {
  .founder-mini {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    text-align: center;
  }
  .fm-photo { width: 336px; max-width: 90%; margin: 0 auto; }
  .fm-title { font-size: 18px; }
  .fm-quote { font-size: 13.5px; text-align: center; padding: 0 8px; }
  .fm-stats { justify-content: center; font-size: 10px; }
}

/* ════════════════════════════════════════════════════════════
   V5 — PLANES HORIZONTALES (filas en vez de cards verticales)
   ════════════════════════════════════════════════════════════ */

/* Override del grid vertical: ahora es lista de filas */
.planes-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  max-width: 1080px;
  margin: 0 auto;
}

.plan-card {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr 1.5fr auto !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 18px 22px !important;
  background: #fff !important;
  border: 1px solid rgba(184, 146, 79, 0.22) !important;
  border-radius: 6px !important;
  position: relative !important;
  text-align: left !important;
  min-height: auto !important;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.plan-card::before { display: none !important; }
.plan-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(184, 146, 79, 0.5) !important;
  box-shadow: 0 14px 28px -18px rgba(15,13,11,0.2) !important;
}
.plan-card.elite {
  background: linear-gradient(90deg, rgba(199, 90, 42, 0.04) 0%, rgba(199, 90, 42, 0.02) 100%) !important;
  border-color: rgba(199, 90, 42, 0.55) !important;
  border-width: 1.5px !important;
}

/* Columna 1: nombre + tagline */
.plan-card .plan-name {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  margin: 0 0 4px !important;
  color: var(--ink) !important;
  line-height: 1.1 !important;
}
.plan-card .plan-tagline {
  font-family: var(--font-sans) !important;
  font-size: 12.5px !important;
  color: var(--smoke) !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

/* Columna 2: precio */
.plan-card .plan-price {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
}
.plan-card .plan-period {
  font-family: var(--font-mono) !important;
  font-size: 10.5px !important;
  color: var(--smoke) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin-top: 4px !important;
}

/* Columna 3: features como chips compactas */
.plan-card .plan-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 4px 10px !important;
  font-family: var(--font-sans) !important;
  font-size: 12.5px !important;
  color: rgba(15, 13, 11, 0.72) !important;
}
.plan-card .plan-features li {
  position: relative !important;
  padding-left: 12px !important;
  line-height: 1.45 !important;
}
.plan-card .plan-features li::before {
  content: "·" !important;
  position: absolute !important;
  left: 2px !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
}

/* Columna 4: CTA */
.plan-card .btn {
  width: auto !important;
  white-space: nowrap !important;
  padding: 12px 18px !important;
  font-size: 13px !important;
  justify-content: center !important;
}

/* Badge "más elegido" */
.plan-card.elite .plan-badge {
  top: -10px !important;
  left: 22px !important;
  right: auto !important;
  transform: none !important;
}

/* Plan column wrapper para mantener orden semántico — agrupa name+tagline */
.plan-card > .plan-name + .plan-tagline { grid-column: 1; }

/* === MÓVIL: una sola columna apilada pero compacta === */
@media (max-width: 800px) {
  .plan-card {
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "name price"
      "tagline price"
      "features features"
      "cta cta" !important;
    gap: 6px 14px !important;
    padding: 16px 16px 14px !important;
  }
  .plan-card .plan-name    { grid-area: name; font-size: 19px !important; }
  .plan-card .plan-tagline { grid-area: tagline; }
  .plan-card .plan-price   { grid-area: price; font-size: 20px !important; text-align: right !important; align-self: start; }
  .plan-card .plan-period  { display: none !important; }
  .plan-card .plan-features {
    grid-area: features;
    margin-top: 6px !important;
    font-size: 11.5px !important;
    gap: 2px 8px !important;
  }
  .plan-card .btn {
    grid-area: cta;
    width: 100% !important;
    margin-top: 10px !important;
    padding: 11px 14px !important;
    font-size: 13px !important;
  }
  .plan-card.elite .plan-badge {
    top: -9px !important;
    left: 14px !important;
    font-size: 9.5px !important;
    padding: 3px 8px !important;
  }
}

/* ════════════════════════════════════════════════════════════
   V5 — minimal móvil + carrusel egresados
   ════════════════════════════════════════════════════════════ */

/* === Egresados: carrusel horizontal en móvil === */
@media (max-width: 800px) {
  .egrv2-grid {
    grid-template-columns: none !important;
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 18px 16px !important;
    margin: 0 -18px;
    gap: 10px !important;
    scrollbar-width: none;
  }
  .egrv2-grid::-webkit-scrollbar { display: none; }
  .egrv2-card {
    flex: 0 0 70%;
    scroll-snap-align: start;
    min-width: 0;
  }
}

/* === Hero compacto: aún menos aire === */
@media (max-width: 900px) {
  .hero-vsl { padding: 50px 0 16px !important; }
  .hv-title { font-size: 30px !important; line-height: 1.05 !important; margin: 0 0 12px !important; }
  .hv-sub { font-size: 14px !important; margin: 0 0 16px !important; }
  .hv-trust { gap: 10px !important; }
  .ht-num { font-size: 19px !important; }
  .ht-lbl { font-size: 9.5px !important; letter-spacing: 0.08em !important; }
  .hv-eyebrow { margin-bottom: 8px !important; font-size: 10px !important; }
  .hv-vsl-hint { margin-top: 10px !important; font-size: 11.5px !important; }
}

/* === Reduce más el aire global móvil === */
@media (max-width: 900px) {
  .egr-v2, .founder, .garantia, .planes, .sedes { padding: 32px 0 !important; }
  .egrv2-head, .garantia-head, .planes-head, .sedes-head { margin-bottom: 18px !important; }
  .cta-final { padding: 48px 0 !important; }
}

/* === Indicador "desliza" en carrusel === */
@media (max-width: 800px) {
  .egrv2-head::after {
    content: "← desliza para ver más →";
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--smoke);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.7;
  }
}

/* === Garantía con founder: 2 cols móvil para los pilares === */
@media (max-width: 700px) {
  .garantia-pillars { grid-template-columns: 1fr !important; gap: 8px !important; }
  .gp-item { padding: 14px !important; }
  .gp-item h3 { font-size: 15px !important; }
  .gp-item p { font-size: 12.5px !important; line-height: 1.5 !important; }
}

/* === Sedes: comprimir más el bloque === */
@media (max-width: 900px) {
  .sede-block { margin-bottom: 22px !important; gap: 14px !important; padding: 0 !important; }
  .sede-map { min-height: 180px !important; }
  .sede-block h3 { font-size: 22px !important; }
  .sede-addr { font-size: 13px !important; }
  .bono-card { padding: 12px 14px !important; }
  .bono-title { font-size: 13px !important; }
}

/* === CTA Final menos masivo en móvil === */
@media (max-width: 900px) {
  .cta-final h2 { font-size: 26px !important; line-height: 1.1 !important; }
  .cta-final-ctas { gap: 8px !important; }
  .cta-final-ctas .btn-lg { padding: 13px 18px !important; font-size: 13.5px !important; min-width: auto !important; }
  .cta-final-reassure { font-size: 11px !important; margin-top: 18px !important; }
}

/* ════════════════════════════════════════════════════════════
   V6 — REDUCCIÓN GLOBAL DE TAMAÑOS
   Todo más pequeño y compacto en móvil + desktop
   ════════════════════════════════════════════════════════════ */

/* === HERO títulos y CTAs === */
.hv-title { font-size: clamp(28px, 5.5vw, 56px) !important; line-height: 1.05 !important; }
.hv-sub { font-size: clamp(13px, 1.4vw, 15px) !important; line-height: 1.5 !important; }
.hv-eyebrow { font-size: 10px !important; letter-spacing: 0.16em !important; }
.btn-lg { padding: 11px 18px !important; font-size: 13px !important; }
.btn { padding: 9px 16px !important; font-size: 12.5px !important; min-height: 38px !important; }
.hv-ctas { gap: 8px !important; margin-bottom: 16px !important; }
.hv-price { padding: 7px 12px !important; margin-bottom: 14px !important; gap: 6px !important; }
.hpi-from { font-size: 9.5px !important; }
.hpi-amount { font-size: 17px !important; }
.hpi-per { font-size: 11px !important; }
.hpi-note { font-size: 11px !important; }
.hv-trust { gap: 12px !important; }
.ht-num { font-size: clamp(15px, 1.8vw, 20px) !important; }
.ht-lbl { font-size: 9px !important; letter-spacing: 0.06em !important; }
.ht-sep { height: 22px !important; }

/* === VSL frame más compacto === */
.hv-vsl-play { width: 56px !important; height: 56px !important; }
.hv-vsl-play svg { width: 20px !important; height: 20px !important; }
.hv-vsl-cta-text { font-size: 11.5px !important; }
.hv-vsl-cta-time { font-size: 10px !important; padding: 2px 6px !important; }
.hv-vsl-ph-tag { font-size: 10px !important; padding: 3px 8px !important; }
.hv-vsl-ph-label { font-size: 10px !important; }
.hv-vsl-hint { font-size: 11px !important; margin-top: 8px !important; }
.hv-vsl-hint .dot { width: 6px !important; height: 6px !important; }

/* === Nav más delgada === */
.nav-inner { padding: 12px 22px !important; }
.nav-logo { font-size: 14px !important; }
.nav-logo small { font-size: 9px !important; letter-spacing: 0.18em !important; }
.nav-links a { font-size: 11px !important; letter-spacing: 0.12em !important; }
.nav-cta .btn { padding: 8px 14px !important; font-size: 11px !important; min-height: 34px !important; }

/* === Eyebrows globales más pequeños === */
.eyebrow { font-size: 10.5px !important; letter-spacing: 0.16em !important; margin-bottom: 8px !important; }

/* === H2 de cada sección, más medido === */
section h2,
.cv2-head h2,
.metodo-h-head h2,
.m2-head h2,
.evalv2-head h2,
.egrv2-head h2,
.instv2-head h2,
.planes-head h2,
.sedes-head h2,
.faq-head h2,
.combo-head h2,
.combo-mod-head h2,
.garantia-card h2 {
  font-size: clamp(22px, 3.2vw, 36px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
}
.cta-final h2 { font-size: clamp(26px, 4vw, 44px) !important; }

/* === Cards globales: padding y tipografía más sobrios === */
.combo-mcard, .combo-modcard, .ev2-card, .gp-item, .metodo-h-card, .m2-card {
  padding: 14px 14px !important;
}
.combo-mcard h3 { font-size: 17px !important; }
.combo-mcard p { font-size: 12.5px !important; line-height: 1.45 !important; }
.cmc-num, .cmc2-num, .ev2-num, .gp-num { font-size: 11.5px !important; }
.cmc2-title { font-size: 10px !important; }
.cmc2-body { font-size: 12px !important; line-height: 1.4 !important; }
.ev2-card h3 { font-size: 16px !important; }
.ev2-card p { font-size: 12px !important; line-height: 1.45 !important; }
.gp-item h3 { font-size: 15px !important; }
.gp-item p { font-size: 12.5px !important; }

/* === Egresados más sobrios === */
.egrv2-name { font-size: 16px !important; }
.egrv2-cifra .num { font-size: 19px !important; }
.egrv2-cifra .per { font-size: 11px !important; }
.egrv2-quote { font-size: 12.5px !important; }
.egrv2-ctx { font-size: 9.5px !important; }
.egrv2-ig { font-size: 10.5px !important; }
.egrv2-body { padding: 12px 14px 13px !important; }

/* === Instructores === */
.instv2-name { font-size: 16px !important; }
.instv2-spec { font-size: 10px !important; }
.instv2-years { font-size: 10px !important; }
.instv2-quote { font-size: 12px !important; line-height: 1.4 !important; }
.instv2-body { padding: 12px 14px 13px !important; }
.instv2-head p { font-size: 13px !important; }

/* === Planes horizontales más sutiles === */
.plan-card { padding: 14px 18px !important; gap: 16px !important; }
.plan-card .plan-name { font-size: 17px !important; }
.plan-card .plan-tagline { font-size: 11.5px !important; }
.plan-card .plan-price { font-size: 18px !important; }
.plan-card .plan-period { font-size: 9.5px !important; }
.plan-card .plan-features { font-size: 11.5px !important; gap: 3px 8px !important; }
.plan-card .btn { padding: 9px 14px !important; font-size: 11.5px !important; }
.plan-badge { font-size: 9.5px !important; padding: 3px 9px !important; top: -8px !important; }
.planes-sub { font-size: 12.5px !important; }

/* === Premios destacados más serenos === */
.evalv2-prize { padding: 22px 22px !important; gap: 24px !important; margin-bottom: 28px !important; }
.ev2p-amount { font-size: clamp(32px, 4vw, 48px) !important; }
.ev2p-label { font-size: 10.5px !important; }
.ev2p-text { font-size: 13px !important; line-height: 1.5 !important; }

/* === Contraste table === */
.cv2-table thead th { font-size: 9.5px !important; padding: 11px 14px !important; }
.cv2-table tbody td { font-size: 12.5px !important; padding: 11px 14px !important; }
.cv2-cat { font-size: 9.5px !important; }

/* === Manifesto compacto === */
.manifesto-inner p { font-size: clamp(15px, 2vw, 19px) !important; line-height: 1.4 !important; margin: 0 0 10px !important; }
.manifesto-eyebrow { font-size: 10px !important; }
.manifesto-sig { font-size: 11px !important; margin-top: 18px !important; letter-spacing: 0.12em !important; }

/* === Sedes === */
.sede-block h3 { font-size: 20px !important; }
.sede-addr { font-size: 12.5px !important; margin-bottom: 12px !important; }
.sede-tag { font-size: 9.5px !important; padding: 3px 8px !important; letter-spacing: 0.14em !important; }
.bono-card { padding: 13px 15px !important; }
.bono-title { font-size: 12.5px !important; }
.bono-sub { font-size: 11.5px !important; }
.bono-meta { font-size: 10.5px !important; }
.cd-cell .v { font-size: 22px !important; }
.cd-cell .l { font-size: 9.5px !important; }
.sede-ctas .btn { padding: 9px 14px !important; font-size: 11.5px !important; }

/* === Garantía pilares === */
.garantia-lead { font-size: 13.5px !important; margin: 0 auto 22px !important; }

/* === Founder mini === */
.fm-title { font-size: 17px !important; }
.fm-quote { font-size: 13px !important; line-height: 1.4 !important; padding: 0 8px !important; text-align: center !important; }
.fm-stats { font-size: 10px !important; }

/* === FAQ === */
.faq-q { font-size: 13.5px !important; padding: 13px 0 !important; }
.faq-a-inner { font-size: 13px !important; line-height: 1.55 !important; }

/* === CTA final === */
.cta-final-ctas .btn-lg { padding: 12px 18px !important; font-size: 13px !important; min-width: 200px !important; }
.cta-final-reassure { font-size: 11px !important; margin-top: 18px !important; }

/* === Footer más discreto === */
.footer h4 { font-size: 11px !important; letter-spacing: 0.14em !important; }
.footer a { font-size: 12.5px !important; }
.footer-tag { font-size: 12px !important; line-height: 1.5 !important; }
.footer-logo { font-size: 14px !important; letter-spacing: 0.04em !important; }
.footer-bottom { font-size: 11px !important; }

/* === Sticky CTA más fino === */
.sticky-cta { padding: 6px 10px calc(6px + env(safe-area-inset-bottom)) !important; gap: 6px !important; }
.sc-btn { min-height: 38px !important; font-size: 12px !important; padding: 9px 12px !important; }
@media (max-width: 900px) { body { padding-bottom: 56px !important; } }

/* === Padding global de secciones más bajo === */
@media (max-width: 900px) {
  .hero-vsl { padding: 46px 0 16px !important; }
  .contraste-v2 { padding: 28px 0 !important; }
  .manifesto { padding: 32px 0 !important; }
  .combo, .metodo-h, .modulos-v2 { padding: 32px 0 !important; }
  .evalv2, .egr-v2, .founder, .instv2, .planes, .sedes, .garantia, .faq { padding: 32px 0 !important; }
  .cta-final { padding: 44px 0 !important; }
  .footer { padding: 28px 0 18px !important; }
}

/* ============================================================
   HERO BREATHING ROOM (decisión 29-may)
   - Logo de la nav pisaba el eyebrow → +padding-top
   - Eyebrow muy pegado al H1 → +margin-bottom
   - H1 muy denso → más leading + más aire arriba/abajo
   - Sub muy pegado al H1 → +margin-top
   ============================================================ */
@media (max-width: 900px) {
  .hero-vsl { padding: 88px 0 28px !important; }
  .hv-eyebrow {
    margin-bottom: 22px !important;
    font-size: 10.5px !important;
    letter-spacing: 0.18em !important;
    opacity: 0.78 !important;
  }
  .hv-title {
    font-size: 34px !important;
    line-height: 1.08 !important;
    margin: 0 0 20px !important;
    letter-spacing: -0.01em !important;
  }
  .hv-sub {
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin: 0 0 28px !important;
    opacity: 0.88 !important;
  }
  .hv-vsl-wrap { margin-top: 18px !important; }
  .hv-copy-bottom { margin-top: 22px !important; gap: 22px !important; }
}
@media (max-width: 480px) {
  .hero-vsl { padding: 76px 0 24px !important; }
  .hv-title { font-size: 30px !important; }
  .hv-eyebrow { margin-bottom: 18px !important; }
  .hv-sub { margin: 0 0 22px !important; }
}
@media (min-width: 1024px) {
  .hero-vsl { padding: 150px 0 100px !important; }
  .hv-eyebrow { margin-bottom: 26px !important; opacity: 0.78; letter-spacing: 0.2em; }
  .hv-title { margin: 0 0 28px !important; }
  .hv-sub { margin: 0 !important; }
  .hv-vsl-wrap { margin-top: 28px !important; }
  .hv-copy-bottom { margin-top: 36px !important; gap: 26px !important; }
}

/* === Topbar más fino === */
.topbar { height: 30px !important; font-size: 11px !important; }
.tb-cd { font-size: 10px !important; padding: 2px 6px !important; }
.nav { top: 30px !important; }
@media (max-width: 700px) {
  .topbar { height: 28px !important; font-size: 10px !important; }
  .nav { top: 28px !important; }
  .tb-cd { font-size: 9.5px !important; padding: 2px 5px !important; }
}

/* ════════════════════════════════════════════════════════════
   V7 — PLANES TABLA COMPARATIVA + FINANCIACIÓN
   ════════════════════════════════════════════════════════════ */

.planes-v2 { padding: 60px 0; }

/* === Strip de financiación arriba de la tabla === */
.plan-finance-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px auto 28px;
  padding: 14px 18px;
  max-width: 980px;
  background: rgba(184, 146, 79, 0.06);
  border: 1px solid rgba(184, 146, 79, 0.22);
  border-radius: 4px;
}
.pfs-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--ink);
}
.pfs-item strong { font-weight: 600; }
.pfs-ico { color: var(--gold); font-size: 10px; line-height: 1; }
.pfs-divider {
  width: 1px; height: 18px;
  background: rgba(184, 146, 79, 0.3);
}

@media (max-width: 800px) {
  .plan-finance-strip { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pfs-divider { display: none; }
  .pfs-item { font-size: 12px; }
}

/* === Tabla comparativa === */
.plans-table-wrap {
  max-width: 1080px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.plans-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--font-sans);
}

/* Header (planes) */
.plans-table thead th {
  vertical-align: top;
  padding: 18px 14px 16px;
  background: rgba(15, 13, 11, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  position: relative;
  min-width: 130px;
}
.plans-table thead th.pt-plan.is-featured {
  background: linear-gradient(180deg, rgba(199, 90, 42, 0.08) 0%, rgba(199, 90, 42, 0.03) 100%);
  border-top: 2px solid var(--ember);
}
.pt-rowlabel {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
  white-space: nowrap;
  padding-right: 18px !important;
  width: 1%;
}
.pt-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ember);
  color: #fff;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 3px 9px;
  border-radius: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pt-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 3px;
}
.pt-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--smoke);
  line-height: 1.3;
  margin-bottom: 12px;
  min-height: 28px;
}
.pt-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.015em;
}
.pt-plan.is-featured .pt-price { color: var(--ember); }
.pt-price-sub {
  font-family: var(--font-sans);
  font-size: 10.5px;
  color: var(--smoke);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.pt-total {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* Filas comparativas */
.plans-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink);
  vertical-align: middle;
}
.plans-table tbody td.pt-cell.is-featured {
  background: rgba(199, 90, 42, 0.04);
}
.plans-table tbody td.is-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}
.plans-table tbody td.is-empty {
  color: var(--smoke);
  opacity: 0.5;
}
.plans-table tbody td.pt-cta-cell {
  padding: 16px 14px;
}
.pt-cta-cell .btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 10px 12px !important;
  font-size: 11.5px !important;
  white-space: nowrap;
}
.plans-table tbody tr:last-child td { border-bottom: 0; }

/* === Strip de métodos de pago === */
.pay-methods-strip {
  margin-top: 24px;
  padding: 14px 18px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pms-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 8px;
}
.pms-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink);
}
.pms-list span:nth-child(even) { color: var(--smoke); opacity: 0.5; }

/* === Helper CTA debajo === */
.plans-cta-helper {
  text-align: center;
  margin-top: 22px;
}
.plans-cta-helper p {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--smoke);
  max-width: 480px;
  margin: 0 auto;
}
.plans-cta-helper a { color: var(--ember); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.plans-cta-helper a strong { font-weight: 600; }

/* === MÓVIL — scroll horizontal en la tabla, todo se mantiene como tabla === */
@media (max-width: 800px) {
  .planes-v2 { padding: 36px 0; }

  .plans-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -18px;
    padding: 0 18px 8px;
  }
  .plans-table { min-width: 580px; }

  /* Indicador "desliza para comparar" */
  .plans-table-wrap::after {
    content: "← desliza para comparar →";
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--smoke);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 12px;
    opacity: 0.7;
  }

  .pt-rowlabel { font-size: 9.5px !important; padding: 10px 12px !important; padding-right: 14px !important; }
  .plans-table thead th { padding: 14px 12px 12px !important; min-width: 128px; }
  .pt-name { font-size: 16px; }
  .pt-price { font-size: 18px; }
  .pt-sub { font-size: 10.5px; margin-bottom: 8px; min-height: auto; }
  .pt-price-sub { font-size: 9.5px; }
  .pt-total { font-size: 9px; }
  .plans-table tbody td { font-size: 11px !important; padding: 9px 12px !important; }
  .plans-table tbody td.is-check { font-size: 14px !important; }
  .pt-cta-cell { padding: 12px 10px !important; }
  .pt-cta-cell .btn { font-size: 10.5px !important; padding: 8px 6px !important; min-height: 34px !important; }
}

/* ════════════════════════════════════════════════════════════
   V8 — PLANES dual render: tabla desktop + cards apilados móvil
   Las clases antiguas (.planes-v2, .plans-table-wrap, .plans-table, .pt-*)
   están desactivadas con display:none por si quedaron referencias.
   ════════════════════════════════════════════════════════════ */

/* Desactivar versión anterior por si quedaron rastros */
.planes-v2, .plans-table-wrap, .plans-table { display: none !important; }

.planes-v3 { padding: 60px 0; }
.planes-v3 .planes-head { text-align: center; max-width: 720px; margin: 0 auto 22px; }

/* === Strip de financiación (compartido con versión anterior) === */
/* .plan-finance-strip ya está estilado arriba — solo overrides menores */
.planes-v3 .plan-finance-strip { margin-bottom: 32px; }

/* === DESKTOP TABLE === */
.plans-table-desk {
  max-width: 1080px;
  margin: 0 auto;
}
.ptd-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--font-sans);
}
.ptd-table thead th {
  vertical-align: top;
  padding: 18px 14px 16px;
  background: rgba(15, 13, 11, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  position: relative;
  min-width: 130px;
}
.ptd-table thead th.ptd-head.is-featured {
  background: linear-gradient(180deg, rgba(199, 90, 42, 0.08) 0%, rgba(199, 90, 42, 0.03) 100%);
  border-top: 2px solid var(--ember);
}
.ptd-rowlabel {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
  white-space: nowrap;
  padding-right: 18px !important;
  width: 1%;
}
.ptd-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ember);
  color: #fff;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 3px 9px;
  border-radius: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ptd-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 3px;
}
.ptd-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--smoke);
  line-height: 1.3;
  margin-bottom: 12px;
  min-height: 28px;
}
.ptd-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.015em;
}
.ptd-head.is-featured .ptd-price { color: var(--ember); }
.ptd-price-unit {
  font-family: var(--font-sans);
  font-size: 10.5px;
  color: var(--smoke);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.ptd-price-meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.ptd-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink);
  vertical-align: middle;
}
.ptd-table tbody td.ptd-cell.is-featured {
  background: rgba(199, 90, 42, 0.04);
}
.ptd-table tbody td.is-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}
.ptd-table tbody td.is-empty {
  color: var(--smoke);
  opacity: 0.45;
}
.ptd-table tbody td.ptd-cta-cell {
  padding: 16px 14px;
}
.ptd-cta-cell .btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 10px 12px !important;
  font-size: 11.5px !important;
  white-space: nowrap;
}
.ptd-table tbody tr:last-child td { border-bottom: 0; }

/* === MOBILE CARDS === */
.plans-cards-mob {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.pcm-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 18px 16px;
}
.pcm-card.is-featured {
  border: 1.5px solid var(--ember);
  background: linear-gradient(180deg, rgba(199, 90, 42, 0.04) 0%, #fff 60%);
}
.pcm-badge {
  position: absolute;
  top: -9px;
  left: 16px;
  background: var(--ember);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 3px 9px;
  border-radius: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pcm-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}
.pcm-headl { min-width: 0; flex: 1; }
.pcm-headr { text-align: right; flex-shrink: 0; }
.pcm-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
}
.pcm-sub {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: var(--smoke);
  line-height: 1.4;
  margin-top: 4px;
}
.pcm-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.pcm-card.is-featured .pcm-price { color: var(--ember); }
.pcm-priceunit {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--smoke);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.pcm-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  margin-top: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.pcm-features {
  list-style: none;
  padding: 12px 0 14px;
  margin: 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pcm-features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12.5px;
}
.pcm-flbl {
  color: var(--smoke);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.pcm-fval {
  color: var(--ink);
  text-align: right;
  font-weight: 500;
}
.pcm-fval.is-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}
.pcm-cta {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  padding: 11px 16px !important;
  font-size: 12.5px !important;
  white-space: nowrap;
}

/* === Breakpoint switch === */
@media (max-width: 900px) {
  .plans-table-desk { display: none; }
  .plans-cards-mob { display: flex; }
  .planes-v3 { padding: 36px 0; }
}
@media (min-width: 901px) {
  .plans-cards-mob { display: none; }
}

/* ════════════════════════════════════════════════════════════
   V9 — Manifiesto "sin tiempo fijo" sobre planes
   ════════════════════════════════════════════════════════════ */

.plan-no-tiempo {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.pnt-line {
  padding: 22px 24px;
  background: rgba(199, 90, 42, 0.04);
  border-top: 1px solid rgba(199, 90, 42, 0.22);
  border-bottom: 1px solid rgba(199, 90, 42, 0.22);
  border-radius: 0;
}
.pnt-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
  font-weight: 600;
}
.pnt-line p {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}
.pnt-line p strong { font-weight: 600; }
.pnt-line p em { font-style: italic; color: var(--ember); }

@media (max-width: 700px) {
  .pnt-line { padding: 18px 18px; }
  .pnt-line p { font-size: 14px; line-height: 1.45; }
  .pnt-tag { font-size: 9.5px; margin-bottom: 10px; }
}

/* ════════════════════════════════════════════════════════════
   V10 — ÁRBOL DE PLANES con cards desplegables
   Reemplaza tabla desktop + cards móvil (que ya estaban OK pero
   no mostraban "el árbol" visual con conector vertical).
   ════════════════════════════════════════════════════════════ */

/* Desactivar layouts anteriores */
.planes-v3, .plans-table-desk, .plans-cards-mob, .ptd-table { display: none !important; }

/* Re-activamos solo el nuevo */
section.planes-tree { display: block; padding: 56px 0; }

@media (max-width: 900px) {
  section.planes-tree { padding: 36px 0; }
}

.ptree-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}
.ptree-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 8px 0 14px;
}
.ptree-head .ember-it {
  color: var(--ember);
  font-style: italic;
}
.ptree-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--smoke);
  margin: 0;
}
.ptree-sub strong { color: var(--ink); font-weight: 600; }

/* === GRID DEL ÁRBOL === */
.ptree-grid {
  position: relative;
  max-width: 760px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 28px;
}

/* Tronco vertical del árbol */
.ptree-trunk {
  position: absolute;
  left: 13px;
  top: 30px;
  bottom: 30px;
  width: 1.5px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold) 6%,
    var(--gold) 94%,
    transparent 100%);
  opacity: 0.45;
}

/* Cards */
.ptree-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.ptree-card.is-featured {
  border-color: var(--ember);
  border-width: 1.5px;
}
.ptree-card:hover {
  border-color: rgba(184, 146, 79, 0.45);
}
.ptree-card.is-featured:hover {
  border-color: var(--ember);
  box-shadow: 0 16px 36px -22px rgba(199, 90, 42, 0.35);
}
.ptree-card.is-open {
  box-shadow: 0 14px 32px -16px rgba(15, 13, 11, 0.18);
}

/* Conector horizontal del card al tronco */
.ptree-connector {
  position: absolute;
  left: -16px;
  top: 30px;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.45;
}
.ptree-card.is-featured .ptree-connector {
  background: var(--ember);
  opacity: 0.8;
}

/* Punto en el tronco */
.ptree-card::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 27px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--gold);
  z-index: 1;
}
.ptree-card.is-featured::before {
  border-color: var(--ember);
  background: var(--ember);
}

/* === Fila header (siempre visible, clickeable) === */
.ptree-head-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: background .2s ease;
}
.ptree-head-row:hover { background: rgba(15, 13, 11, 0.02); }

.ptree-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}
.ptree-card.is-featured .ptree-num { color: var(--ember); }

.ptree-info { min-width: 0; }
.ptree-name {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 3px;
}
.ptree-pill {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ember);
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.ptree-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--smoke);
  line-height: 1.3;
}

.ptree-priceblock {
  text-align: right;
  white-space: nowrap;
}
.ptree-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.015em;
}
.ptree-card.is-featured .ptree-price { color: var(--ember); }
.ptree-priceunit {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--smoke);
  letter-spacing: 0.04em;
  margin-top: 3px;
}

/* Chevron toggle */
.ptree-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.ptree-card.is-featured .ptree-toggle { border-color: var(--ember); }
.ptree-chev {
  display: block;
  font-size: 12px;
  color: var(--ink);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  line-height: 1;
}
.ptree-card.is-featured .ptree-chev { color: var(--ember); }
.ptree-chev.is-open { transform: rotate(180deg); }

/* === Body desplegable === */
.ptree-body {
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.7,.2,1);
}
.ptree-body-inner {
  padding: 4px 18px 20px 18px;
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.ptree-card.is-featured .ptree-body-inner {
  border-top-color: rgba(199, 90, 42, 0.22);
}
.ptree-finance {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin: 14px 0 6px;
}
.ptree-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ptree-features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(15, 13, 11, 0.05);
}
.ptree-features li:last-child { border-bottom: 0; }
.ptree-flbl {
  color: var(--smoke);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ptree-fval {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}
.ptree-fval.is-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.ptree-cta {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  padding: 11px 16px !important;
  font-size: 12.5px !important;
  white-space: nowrap;
}

/* === Mobile tweaks === */
@media (max-width: 700px) {
  .ptree-grid { padding-left: 24px; gap: 10px; }
  .ptree-trunk { left: 11px; }
  .ptree-card::before { left: -17px; top: 23px; }
  .ptree-connector { left: -14px; top: 26px; width: 12px; }
  .ptree-head-row { padding: 13px 14px; gap: 10px; grid-template-columns: auto 1fr auto auto; }
  .ptree-num { font-size: 10px; }
  .ptree-name { font-size: 15px; gap: 6px; }
  .ptree-pill { font-size: 8.5px; padding: 2px 6px; }
  .ptree-sub { font-size: 11px; }
  .ptree-price { font-size: 15px; }
  .ptree-priceunit { font-size: 9px; }
  .ptree-toggle { width: 22px; height: 22px; }
  .ptree-chev { font-size: 10px; }
  .ptree-body-inner { padding: 4px 14px 16px; }
}

/* ============================================================
   FOUNDER PERKS — franja compacta que reemplazó "Comunidad de por vida"
   (decisión founder 29-may: no merece sección propia, pero vale como bullets)
   ============================================================ */
.founder-perks {
  margin-top: 28px;
  padding: 22px 24px;
  background: rgba(199, 90, 42, 0.06);
  border: 1px solid rgba(199, 90, 42, 0.18);
  border-radius: 16px;
}
.fp-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--ember);
  opacity: 0.85;
}
.fp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.fp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.fp-list strong { font-weight: 600; }
.fp-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ember);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
@media (max-width: 700px) {
  .founder-perks { margin-top: 22px; padding: 18px 18px; }
  .fp-list li { font-size: 14px; }
}
@media (min-width: 1024px) {
  .founder-perks { max-width: 720px; margin-left: auto; margin-right: auto; padding: 28px 32px; }
}

/* ============================================================
   PTREE URGENCY — banda compacta arriba de los planes
   (decisión founder 29-may: Bosa opera hoy, lead necesita ver fecha + cupos)
   ============================================================ */
.ptree-urgency {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  margin: 18px auto 26px;
  max-width: 720px;
  background: linear-gradient(90deg, rgba(199, 90, 42, 0.10) 0%, rgba(232, 116, 60, 0.08) 100%);
  border: 1px solid rgba(199, 90, 42, 0.30);
  border-radius: 12px;
  flex-wrap: wrap;
}
.pu-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #45e26a;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(70, 226, 106, 0.6);
  animation: pu-pulse 1.6s ease-in-out infinite;
}
@keyframes pu-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,226,106,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(70,226,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,226,106,0); }
}
.pu-text {
  flex: 1;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pu-text strong { font-weight: 700; }
.pu-sep { opacity: 0.5; }
.pu-cupos strong { color: var(--ember); }
.pu-cta {
  flex-shrink: 0;
  background: var(--ember);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.pu-cta:hover { background: #d76836; }
@media (max-width: 700px) {
  .ptree-urgency {
    padding: 12px 16px;
    margin: 16px -4px 22px;
    gap: 10px;
  }
  .pu-text { font-size: 13px; }
  .pu-cta { font-size: 12px; padding: 7px 14px; }
}

/* ============================================================
   FOUNDER PHOTO REAL + IG LINK (decisión 01-jun)
   - Foto de Joseth reemplaza el PhotoPH placeholder
   - Handle @el_papi_barberr linkea al IG real
   ============================================================ */
.fm-photo a {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.fm-photo a:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.fm-photo-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.fm-ig-link {
  color: var(--ember);
  font-style: italic;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity .2s ease;
}
.fm-ig-link:hover { opacity: 0.75; text-decoration: underline; }
.fm-ig-icon {
  font-size: 0.7em;
  font-style: normal;
  opacity: 0.7;
  vertical-align: super;
}

/* ============================================================
   EGRESADOS REALES — foto + link a red (decisión 01-jun)
   Reemplaza el placeholder PhotoPH por foto real con badge IG/TikTok
   ============================================================ */
.egrv2-photo-link {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4ede0;
  text-decoration: none;
}
.egrv2-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}
.egrv2-photo-link:hover .egrv2-photo-img {
  transform: scale(1.04);
  filter: saturate(1.1);
}
.egrv2-net-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(15, 13, 11, 0.85);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 700px) {
  .egrv2-net-badge { width: 26px; height: 26px; font-size: 11px; top: 8px; right: 8px; }
}

/* ============================================================
   METODO VIDEO — sección "Cómo enseñamos" (01-jun)
   Split en desktop: copy izq | video 9:16 der · Stack vertical en mobile
   ============================================================ */
.metodo-video {
  padding: 80px 0;
}
.metodo-video-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.metodo-video .mv-title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 14px 0 18px;
  font-weight: 700;
}
.mv-title em { font-style: italic; color: var(--gold); }
.mv-lead {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(15, 13, 11, 0.78);
  margin: 0 0 22px;
  max-width: 540px;
}
.mv-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
}
.mv-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.mv-bullet-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.mv-bullet-text strong { font-weight: 700; color: var(--ink); display: block; }
.mv-bullet-text > span { color: rgba(15, 13, 11, 0.62); font-size: 14px; line-height: 1.45; }
.mv-bullets strong { font-weight: 700; }
.mv-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ember);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.mv-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.mv-video-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mv-video-frame {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  background: #0F0D0B;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px -28px rgba(15, 13, 11, 0.35);
  border: 1px solid rgba(184, 146, 79, 0.18);
}
.mv-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}
.mv-video-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}
.mv-video-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

/* MOBILE: copy arriba, video abajo */
@media (max-width: 900px) {
  .metodo-video { padding: 48px 0 !important; }
  .metodo-video .mv-title { font-size: 26px !important; line-height: 1.15 !important; margin: 12px 0 16px !important; font-weight: 700 !important; }
  .metodo-video .mv-title em { font-size: inherit; }
  .mv-lead { font-size: 14.5px; line-height: 1.55; margin-bottom: 22px; }
  .mv-bullets { gap: 16px; }
  .mv-bullets li { font-size: 14.5px; gap: 10px; }
  .mv-bullet-text > span { font-size: 13.5px; }
  .mv-check { width: 20px; height: 20px; font-size: 11px; }
  .mv-video-frame { max-width: 280px; }
  .mv-video-meta { font-size: 10px; }
}

/* DESKTOP: split 2 columnas */
@media (min-width: 1024px) {
  .metodo-video { padding: 110px 0; }
  .metodo-video-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px;
    align-items: center;
  }
  .mv-copy { order: 1; }
  .mv-video-wrap { order: 2; }
  .metodo-video .mv-title { font-size: clamp(36px, 3.5vw, 50px) !important; }
  .mv-video-frame { max-width: 360px; }
}

/* ============================================================
   HERO PAPER MODE — fondo crema (decisión 01-jun)
   Antes era section-ink (negro). Ahora coincide con Egresados / Método video.
   Overrides de color para mantener legibilidad sobre crema.
   ============================================================ */
.hero-vsl.section-paper .hv-title { color: var(--ink); }
.hero-vsl.section-paper .hv-title em { color: var(--ember); }
.hero-vsl.section-paper .hv-strike { color: rgba(15, 13, 11, 0.32); }
.hero-vsl.section-paper .hv-sub { color: rgba(15, 13, 11, 0.78); }
.hero-vsl.section-paper .hv-sub strong { color: var(--ember); }
.hero-vsl.section-paper .hv-sub em { color: var(--ember); }
.hero-vsl.section-paper .ht-num { color: var(--ink); }
.hero-vsl.section-paper .ht-lbl { color: rgba(15, 13, 11, 0.55); }
.hero-vsl.section-paper .ht-sep { background: rgba(15, 13, 11, 0.18); }
.hero-vsl.section-paper .hv-vsl-hint { color: rgba(15, 13, 11, 0.6); }
.hero-vsl.section-paper .hv-vsl-hint .dot { background: var(--ember); }

/* Botón outline-paper sobre fondo crema → mejor borde oscuro */
.hero-vsl.section-paper .btn-outline-paper {
  border-color: var(--ink);
  color: var(--ink);
}
.hero-vsl.section-paper .btn-outline-paper:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Marco del video con sombra suave sobre crema */
.hero-vsl.section-paper .hv-vsl-frame {
  box-shadow: 0 20px 60px -28px rgba(15, 13, 11, 0.35);
  border: 1px solid rgba(15, 13, 11, 0.08);
}

/* ============================================================
   HERO H1 HIGHLIGHT — un solo bloque negro detrás de las 2 líneas
   (decisión 01-jun: unificado, más compacto)
   ============================================================ */
.hv-title-hl {
  display: block;
  padding: 0;
  margin: 0 0 22px;
}
.hv-title-hl .hv-hl-block {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 20px 18px;
  border-radius: 6px;
  line-height: 1.05;
}
.hero-vsl.section-paper .hv-title-hl .hv-hl-block em { color: var(--ember); font-style: italic; }
@media (max-width: 700px) {
  .hv-title-hl { margin: 0 0 18px; }
  .hv-title-hl .hv-hl-block { padding: 10px 14px 14px; border-radius: 5px; }
}
@media (min-width: 1024px) {
  .hv-title-hl .hv-hl-block { padding: 18px 28px 22px; border-radius: 8px; }
}

/* ============================================================
   HERO COMPACT 30% (decisión 01-jun)
   Reducir padding, font sizes, gaps. Hero ocupa menos viewport.
   ============================================================ */
@media (max-width: 900px) {
  .hero-vsl { padding: 92px 0 18px !important; }
  .hv-eyebrow { font-size: 9.5px !important; margin-bottom: 14px !important; letter-spacing: 0.18em !important; }
  .hv-title-hl { margin: 0 0 14px !important; }
  .hv-title-hl .hv-hl-block { padding: 8px 11px 11px !important; font-size: 24px !important; line-height: 1.1 !important; }
  .hv-sub { font-size: 13.5px !important; line-height: 1.45 !important; margin: 0 0 16px !important; }
  .hv-vsl-wrap { margin-top: 12px !important; }
  .hv-copy-bottom { margin-top: 16px !important; gap: 14px !important; }
  .hv-guarantee-chip { font-size: 11px !important; padding: 5px 11px !important; }
  .hv-ctas .btn { padding: 11px 18px !important; font-size: 13px !important; }
  .ht-num { font-size: 18px !important; }
  .ht-lbl { font-size: 9px !important; }
  .hv-vsl-hint { font-size: 11px !important; margin-top: 8px !important; }
}
@media (max-width: 480px) {
  .hero-vsl { padding: 86px 0 14px !important; }
  .hv-title-hl .hv-hl-block { padding: 7px 10px 10px !important; font-size: 22px !important; }
  .hv-sub { font-size: 13px !important; margin: 0 0 14px !important; }
}
@media (min-width: 1024px) {
  .hero-vsl { padding: 100px 0 70px !important; }
  .hv-title-hl .hv-hl-block { padding: 12px 20px 16px !important; font-size: clamp(40px, 4vw, 60px) !important; line-height: 1.05; }
  .hv-eyebrow { margin-bottom: 18px !important; }
  .hv-vsl-wrap { margin-top: 20px !important; }
  .hv-copy-bottom { margin-top: 24px !important; gap: 18px !important; }
}

/* Overlay unmute: más compacto (botón + label más pequeños) */
.hv-vsl-unmute-icon {
  width: 56px !important;
  height: 56px !important;
}
.hv-vsl-unmute-icon svg { width: 22px !important; height: 22px !important; }
.hv-vsl-unmute-label {
  font-size: 11.5px !important;
  padding: 6px 12px !important;
}
@media (max-width: 480px) {
  .hv-vsl-unmute-icon { width: 48px !important; height: 48px !important; }
  .hv-vsl-unmute-icon svg { width: 19px !important; height: 19px !important; }
  .hv-vsl-unmute-label { font-size: 10.5px !important; padding: 5px 10px !important; }
}

/* ============================================================
   UNMUTE BAR — botón arriba del video (NO superpuesto)
   Movido fuera del frame porque <video controls> intercepta clicks
   (decisión 01-jun)
   ============================================================ */
.hv-vsl-unmute-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  margin: 0 0 10px;
  background: var(--ember);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px -12px rgba(232, 116, 60, 0.6);
  -webkit-tap-highlight-color: rgba(232,116,60,0.3);
  touch-action: manipulation;
  transition: background .2s ease, transform .15s ease, opacity .3s ease;
  animation: pulseUnmute 2s ease-in-out infinite;
}
.hv-vsl-unmute-bar:hover { background: #d76836; }
.hv-vsl-unmute-bar:active { transform: scale(0.98); }
.hv-vsl-unmute-bar.is-hidden { display: none; }
.hv-vsl-unmute-bar .hv-vsl-unmute-icon {
  background: rgba(255,255,255,0.18);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  animation: none;
  box-shadow: none;
}
.hv-vsl-unmute-bar .hv-vsl-unmute-label {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-size: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
}
@media (max-width: 480px) {
  .hv-vsl-unmute-bar { padding: 12px 14px; font-size: 12.5px; gap: 8px; }
  .hv-vsl-unmute-bar .hv-vsl-unmute-icon { width: 30px; height: 30px; }
  .hv-vsl-unmute-bar .hv-vsl-unmute-icon svg { width: 16px; height: 16px; }
}
