/* ============================================================
   Despega con IA · Landing — Executive Lab
   Sistema de diseño de executive-lab-venta:
   DM Serif Display (titulares, em cursiva acento) + Lato (cuerpo)
   Dark #0A0A0A · Paper #FBF8F3 · Acento #EC4429
   ============================================================ */

:root {
  --dark: #0A0A0A;
  --paper: #FBF8F3;
  --white: #ffffff;
  --ink: #0A0A0A;
  --ink-body: #3A3A3A;
  --ink-muted: #6E6E6E;
  --on-dark: rgba(255, 255, 255, .78);
  --on-dark-muted: rgba(255, 255, 255, .55);
  --accent: #EC4429;
  --accent-hover: #C5361E;
  --card-border: rgba(10, 10, 10, .08);
  --radius: 14px;
  --maxw: 1120px;
}

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

img, svg, video, iframe { max-width: 100%; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -.01em;
}
h1 em, h2 em {
  color: var(--accent);
  font-style: italic;
}

.kicker {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
}
.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-body);
  max-width: 680px;
  margin: 18px auto 0;
}

/* ════ CTA ════ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 19px 40px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 12px 30px -10px rgba(236,68,41,.5);
}
.cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -10px rgba(236,68,41,.7);
}
/* ════ 0. Barra de aviso del precio de lanzamiento ════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 11px 20px;
  font-size: 13.5px;
  line-height: 1.4;
  text-align: center;
  transition: background .2s;
}
.topbar strong { font-weight: 900; }
.topbar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 auto;
  animation: topbar-pulse 2.4s ease-in-out infinite;
}
@keyframes topbar-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.78); }
}
.topbar-arrow { transition: transform .2s; flex: 0 0 auto; }
@media (hover: hover) and (pointer: fine) {
  .topbar:hover { background: var(--accent-hover); }
  .topbar:hover .topbar-arrow { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .topbar-dot { animation: none; }
}
@media (max-width: 720px) {
  .topbar { font-size: 12px; padding: 10px 14px; gap: 9px; }
  .topbar-arrow { display: none; }
}

/* ════ 1. Nav ════ */
.nav {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo { height: 22px; width: auto; display: block; }
.btn-nav {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 7px;
  transition: background .2s;
}
.btn-nav:hover { background: var(--accent-hover); }

/* ════ 2. Hero + VSL ════ */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 64px 0 84px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(236,68,41,.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(236,68,41,.05) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}
.hero-inner {
  max-width: 980px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.16;
  color: #fff;
  max-width: 880px;
  margin: 0 auto 20px;
}
.subhead {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--on-dark);
  max-width: 640px;
  margin: 0 auto 40px;
}
.subhead strong { color: #fff; }

.vsl-wrap {
  max-width: 820px;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px -20px rgba(236,68,41,.18), 0 24px 60px -20px rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.06);
}
.vsl-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, #141414 0%, #0A0A0A 100%);
  display: grid;
  place-items: center;
  cursor: pointer;
  overflow: hidden;
}
.vsl-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s ease;
}
.vsl-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
.vsl-play {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  box-shadow: 0 12px 40px -8px rgba(236,68,41,.6);
  transition: transform .25s ease, background .2s;
}

.vsl-hint {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}
.vsl-player.is-playing { cursor: default; }
.vsl-player.is-playing .vsl-poster,
.vsl-player.is-playing .vsl-play,
.vsl-player.is-playing .vsl-hint { display: none; }
.vsl-player:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; }
@media (hover: hover) and (pointer: fine) {
  .vsl-player:hover .vsl-poster { transform: scale(1.02); }
  .vsl-player:hover .vsl-play { transform: scale(1.06); }
}
.vsl-video { display: block; width: 100%; height: auto; }

/* ════ Logos: empresas formadas ('misma receta que executivelab.ai') ════ */
.trust {
  background: #E9E1D9;
  padding: 64px 0;
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #6E6558;
  margin-bottom: 26px;
  padding: 0 24px;
}
.trust-viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.trust-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 20px;
  animation: trust-scroll 42s linear infinite;
}
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 72px;
  padding: 0 30px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(64,64,64,.12);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.trust-item img {
  max-height: 36px;
  max-width: 165px;
  width: auto;
  height: auto;
  opacity: .92;
}
.trust-item.is-dark {
  background: #0B0B0B;
  border-color: rgba(255,255,255,.10);
}
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}
@media (max-width: 720px) {
  .trust { padding: 40px 0 44px; }
  .trust-item { min-width: 92px; height: 60px; padding: 0 18px; }
  .trust-item img { max-height: 30px; max-width: 130px; }
  .trust-label { margin-bottom: 20px; letter-spacing: .18em; }
}

