/* ══════════════════════════════════════════════════════
   HERO SPLIT LAYOUT
══════════════════════════════════════════════════════ */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px var(--padding-h) 80px;
  background-color: #0D0D0D;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 65% at 15% 0%,
      rgba(255, 255, 255, 0.10) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 80% 100%,
      rgba(107, 78, 61, 0.25) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 1;
}

.hero.vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%,
    transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: grayscale(60%) brightness(0.4);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--gap-xl);
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.hero__eyebrow {
  font-family: var(--font-cuerpo);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arena);
  display: block;
}

.hero__titulo {
  font-family: var(--font-titulo);
  font-size: clamp(26px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--blanco);
  text-align: left;
  text-shadow:
    0 0 8px rgba(220, 200, 170, 0.55),
    0 0 20px rgba(184, 160, 140, 0.28),
    0 0 50px rgba(184, 160, 140, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.9);
  text-wrap: balance;
  hyphens: auto;
}

.hero__titulo span {
  color: var(--arena);
}

.hero__subtitulo {
  font-size: clamp(16px, 1.4vw, 24px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--gris-humo);
  text-align: left;
  margin-top: 4px;
  margin-bottom: 8px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 12px;
}

.hero__social-proof {
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--gris-medio);
  letter-spacing: 0.04em;
  text-align: left;
}

.hero__right {
  position: relative;
}

.hero__image-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radio-card);
  box-shadow:
    0 0 40px rgba(184, 160, 140, 0.15),
    0 0 80px rgba(184, 160, 140, 0.06);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.7);
}

.hero__image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(20,20,20,0.4) 100%
  );
  border: 1px solid rgba(184,160,140,0.25);
  border-radius: var(--radio-card);
}

.hero__card {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: rgba(20,20,20,0.88);
  border: 1px solid rgba(184,160,140,0.3);
  padding: 16px 20px;
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: 20px;
  color: var(--arena);
  line-height: 1.4;
  z-index: 2;
}

.hero__badge {
  position: absolute;
  top: 20px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(62,74,79,0.9);
  border: 1px solid rgba(184,160,140,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero__badge-number {
  font-family: var(--font-titulo);
  font-size: 20px;
  font-weight: 500;
  color: var(--blanco);
  line-height: 1;
}

.hero__badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris-medio);
}


/* ══════════════════════════════════════════════════════
   QUICK NAV
══════════════════════════════════════════════════════ */
.quick-nav {
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
}

.quick-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 160, 140, 0.7) 30%,
    rgba(184, 160, 140, 0.7) 70%,
    transparent
  );
}

.quick-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 160, 140, 0.7) 30%,
    rgba(184, 160, 140, 0.7) 70%,
    transparent
  );
}

.quick-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-nav__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 26px 36px;
  text-decoration: none;
  position: relative;
  transition: background 0.3s ease;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.quick-nav__card:last-child {
  border-right: none;
}

.quick-nav__card:hover {
  background: rgba(255,255,255,0.02);
}

.quick-nav__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent, rgba(184,160,140,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quick-nav__card:hover::before { opacity: 1; }

.quick-nav__card::after {
  content: '→';
  font-size: 18px;
  color: rgba(184, 160, 140, 0.6);
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
}

.quick-nav__card:hover::after {
  color: var(--arena);
  transform: translateX(5px);
}

.quick-nav__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.quick-nav__card:hover .quick-nav__icon { opacity: 1; }

.quick-nav__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.quick-nav__badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--arena);
  display: block;
}

.quick-nav__title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blanco);
  margin: 0;
  transition: color 0.3s ease;
}

.quick-nav__card:hover .quick-nav__title {
  color: var(--blanco);
}


/* ══════════════════════════════════════════════════════
   SEPARADOR UNIVERSAL
══════════════════════════════════════════════════════ */
.seccion-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 0 auto var(--gap-xl);
}

.seccion-divider::before,
.seccion-divider::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 160, 140, 0.5)
  );
}

.seccion-divider::after {
  background: linear-gradient(
    to left,
    transparent,
    rgba(184, 160, 140, 0.5)
  );
}