/* ════ 3. Problema ════ */
.problema {
  background: var(--white);
  padding: 104px 0;
}
.dark-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dark-card {
  background: var(--paper);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .dark-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236,68,41,.3);
    box-shadow: 0 20px 50px -22px rgba(10,10,10,.18);
  }
}
.dc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  opacity: .95;
}
.dark-card h3 {
  font-size: 24px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.dark-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-body);
}
.dark-card p + p { margin-top: 12px; }
.dark-card p strong { color: var(--ink); }
.insight {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  text-align: center;
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--card-border);
}
.insight em { color: var(--accent); font-style: italic; }
.insight strong { font-family: 'Lato', sans-serif; font-size: 17px; font-weight: 900; }

/* ════ 5. Los 5 niveles ════ */
.niveles {
  background: var(--paper);
  padding: 104px 0;
}
.ladder {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.ladder-step {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .ladder-step:hover {
    transform: translateY(-2px);
    border-color: rgba(236,68,41,.3);
    box-shadow: 0 14px 40px -18px rgba(10,10,10,.18);
  }
}
.ls-num {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
  opacity: .9;
  min-width: 34px;
  text-align: center;
}
.ladder-step h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 4px;
}
.ladder-step p {
  font-size: 14.5px;
  color: var(--ink-body);
}
.ladder-step.is-goal {
  background: var(--dark);
  border-color: rgba(236,68,41,.45);
  box-shadow: 0 24px 60px -24px rgba(236,68,41,.35);
}
.ladder-step.is-goal h3 { color: #fff; }
.ladder-step.is-goal p { color: rgba(255,255,255,.72); }
.goal-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: 10px;
  white-space: nowrap;
}
.ladder-step.is-dim { opacity: .55; }
.ladder-note {
  max-width: 680px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-body);
}
.ladder-note strong { color: var(--ink); }

/* ════ Herramientas del programa ════ */
.tools {
  background: var(--white);
  padding: 104px 0;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 44px 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: .82;
  transition: opacity .25s ease, transform .25s ease;
}
.tool-icon {
  height: 40px;
  display: grid;
  place-items: center;
}
.tool-icon img {
  height: 36px;
  max-width: 44px;
  width: auto;
  object-fit: contain;
}
.tool-icon.is-full img {
  height: 38px;
  width: 38px;
  max-width: none;
  border-radius: 9px;
}
.tool-icon .tool-word {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 32px;
  line-height: 1;
  color: var(--accent);
}
.tool-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.3;
}
@media (hover: hover) and (pointer: fine) {
  .tool:hover { opacity: 1; transform: translateY(-3px); }
}

/* ════ 7. Módulos ════ */
.modulos {
  background: #E9E1D9;
  padding: 104px 0;
}
/* ── El programa: cuatro fases desplegables ──
   Mismo patrón que executivelab.ai: línea a la izquierda con marcas,
   conector hasta la tarjeta y número grande dentro. */
.fases {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding-left: 108px;
}
.fases::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 26px;
  bottom: 26px;
  width: 1.5px;
  background: rgba(10,10,10,.13);
}

.fase { position: relative; }
.fase + .fase { margin-top: 20px; }
.fase > summary {
  list-style: none;
  cursor: pointer;
  display: block;
  position: relative;
}
.fase > summary::-webkit-details-marker { display: none; }

/* la marca sobre la línea, y el conector hasta la tarjeta */
.fase-marca {
  position: absolute;
  left: -108px;
  top: 34px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1.5px solid rgba(236,68,41,.4);
  background: transparent;
  display: grid;
  place-items: center;
}
.fase-marca::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.fase-marca::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 44px;
  width: 81px;
  height: 1.5px;
  background: rgba(10,10,10,.13);
}