/* ══════════════════════════════════════════════════════
   SECCIÓN PROBLEMA
══════════════════════════════════════════════════════ */
.problema {
  padding: var(--gap-xl) 0;
  background-color: #0F0F0F;
  background-image: url('../img/bg1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.problema::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 160, 140, 0.7) 30%,
    rgba(184, 160, 140, 0.7) 70%,
    transparent
  );
  z-index: 1;
  pointer-events: none;
}

.problema::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  pointer-events: none;
  z-index: 0;
}

.borde-inferior {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 160, 140, 0.7) 30%,
    rgba(184, 160, 140, 0.7) 70%,
    transparent
  );
  pointer-events: none;
}

.quick-nav::before,
.quick-nav::after,
.borde-inferior,
.problema::before {
  width: 600px;
  max-width: 90%;
}

.problema .container {
  position: relative;
  z-index: 1;
}

.problema__quote {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--padding-h);
}

.problema__quote p {
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--arena);
  line-height: 1.6;
  font-weight: 400;
  max-width: 100%;
  text-shadow:
    0 0 8px rgba(184, 160, 140, 0.55),
    0 0 20px rgba(184, 160, 140, 0.28),
    0 0 40px rgba(107, 78, 61, 0.12);
}


/* ══════════════════════════════════════════════════════
   STAKES
══════════════════════════════════════════════════════ */
.stakes {
  background: var(--negro);
  position: relative;
}

.stakes::after,
.empathy-competency::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 0%,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.stakes .container { position: relative; z-index: 1; }

.stakes__titulo {
  text-align: center;
  margin-bottom: var(--gap-sm);
}

.stakes__subtitulo {
  text-align: center;
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--gris-humo);
  max-width: 520px;
  margin: 0 auto var(--gap-xl);
}

.stakes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
  max-width: 800px;
  margin: 0 auto;
}

.stakes__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.stakes__bullet {
  width: 5px;
  height: 5px;
  background: var(--arena);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.stakes__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--gris-humo);
  line-height: 1.7;
  max-width: 100%;
}

.stakes__cta {
  text-align: center;
  margin-top: var(--gap-xl);
}


/* ══════════════════════════════════════════════════════
   VALUE PROPOSITION
══════════════════════════════════════════════════════ */
.value-proposition {
  background: var(--grafito);
  background-image: url('../img/bg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}

.value-proposition::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  pointer-events: none;
  z-index: 0;
}

.value-proposition::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 70% at 100% 50%,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.value-proposition .container { position: relative; z-index: 1; }

.value-proposition__titulo {
  margin-bottom: var(--gap-sm);
}

.value-proposition__subtitulo {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--gris-humo);
  max-width: 480px;
  margin: 0 auto var(--gap-xl);
}

.value-proposition__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
  max-width: 960px;
  margin: 0 auto;
}

.value-proposition__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.value-proposition__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.value-proposition__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--gris-humo);
  line-height: 1.7;
  max-width: 100%;
}

.value-proposition__cta {
  margin-top: var(--gap-xl);
}

/* dividers heredados de value-proposition y empathy-competency */
.value-proposition__divider,
.empathy-competency__divider,
.programas__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: var(--gap-xl);
}

.value-proposition__divider-line,
.empathy-competency__divider-line,
.programas__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,160,140,0.3));
}

.value-proposition__divider-line:last-child,
.empathy-competency__divider-line:last-child,
.programas__divider-line:last-child {
  background: linear-gradient(to left, transparent, rgba(184,160,140,0.3));
}

.value-proposition__divider-circle,
.empathy-competency__divider-circle,
.programas__divider-circle {
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════
   EMPATHY & COMPETENCY
══════════════════════════════════════════════════════ */
.empathy-competency {
  background: var(--negro);
  position: relative;
  text-align: center;
}

.empathy-competency::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent);
  pointer-events: none;
}


.empathy-competency .container { position: relative; z-index: 1; }

.empathy-competency__titulo { margin-bottom: var(--gap-sm); }

.empathy-competency__subtitulo {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--gris-humo);
  max-width: 480px;
  margin: 0 auto var(--gap-xl);
}

.empathy-competency__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 800px;
  margin: 0 auto;
}

.empathy-competency__stat-card {
  background: rgba(0,0,0,0.25);
  padding: 40px 32px;
  border: 1px solid rgba(184,160,140,0.15);
}