/* la tarjeta */
.fase-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  background: var(--white);
  border-radius: 24px;
  padding: 30px 32px;
  box-shadow: 0 10px 30px -18px rgba(10,10,10,.18);
  transition: box-shadow .3s ease, transform .3s ease;
}
.fase-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 62px;
  line-height: .9;
  color: rgba(10,10,10,.13);
  letter-spacing: -.02em;
}
.fase-head { display: block; min-width: 0; }
.fase-label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 7px;
}
.fase-title {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.22;
  color: var(--ink);
}
.fase-title em { color: var(--accent); font-style: italic; }

/* el más/menos */
.fase-mas { position: relative; width: 15px; height: 15px; flex: 0 0 auto; }
.fase-mas::before, .fase-mas::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform .3s ease, opacity .3s ease;
}
.fase-mas::before { left: 0; top: 6.5px; width: 15px; height: 2px; }
.fase-mas::after  { top: 0; left: 6.5px; width: 2px; height: 15px; }
.fase[open] .fase-mas::after { transform: rotate(90deg); opacity: 0; }
.fase[open] .fase-card { box-shadow: 0 18px 44px -20px rgba(10,10,10,.26); }

/* lo que se abre */
.fase-body { padding: 20px 32px 8px 120px; }
.fase-body p { font-size: 16px; line-height: 1.65; color: var(--ink-body); }
.fase-body p + p { margin-top: 12px; }

/* lo que se lleva de la fase */
.fase-sale { margin-top: 22px !important; font-weight: 700; color: var(--dark) !important; }
.fase-llevas { list-style: none; display: block !important; margin-top: 12px; }
.fase-llevas li {
  position: relative;
  font-size: 15.5px !important;
  font-weight: 400 !important;
  line-height: 1.6;
  color: var(--ink-body);
  background: none !important;
  border-radius: 0 !important;
  padding: 0 0 0 26px !important;
}
.fase-llevas li + li { margin-top: 10px; }
.fase-llevas li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.fase-llevas b { font-weight: 900; color: var(--dark); }
.fase-cierre {
  margin-top: 22px !important;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 19px !important;
  font-style: italic;
  line-height: 1.45;
  color: var(--dark) !important;
}

/* pastillas de módulos (fases aún sin desarrollar) */
.fase-body ul:not(.fase-llevas) { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.fase-body ul:not(.fase-llevas) li {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-body);
  background: var(--white);
  border-radius: 100px;
  padding: 7px 14px;
}
/* ── El certificado: cierra el recorrido de las fases ── */
.cert-final { position: relative; margin-top: 22px; }
.cert-marca { background: var(--accent); border-color: var(--accent); }
.cert-marca::before { background: var(--paper); width: 7px; height: 7px; }
.cert-marca::after { top: 44px; }
.cert-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  background: var(--dark);
  border-radius: 24px;
  padding: 34px 36px;
  box-shadow: 0 22px 50px -24px rgba(10,10,10,.55);
}
.cert-sello {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: var(--accent);
  border: 1.5px dashed rgba(236,68,41,.45);
  transform: rotate(-40deg) scale(.7);
  opacity: 0;
  transition: transform .9s cubic-bezier(.2,.8,.25,1) .15s, opacity .6s ease .15s;
}
.cert-final.in-view .cert-sello { transform: rotate(0) scale(1); opacity: 1; }
.cert-kicker {
  display: block;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.cert-txt h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--paper);
}
.cert-txt h3 em { font-style: italic; color: var(--accent); }
.cert-txt p {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(251,248,243,.66);
  max-width: 58ch;
}