.empathy-competency__stat-number,
.sobre__stat-num {
  font-family: var(--font-titulo);
  font-size: 56px;
  font-weight: 500;
  color: var(--arena);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow:
    0 0 20px rgba(184, 160, 140, 0.40),
    0 0 50px rgba(184, 160, 140, 0.20),
    0 0 80px rgba(184, 160, 140, 0.10);
}

.empathy-competency__stat-title {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris-humo);
  margin-bottom: 12px;
}

.empathy-competency__stat-text {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--gris-medio);
  line-height: 1.75;
  max-width: 100%;
}

.empathy-competency__cta {
  margin-top: var(--gap-xl);
}


/* ══════════════════════════════════════════════════════
   SOBRE BECOACH
══════════════════════════════════════════════════════ */
.sobre {
  background: var(--grafito);
  position: relative;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent);
  pointer-events: none;
}

.sobre::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 100% 30%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.sobre .container { position: relative; z-index: 1; }

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: center;
}

.sobre__imagen {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radio-card);
  box-shadow:
    0 0 40px rgba(184, 160, 140, 0.12),
    0 0 80px rgba(184, 160, 140, 0.05);
}

.sobre__imagen::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,160,140,0.2);
  border-radius: var(--radio-card);
  pointer-events: none;
  z-index: 1;
}

.sobre__imagen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.55) contrast(1.1);
}

.sobre__contenido {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}


/* ══════════════════════════════════════════════════════
   MÉTODO / PLAN
══════════════════════════════════════════════════════ */
.metodo {
  background: #0D0D0D;
  background-image: url('../img/bg-conference.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.metodo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  pointer-events: none;
  z-index: 0;
}

.metodo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 45% at 50% 0%,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.metodo .container { position: relative; z-index: 1; }

.metodo__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--gap-xl);
}

.metodo__pasos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}

.metodo__paso {
  background: var(--negro);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.metodo__paso:nth-child(1)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 60% at 50% 0%,
    rgba(184, 160, 140, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.metodo__paso:nth-child(2)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 60% at 50% 0%,
    rgba(184, 160, 140, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.metodo__paso:nth-child(3)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 60% at 50% 0%,
    rgba(184, 160, 140, 0.20) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.metodo__linea {
  width: 32px;
  height: 1px;
  background: var(--arena);
  margin-bottom: 24px;
}

.metodo__icon {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.metodo__paso-num {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--arena);
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 1;
}

.metodo__paso-titulo {
  font-family: var(--font-titulo);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--blanco);
  margin-bottom: 8px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.metodo__paso:nth-child(3) .metodo__paso-titulo {
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.20),
    0 0 50px rgba(184, 160, 140, 0.15);
}

.metodo__paso-sub {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--arena);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.metodo__paso-texto {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--gris-medio);
  line-height: 1.85;
  max-width: 100%;
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════
   PROGRAMAS
══════════════════════════════════════════════════════ */
.programas {
  background: var(--grafito);
  position: relative;
}

.programas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent);
  pointer-events: none;
}

.programas::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 70% at 0% 50%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.programas .container { position: relative; z-index: 1; }

.programas__titulo {
  text-align: center;
  margin-bottom: var(--gap-sm);
}

.programas__subtitulo {
  text-align: center;
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--gris-humo);
  max-width: 480px;
  margin: 0 auto var(--gap-xl);
}

.programas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.06);
}

.programas__card {
  background: var(--negro);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.programas__card:hover {
  background: rgba(255,255,255,0.02);
  box-shadow:
    0 0 40px rgba(184, 160, 140, 0.15),
    0 4px 30px rgba(0, 0, 0, 0.4);
}

.programas__card:last-child,
.programas__card:nth-child(3) {
  border-right: none;
}

.programas__card:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.programas__card:last-child .programas__card-image {
  aspect-ratio: auto;
  min-height: 200px;
}

.programas__card--featured {
  background: var(--azul-gris);
  border-color: rgba(184,160,140,0.25);
  box-shadow:
    0 0 30px rgba(184, 160, 140, 0.15),
    0 2px 20px rgba(0, 0, 0, 0.3);
}

.programas__card-badge {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--arena);
  color: var(--negro);
  padding: 5px 16px;
  z-index: 2;
}

.programas__card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.programas__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(0.45);
  transition: filter 0.5s ease;
}

.programas__card:hover .programas__card-image img {
  filter: grayscale(30%) brightness(0.55);
}

.programas__card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(13,13,13,0.8) 100%
  );
}

.programas__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom, transparent 0%, rgba(20,20,20,0.5) 100%);
}

.programas__card-content {
  padding: 28px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  position: relative;
}

.programas__card-content::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184,160,140,0.2),
    transparent
  );
}

.programas__card--featured .programas__card-content {
  background: var(--azul-gris);
}

.programas__card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--arena);
  margin-bottom: 4px;
}

.programas__card-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.programas__card-price-usd {
  font-family: var(--font-titulo);
  font-size: 44px;
  font-weight: 500;
  color: var(--blanco);
  line-height: 1;
  display: block;
  text-shadow:
    0 0 30px rgba(255,255,255,0.06);
}

.programas__card-price-cop {
  font-size: 11px;
  font-weight: 300;
  color: var(--gris-medio);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.programas__card-price-custom-text {
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  color: var(--arena);
  display: block;
  text-shadow:
    0 0 30px rgba(184,160,140,0.2);
}

.programas__card-price-custom-sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--gris-medio);
  display: block;
  margin-top: 6px;
}

.programas__card-description {
  font-size: 13px;
  font-weight: 300;
  color: var(--gris-medio);
  line-height: 1.75;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  max-width: 100%;
}

.programas__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.programas__card-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--gris-humo);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.programas__card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(184,160,140,0.5);
  font-size: 10px;
  top: 3px;
}

.programas__card-cta {
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding: 12px 20px;
  font-size: 11px;
}


/* ══════════════════════════════════════════════════════
   EXPLANATORY
══════════════════════════════════════════════════════ */
.explanatory {
  background: var(--negro);
  background-image: url('../img/bg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}

.explanatory::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  pointer-events: none;
  z-index: 0;
}

.explanatory .container {
  position: relative;
  z-index: 1;
}

.explanatory__titulo {
  margin-bottom: var(--gap-lg);
}

.explanatory__texto {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--gris-humo);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

.explanatory__cta {
  margin-top: var(--gap-xl);
}


/* ══════════════════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════════════════ */
.testimonios {
  background: var(--grafito);
  position: relative;
}

.testimonios::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent);
  pointer-events: none;
}

.testimonios::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 100%,
    rgba(107, 78, 61, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.testimonios .container { position: relative; z-index: 1; }

.testimonios__header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto var(--gap-xl);
}

.testimonios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonio {
  background: var(--negro);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonio__comillas {
  font-family: var(--font-titulo);
  font-size: 48px;
  line-height: 1;
  color: var(--arena);
  opacity: 0.4;
  font-weight: 400;
}

.testimonio__texto {
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--gris-humo);
  line-height: 1.55;
  flex: 1;
  max-width: 100%;
}

.testimonio__autor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonio__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--azul-gris);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titulo);
  font-size: var(--text-md);
  color: var(--gris-humo);
  flex-shrink: 0;
}

.testimonio__nombre {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--blanco);
}

.testimonio__cargo {
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--gris-medio);
  margin-top: 2px;
}


/* ══════════════════════════════════════════════════════
   RECURSOS
══════════════════════════════════════════════════════ */
.recursos {
  background: var(--negro);
  position: relative;
}

.recursos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent);
  pointer-events: none;
}

.recursos .container { position: relative; z-index: 1; }

.recursos__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto var(--gap-xl);
}

.recursos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.recurso {
  background: var(--grafito);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radio-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.recurso:hover {
  border-color: rgba(184,160,140,0.3);
  box-shadow:
    0 0 30px rgba(184, 160, 140, 0.12),
    0 4px 24px rgba(0, 0, 0, 0.35);
}

.recurso::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(184,160,140,0) 0%,
    rgba(184,160,140,0.5) 50%,
    rgba(184,160,140,0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.recurso:hover::before { opacity: 1; }

.recurso__media {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.recurso__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.5);
  transition: filter 0.4s ease;
}

.recurso:hover .recurso__media img {
  filter: grayscale(30%) brightness(0.6);
}

.recurso__tipo {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--arena);
  padding: 20px 24px 0;
  display: block;
}

.recurso__titulo {
  font-family: var(--font-titulo);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--blanco);
  line-height: 1.2;
  padding: 8px 24px 0;
}

.recurso__descripcion {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--gris-medio);
  line-height: 1.8;
  padding: 10px 24px 0;
  flex: 1;
  max-width: 100%;
}