@media (hover: hover) and (pointer: fine) {
  .fase > summary:hover .fase-card { transform: translateY(-2px); box-shadow: 0 18px 44px -20px rgba(10,10,10,.26); }
}
.fase > summary:focus-visible .fase-card { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Móvil: fuera la línea y el conector, la tarjeta a todo el ancho ── */
@media (max-width: 780px) {
  .fases { padding-left: 0; }
  .fases::before, .fase-marca { display: none; }
  .fase + .fase { margin-top: 14px; }
  .fase-card { grid-template-columns: auto 1fr auto; gap: 16px; padding: 22px 20px; border-radius: 18px; }
  .fase-num { font-size: 40px; }
  .fase-label { font-size: 10px; margin-bottom: 5px; }
  .fase-title { font-size: 19px; }
  .cert-final { margin-top: 16px; }
  .cert-card { grid-template-columns: 1fr; gap: 18px; padding: 28px 22px; border-radius: 18px; }
  .cert-sello { width: 64px; height: 64px; }
  .cert-sello svg { width: 32px; height: 32px; }
  .cert-txt h3 { font-size: 23px; }
  .cert-txt p { font-size: 14.5px; }
  .fase-body { padding: 16px 20px 8px; }
  .fase-body p { font-size: 15px; }
  .fase-body ul:not(.fase-llevas) li { font-size: 11.5px; padding: 6px 12px; }
  .fase-llevas li { font-size: 14.5px !important; padding-left: 22px !important; }
  .fase-llevas li::before { left: 2px; top: 8px; }
  .fase-cierre { font-size: 17px !important; padding-left: 13px; }
}

/* ════ Qué te llevas (entregables) ════ */
.entregables {
  background: var(--paper);
  padding: 104px 0;
}
.ent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  overflow: hidden;
}
.ent-item {
  background: var(--white);
  padding: 40px 36px 38px;
  transition: background .25s ease;
}
.ent-ico {
  display: block;
  color: var(--accent);
  margin-bottom: 20px;
}
.ent-item h3 {
  font-size: 20px;
  margin-bottom: 9px;
  line-height: 1.25;
}
.ent-item p {
  font-size: 15px;
  line-height: 1.58;
  color: var(--ink-body);
}
.ent-item p + p { margin-top: 10px; }
@media (hover: hover) and (pointer: fine) {
  .ent-item:hover { background: var(--paper); }
}
/* CTA suelto al cerrar una sección */
.sec-cta {
  margin-top: 54px;
  text-align: center;
}

.ent-cta {
  margin-top: 52px;
  text-align: center;
}
.ent-cta-note {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-muted);
}

/* ════ 8. Mentores ════ */
.mentores {
  background: var(--paper);
  padding: 104px 0;
}
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mentor-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
}
.mentor-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid var(--accent);
  box-shadow: 0 14px 40px -14px rgba(236,68,41,.45);
  background: var(--dark);
}
.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
  transform-origin: center top;
}
.mentor-photo.mp-eric img { transform: scale(1.18) translateY(-7px); }
.mentor-photo.mp-carlos img { transform: scale(1.18) translate(-3px, -13px); }
.mentor-photo.mp-jose img { transform: scale(1.25) translateY(-6px); }
@media (hover: hover) and (pointer: fine) {
  .mentor-card:hover .mp-eric img { transform: scale(1.25) translateY(-7px); }
  .mentor-card:hover .mp-carlos img { transform: scale(1.25) translate(-3px, -13px); }
  .mentor-card:hover .mp-jose img { transform: scale(1.32) translateY(-6px); }
}
.mentor-card h3 {
  font-size: 23px;
  margin-bottom: 6px;
}
.mentor-role {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.mentor-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  text-align: left;
}
.mentor-card li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-body);
}
.mentor-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

/* ════ 9. Testimonios ════ */
.testimonios {
  background: var(--dark);
  color: #fff;
  padding: 104px 0;
}
.testimonios .section-head h2 { color: #fff; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .testi-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236,68,41,.4);
    box-shadow: 0 20px 60px -20px rgba(236,68,41,.25);
  }
}
.testi-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, #171717 0%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.tv-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
}
.testi-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.testi-video.is-playing { cursor: default; }
.testi-video.is-playing .tv-poster,
.testi-video.is-playing .tv-play { display: none; }
.testi-video:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.tv-error {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 3;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(236,68,41,.92);
  padding: 8px 12px;
}
.tv-play {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 30px -6px rgba(236,68,41,.55);
  transition: transform .2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .testi-card:hover .tv-play { transform: scale(1.08); }
}
.tv-label {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.testi-info {
  flex: 1;
  padding: 22px 26px 26px;
}
.testi-name {
  font-family: 'DM Serif Display', serif;
  font-size: 21px;
  color: #fff;
  line-height: 1.2;
}
.testi-cargo {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 6px 0 14px;
}
.testi-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(255,255,255,.85);
}

/* ════ 10. Oferta ════ */
.oferta {
  background: var(--paper);
  padding: 104px 0;
}
.price-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(10,10,10,.28);
}

/* ── las dos columnas de arriba ── */
.price-top { padding: 40px 38px 42px; }
.price-top-h {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 24px;
}
.price-includes { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 26px; }
.price-includes li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-body);
}
.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(236,68,41,.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

/* ── la banda oscura del precio ── */
.price-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  background: var(--dark);
  padding: 40px 42px;
}
.price-label {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 10px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1;
  margin-bottom: 20px;
}
.price-old {
  font-size: 28px;
  color: rgba(255,255,255,.38);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-now {
  font-size: clamp(52px, 7vw, 76px);
  color: #fff;
  letter-spacing: -.02em;
}
.price-bar-right { text-align: center; }
.price-bar-right .cta {
  padding: 21px 44px;
  border-radius: 100px;
  font-size: 15px;
}
.cta-meta-dark {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--on-dark-muted);
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) {
  .price-top { padding: 32px 26px 34px; }
  .price-top-h { font-size: 19px; margin-bottom: 20px; }
  .price-includes { grid-template-columns: 1fr; gap: 14px; }
  .price-bar {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 26px 34px;
    text-align: center;
  }
  .price { justify-content: center; }
  .price-bar-right .cta { width: 100%; }
}

/* ════ Garantía (sección propia) ════ */
.garantia {
  background: #E9E1D9;
  padding: 104px 0;
}
.garantia-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(10,10,10,.3);
}

/* ── el sello, columna izquierda ── */
.garantia-seal-col {
  display: grid;
  place-items: center;
  padding: 56px 32px;
  background: #FAF8F6;
  border-right: 1px solid var(--card-border);
}
.seal {
  position: relative;
  width: 214px;
  height: 214px;
  border-radius: 50%;
  border: 1px solid rgba(236,68,41,.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.seal::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  border: 1px dashed rgba(236,68,41,.32);
}
.seal-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 54px;
  line-height: 1;
  color: var(--accent);
}
.seal-num sup { font-size: 26px; top: -.5em; }
.seal-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
}
.seal-days {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-muted);
}

/* ── el texto, columna derecha ── */
.garantia-body { padding: 56px 52px 58px; }
.garantia-badge {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.garantia-card h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 22px;
}
.garantia-card h3 em { color: var(--accent); font-style: italic; }
.garantia-body > p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-body);
}
.garantia-body > p strong { color: var(--ink); font-weight: 900; }

@media (max-width: 860px) {
  .garantia-card { grid-template-columns: 1fr; }
  .garantia-seal-col {
    padding: 40px 24px 34px;
    border-right: none;
    border-bottom: 1px solid var(--card-border);
  }
  .seal { width: 168px; height: 168px; gap: 7px; }
  .seal-num { font-size: 42px; }
  .seal-num sup { font-size: 20px; }
  .seal-label { font-size: 10px; }
  .seal-days { font-size: 13.5px; }
  .garantia-body { padding: 34px 26px 38px; }
  .garantia-badge { letter-spacing: .12em; font-size: 10.5px; }
}

/* ════ 11. FAQ ════ */
.faq {
  background: var(--white);
  padding: 104px 0;
}
.faq-inner { max-width: 760px; }
.faq details p a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: rgba(236,68,41,.35); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 18.5px;
  line-height: 1.3;
  position: relative;
  padding-right: 52px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 400;
  transition: transform .2s;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-body);
}
.faq details p + p,
.faq details p + ul,
.faq details ul + p { padding-top: 0; margin-top: -8px; }
.faq-list {
  list-style: none;
  padding: 0 24px 22px;
  margin-top: -6px;
}
.faq-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-body);
}
.faq-list li + li { margin-top: 9px; }
.faq-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(236,68,41,.55);
}
.faq-list b { font-weight: 900; color: var(--dark); }
.faq-fase {
  padding-bottom: 6px !important;
  color: var(--dark) !important;
}
.faq-fase b { font-weight: 900; }

/* ════ 12. Cierre + CTA final ════ */
.final-cta {
  background: var(--dark);
  color: #fff;
  padding: 104px 0;
}
.final-inner {
  text-align: center;
  max-width: 720px;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  color: #fff;
  margin-bottom: 36px;
}