.recurso__cta {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--arena);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  padding: 16px 24px 24px;
}

.recurso__cta::after { content: '→'; }
.recurso:hover .recurso__cta { gap: 14px; }


/* ══════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════ */
.cta-final {
  padding: var(--gap-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--negro);
  background-image: url('../img/bg-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  pointer-events: none;
  z-index: 0;
}

.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 45% at 50% 0%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 70% 45% at 50% 100%,
      rgba(107, 78, 61, 0.25) 0%,
      transparent 65%
    );
  pointer-events: none;
  z-index: 0;
}

.cta-final.vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%,
    transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

.cta-final__contenido {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--padding-h);
}

.cta-final__titulo {
  font-family: var(--font-titulo);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  color: var(--blanco);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow:
    0 0 6px rgba(212, 196, 168, 0.7),
    0 0 15px rgba(184, 160, 140, 0.5),
    0 0 30px rgba(184, 160, 140, 0.3),
    0 0 60px rgba(107, 78, 61, 0.15);
}

.cta-final__texto {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--gris-humo);
  line-height: 1.7;
  margin: 0 auto var(--gap-xl);
  max-width: 680px;
}

.cta-final__garantia {
  margin-top: 24px;
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--gris-medio);
  letter-spacing: 0.06em;
}


/* ══════════════════════════════════════════════════════
   ANIMACIONES
══════════════════════════════════════════════════════ */
.animar {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animar.visible {
  opacity: 1;
  transform: translateY(0);
}

.animar-delay-1 { transition-delay: 0.1s; }
.animar-delay-2 { transition-delay: 0.22s; }
.animar-delay-3 { transition-delay: 0.34s; }


/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
  .programas__grid { grid-template-columns: repeat(2, 1fr); }
  .programas__card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 2fr;
  }
  .programas__card:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .programas__card:nth-child(2) {
    border-right: none;
  }
  .metodo__pasos { grid-template-columns: 1fr; }
  .sobre__grid { grid-template-columns: 1fr; gap: var(--gap-xl); }
  .testimonios__grid { grid-template-columns: 1fr; }
  .recursos__grid { grid-template-columns: repeat(2,1fr); }
  .empathy-competency__grid { grid-template-columns: 1fr; }
  .value-proposition__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .programas__grid { grid-template-columns: 1fr; }
  .programas__card:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .programas__card { border-right: none; }
}

@media (max-width: 768px) {
  /* Hero — video oculto, imagen fija como fondo */
  .hero__video-wrapper {
    display: none;
  }

  .hero {
    background-image: url('assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    min-height: 100vh;
    padding: 100px var(--padding-h) 60px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: var(--gap-lg);
  }

  .hero__right {
    display: flex;
    justify-content: center;
    width: 100%;
    order: -1;
  }

  .hero__image-container {
    aspect-ratio: 4/3;
    max-height: 260px;
    border-radius: var(--radio-card);
    margin: 0 auto;
    width: 100%;
  }

  .hero__image {
    object-position: center 20%;
  }

  .hero__card {
    display: none;
  }

  .hero__badge {
    display: none;
  }

  .hero__left {
    order: 1;
  }

  .hero__titulo {
    font-size: clamp(26px, 7vw, 38px);
    text-align: center;
    text-wrap: balance;
  }

  .hero__subtitulo {
    font-size: 15px;
    text-align: center;
    max-width: 100%;
  }

  .hero__cta {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .hero__social-proof {
    text-align: center;
  }

  /* Botones 100% en móvil */
  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .stakes__cta .btn,
  .value-proposition__cta .btn,
  .empathy-competency__cta .btn,
  .plan__cta .btn,
  .explanatory__cta .btn,
  .cta-final .btn {
    width: 100%;
    text-align: center;
  }

  .programas__card-cta {
    width: 100%;
  }

  /* Layout */
  .stakes__grid { grid-template-columns: 1fr; }
  .recursos__grid { grid-template-columns: 1fr; }
  .quick-nav__grid { grid-template-columns: 1fr; }
  .quick-nav__card {
    padding: 18px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .quick-nav__card:last-child { border-bottom: none; }
  .seccion-divider::before { width: 180px; }
}

@media (min-width: 1400px) {
  .hero { min-height: 80vh; }
}