/* ════ Footer ════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-inner {
  padding: 24px;
  text-align: center;
  color: var(--on-dark-muted);
  font-size: 13px;
}
.footer a { color: var(--on-dark-muted); }

/* ════ Animación de entrada (scroll reveal) ════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ════ Aviso de cookies ════ */
.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -18px 50px -20px rgba(0,0,0,.6);
  padding: 20px 24px;
  animation: cookies-in .4s ease both;
}
@keyframes cookies-in { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookies[hidden] { display: none; }
.cookies-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.cookies-txt {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.76);
}
.cookies-txt a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookies-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
/* los dos botones con el mismo peso: rechazar no puede quedar escondido */
.cookies-btn {
  font-family: 'Lato', sans-serif;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.cookies-btn.is-main {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
}
.cookies-btn.is-main:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.cookies-btn.is-ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.32);
}
.cookies-btn.is-ghost:hover { border-color: #fff; color: #fff; }
.cookies-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* el botón de WhatsApp se aparta mientras el aviso está en pantalla */
body.cookies-abierto .wa-float { bottom: calc(clamp(16px, 3vw, 24px) + 104px); }

/* enlace del pie para volver a decidir */
.footer-cookies {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

@media (max-width: 780px) {
  .cookies { padding: 18px 20px 20px; }
  .cookies-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookies-txt { font-size: 13.5px; }
  .cookies-btns { flex-direction: row; }
  .cookies-btn { flex: 1; padding: 14px 12px; }
  body.cookies-abierto .wa-float { bottom: calc(clamp(16px, 3vw, 24px) + 168px); }
}

/* ════ Responsive ════ */
@media (max-width: 900px) {
  .dark-cards, .mentor-grid, .testi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ent-grid { grid-template-columns: 1fr; }
  .ent-item { padding: 30px 24px 28px; }
  .ent-ico { margin-bottom: 16px; }
  .tools-grid { grid-template-columns: repeat(6, 1fr); gap: 34px 14px; }

}
@media (max-width: 720px) {
  /* las etiquetas en versalitas suben un punto: a 10.5px se leen mal en el móvil */
  .goal-tag, .mod-meta, .mentor-role,
  .price-label, .dc-num { font-size: 11.5px; }
  .seal-label { font-size: 11px; }
  /* el logo y el botón se tocaban: se compacta el botón y se separan */
  .nav-inner { gap: 14px; }
  .nav-logo { height: 19px; }
  .btn-nav { font-size: 11px; letter-spacing: .06em; padding: 14px 15px; }
  .fase-label { font-size: 11px; }

  .hero { padding: 44px 0 60px; }
  .problema, .niveles, .modulos, .tools, .entregables, .mentores,
  .testimonios, .oferta, .faq, .garantia, .final-cta {
    padding: 64px 0;
  }
  .garantia-card { padding: 36px 26px; }
  .section-head { margin-bottom: 40px; }
  .cta { padding: 16px 28px; font-size: 13px; }
  .ladder-step { padding: 20px 20px; gap: 16px; }
  .goal-tag { display: block; margin: 6px 0 0; white-space: normal; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 14px; }
  .tool-icon { width: 66px; height: 66px; border-radius: 19px; }
  .tool-icon img { height: 32px; max-width: 46px; }
  .tool-icon.is-full { overflow: hidden; }
.tool-icon.is-full img {
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
}
.tool-icon .tool-word { font-size: 28px; }
  .tool-name { font-size: 12.5px; }
  .tools-foot { margin-top: 44px; }
}
@media (max-width: 460px) {
  .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 26px 8px; }
}

/* Enlaces legales: en móvil hay que poder tocarlos sin precisión de cirujano */
.footer-inner a {
  display: inline-block;
  padding: 8px 2px;
  color: inherit;
}
@media (max-width: 720px) {
  .footer-inner p { line-height: 2.1; }
}

/* ════ Botón flotante de WhatsApp ════
   Valores calcados de executivelab.ai (assets/acceso/app.css, regla .el-wa-floating),
   con el aro blanco que lleva el botón en la web. */
.wa-float {
  position: fixed;
  bottom: clamp(16px, 3vw, 24px);
  right: clamp(16px, 3vw, 24px);
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: #25d366;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  border: 3px solid #fff;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 12px 30px -10px rgba(37,211,102,.5), 0 2px 10px rgba(0,0,0,.18);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.wa-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  flex-shrink: 0;
}
.wa-icon svg { width: 24px; height: 24px; fill: #fff; }
@media (hover: hover) and (pointer: fine) {
  .wa-float:hover {
    transform: translateY(-2px);
    background: #1ebe5d;
    box-shadow: 0 18px 42px -10px rgba(37,211,102,.6), 0 2px 10px rgba(0,0,0,.2);
  }
}
.wa-float:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@media (max-width: 600px) {
  .wa-float { padding: 14px; gap: 0; }
  .wa-text { display: none; }
}
