@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

/* =========================================================
   ALIS PROGRAMAS — CSS LIMPIO
   Archivo base estable para /alis/programas/
   Reemplaza programas.css completo.
========================================================= */

/* =========================
   TOKENS
========================= */

:root {
  --alis-black: #11100d;
  --alis-dark: #191611;
  --alis-chocolate: #30281f;
  --alis-brown: #5d4c3b;
  --alis-gold: #d9ad62;
  --alis-gold-soft: #f0cf91;
  --alis-cream: #f4eee5;
  --alis-cream-2: #fbf7ef;
  --alis-paper: #fffaf3;
  --alis-text: #111111;
  --alis-muted: #6f675f;
  --alis-line: rgba(60, 48, 37, 0.16);
  --alis-white: #ffffff;

  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;

  --max: 1240px;
  --nav-h: 76px;

  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.18);
  --shadow-light: 0 18px 60px rgba(47, 37, 27, 0.08);
}

/* =========================
   RESET BASE
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--alis-cream);
  color: var(--alis-text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.07em;
  line-height: 0.92;
}

p {
  line-height: 1.55;
}

button {
  font: inherit;
}

/* =========================
   MARCA alis
========================= */

.brand-alis {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  display: inline-block;
}

.brand-alis.gold {
  color: var(--alis-gold);
}

.brand-alis.orange {
  color: #f08a24;
}

.brand-alis.light {
  color: var(--alis-cream-2);
}

.brand-alis.dark {
  color: var(--alis-text);
}

.brand-alis.purple {
  color: #8f7cff;
}

/* =========================
   UTILIDADES
========================= */

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--alis-gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, var(--alis-gold), var(--alis-gold-soft));
  color: #15120e;
  box-shadow: 0 12px 34px rgba(217, 173, 98, 0.26);
}

.btn.secondary {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  opacity: 0.86;
}

.hero-actions,
.program-actions,
.diagnostic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.theme-dark {
  background:
    radial-gradient(circle at 75% 12%, rgba(217, 173, 98, 0.18), transparent 36%),
    linear-gradient(135deg, #12100d 0%, #211b15 48%, #3a3025 100%);
  color: var(--alis-cream-2);
}

.theme-light {
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 173, 98, 0.18), transparent 34%),
    linear-gradient(180deg, #fffaf3 0%, #f2eadf 100%);
  color: var(--alis-text);
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--nav-h);
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 16, 13, 0.88);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand img {
  height: 34px;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--alis-white);
}

.nav-cta {
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(217, 173, 98, 0.45);
  color: var(--alis-gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* =========================
   HERO PRINCIPAL PROGRAMAS
========================= */

.programas-hero {
  min-height: calc(100vh - var(--nav-h));
  padding: 110px max(44px, calc((100vw - var(--max)) / 2)) 80px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  background: #11100d;
  color: var(--alis-cream-2);
}

.programas-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.94) 0%, rgba(17, 16, 13, 0.6) 38%, rgba(17, 16, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(17,16,13,0) 70%, #211b15 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(54px, 7.2vw, 104px);
}

.hero-copy p {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(255, 250, 243, 0.78);
  font-size: 18px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 42px;
  color: rgba(255, 250, 243, 0.72);
  font-size: 14px;
}

.hero-meta span:first-child {
  color: var(--alis-white);
  font-weight: 850;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.9), rgba(17, 16, 13, 0.18)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
  opacity: 0.76;
}

.visual-panel {
  position: absolute;
  z-index: 2;
  right: 16%;
  top: 23%;
  width: 420px;
  min-height: 220px;
  border-radius: 18px;
  border: 1px solid rgba(255, 250, 243, 0.14);
  background: rgba(17, 16, 13, 0.36);
  backdrop-filter: blur(10px);
  padding: 42px;
  color: rgba(255, 250, 243, 0.72);
  font-size: 20px;
  line-height: 1.25;
}

/* =========================
   SECCIÓN PROBLEMA
========================= */

.problem-section {
  padding: 110px max(44px, calc((100vw - var(--max)) / 2)) 90px;
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 173, 98, 0.16), transparent 34%),
    linear-gradient(180deg, #fffaf3 0%, #f2eadf 100%);
  color: var(--alis-text);
  overflow: hidden;
}

.problem-section .section-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 76px;
}

.problem-section .section-grid h2 {
  max-width: 900px;
  font-size: clamp(58px, 7vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.078em;
}

.problem-section .section-grid h2::after {
  content: "";
}

.problem-section .section-grid p {
  max-width: 540px;
  margin-top: 12px;
  color: var(--alis-muted);
  font-size: 18px;
  line-height: 1.65;
}

.problem-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding-top: 36px;
  border-top: 1px solid rgba(60, 48, 37, 0.12);
}

.problem-points article {
  min-height: 120px;
}

.problem-points .icon {
  display: block;
  margin-bottom: 18px;
  font-size: 24px;
  opacity: 0.8;
}

.problem-points h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.problem-points p {
  color: var(--alis-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* =========================
   MENÚ HORIZONTAL PROGRAMAS
========================= */

.program-nav-section {
  padding: 64px max(44px, calc((100vw - var(--max)) / 2)) 46px;
  border-top: 1px solid rgba(60, 48, 37, 0.1);
  border-bottom: 1px solid rgba(60, 48, 37, 0.1);
  background: linear-gradient(180deg, #fffaf3 0%, #f4eee5 100%);
  color: var(--alis-text);
  overflow: hidden;
}

.program-nav-section h2 {
  margin-bottom: 34px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.program-strip {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 12px 0 24px;
  scroll-snap-type: x mandatory;
}

.program-strip::-webkit-scrollbar {
  height: 5px;
}

.program-strip::-webkit-scrollbar-track {
  background: rgba(60, 48, 37, 0.1);
}

.program-strip::-webkit-scrollbar-thumb {
  background: var(--alis-gold);
  border-radius: 999px;
}

.program-strip a {
  flex: 0 0 178px;
  scroll-snap-align: start;
  padding-left: 18px;
  border-left: 1px solid rgba(93, 76, 59, 0.25);
  color: var(--alis-text);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.16;
}

.program-strip a span {
  display: block;
  margin-bottom: 10px;
  color: var(--alis-gold);
  font-size: 11px;
  letter-spacing: 0.16em;
}

/* =========================
   COVERS DE PROGRAMAS 02-10
========================= */

.program-section {
  padding: 0;
  min-height: auto;
  overflow: hidden;
}

.program-cover {
  position: relative;
  min-height: 78vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 88px max(44px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.program-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(217, 173, 98, 0.26), transparent 32%),
    linear-gradient(90deg, rgba(17, 16, 13, 0.92) 0%, rgba(17, 16, 13, 0.68) 36%, rgba(17, 16, 13, 0.22) 72%, rgba(17, 16, 13, 0.1) 100%);
  z-index: 1;
}

.program-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 13, 0.08), rgba(17, 16, 13, 0.58)),
    radial-gradient(circle at 48% 100%, rgba(217, 173, 98, 0.14), transparent 42%);
  z-index: 2;
}

.program-cover.align-right {
  justify-content: flex-end;
  background-position: center left;
}

.program-cover.align-right::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(217, 173, 98, 0.22), transparent 32%),
    linear-gradient(270deg, rgba(17, 16, 13, 0.92) 0%, rgba(17, 16, 13, 0.68) 38%, rgba(17, 16, 13, 0.22) 74%, rgba(17, 16, 13, 0.1) 100%);
}

.theme-light .program-cover::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 173, 98, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(255, 250, 243, 0.96) 0%, rgba(250, 242, 231, 0.78) 38%, rgba(250, 242, 231, 0.32) 74%, rgba(250, 242, 231, 0.14) 100%);
}

.theme-light .program-cover.align-right::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(217, 173, 98, 0.18), transparent 32%),
    linear-gradient(270deg, rgba(255, 250, 243, 0.96) 0%, rgba(250, 242, 231, 0.78) 38%, rgba(250, 242, 231, 0.32) 74%, rgba(250, 242, 231, 0.12) 100%);
}

.program-cover-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
}

.program-cover-copy h2 {
  max-width: 760px;
  font-size: clamp(56px, 7vw, 108px);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.program-cover-copy p {
  max-width: 560px;
  margin-top: 26px;
  color: currentColor;
  opacity: 0.76;
  font-size: 18px;
  line-height: 1.55;
}

.theme-light .program-cover-copy p {
  color: var(--alis-muted);
  opacity: 1;
}

.program-number {
  display: block;
  margin-bottom: 22px;
  color: var(--alis-gold);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.22em;
}

.program-section > .program-deep-content {
  padding: 86px max(44px, calc((100vw - var(--max)) / 2)) 104px;
}

.program-deep-content {
  position: relative;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-bottom: 42px;
}

.insight-grid article {
  min-height: 290px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.theme-light .insight-grid article {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(60, 48, 37, 0.12);
  box-shadow: 0 18px 55px rgba(60, 48, 37, 0.06);
}

.insight-grid h3 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.insight-grid p {
  max-width: 560px;
  color: currentColor;
  opacity: 0.74;
  font-size: 16px;
}

.theme-light .insight-grid p {
  color: var(--alis-muted);
  opacity: 1;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 42px;
}

.signal-card {
  min-height: 230px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.theme-light .signal-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.48));
  border-color: rgba(60, 48, 37, 0.12);
  box-shadow: 0 14px 44px rgba(60, 48, 37, 0.055);
}

.signal-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--alis-gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.signal-card h4 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.signal-card p {
  max-width: 320px;
  color: currentColor;
  opacity: 0.7;
  font-size: 15px;
}

.theme-light .signal-card p {
  color: var(--alis-muted);
  opacity: 1;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 42px 0;
  border-top: 1px solid rgba(151, 128, 100, 0.34);
  border-bottom: 1px solid rgba(151, 128, 100, 0.34);
}

.metric-row article {
  padding: 32px 28px;
  border-right: 1px solid rgba(151, 128, 100, 0.26);
}

.metric-row article:last-child {
  border-right: 0;
}

.metric-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--alis-gold);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.metric-row span {
  display: block;
  max-width: 270px;
  color: currentColor;
  opacity: 0.72;
  font-size: 14px;
  line-height: 1.45;
}

.theme-light .metric-row span {
  color: var(--alis-muted);
  opacity: 1;
}

.lab-band {
  margin-top: 42px;
  padding: 50px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 60px;
  align-items: end;
  background:
    radial-gradient(circle at 92% 18%, rgba(217, 173, 98, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(17, 16, 13, 0.72), rgba(48, 40, 31, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--alis-cream-2);
}

.theme-light .lab-band {
  background:
    radial-gradient(circle at 92% 18%, rgba(217, 173, 98, 0.24), transparent 34%),
    linear-gradient(135deg, #211b15, #5d4c3b);
  color: var(--alis-cream-2);
}

.lab-band h3 {
  max-width: 680px;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.lab-band p {
  color: rgba(255, 250, 243, 0.74);
  font-size: 17px;
  line-height: 1.55;
}

/* =========================
   IMÁGENES DE PROGRAMAS
========================= */

.image-executive {
  background-image:
    linear-gradient(90deg, rgba(17, 16, 13, 0.1), rgba(17, 16, 13, 0.1)),
    url("https://images.unsplash.com/photo-1517502884422-41eaead166d4?auto=format&fit=crop&w=1600&q=80");
}

.image-training {
  background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80");
}

.image-certification {
  background-image: url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1600&q=80");
}

.image-lab {
  background-image: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1600&q=80");
}

.image-network {
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80");
}

.image-economy {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80");
}

.image-international {
  background-image: url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=1600&q=80");
}

.image-governance {
  background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1600&q=80");
}

.image-community {
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80");
}

.image-mvp {
  background-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1600&q=80");
}

/* =========================
   IA EJECUTIVA — MODELO LIMPIO
========================= */

.executive-program-section {
  background:
    radial-gradient(circle at 75% 8%, rgba(217, 173, 98, 0.18), transparent 34%),
    linear-gradient(180deg, #11100d 0%, #211b15 45%, #f4eee5 45%, #f4eee5 100%);
  color: var(--alis-cream-2);
  overflow: hidden;
}

.executive-hero {
  position: relative;
  min-height: 88vh;
  padding: 96px max(44px, calc((100vw - var(--max)) / 2)) 64px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 64px;
  overflow: hidden;
}

.executive-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.62), rgba(17,16,13,0.24)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
  opacity: 0.72;
}

.executive-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(217, 173, 98, 0.16), transparent 30%),
    linear-gradient(180deg, transparent 70%, #211b15 100%);
  pointer-events: none;
}

.executive-hero-copy,
.executive-hero-panel {
  position: relative;
  z-index: 2;
}

.executive-hero-copy h2 {
  max-width: 760px;
  font-size: clamp(58px, 7.4vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.078em;
}

.executive-hero-copy p {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(255, 250, 243, 0.76);
  font-size: 19px;
  line-height: 1.55;
}

.executive-hero-panel {
  min-height: 500px;
  border-radius: 48px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at 72% 20%, rgba(217,173,98,0.15), transparent 28%),
    rgba(255,255,255,0.055);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.mini-map {
  position: absolute;
  inset: 70px 56px 150px;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 62px 62px;
}

.mini-map span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--alis-gold);
  box-shadow: 0 0 24px rgba(217,173,98,0.5);
  animation: nodePulse 4.5s ease-in-out infinite;
}

.mini-map span:nth-child(1) { left: 8%; top: 20%; }
.mini-map span:nth-child(2) { left: 32%; top: 42%; animation-delay: .5s; }
.mini-map span:nth-child(3) { left: 62%; top: 24%; animation-delay: 1s; }
.mini-map span:nth-child(4) { left: 82%; top: 58%; animation-delay: 1.5s; }
.mini-map span:nth-child(5) { left: 22%; top: 78%; animation-delay: 2s; }
.mini-map span:nth-child(6) { left: 48%; top: 64%; animation-delay: 2.5s; }
.mini-map span:nth-child(7) { left: 74%; top: 82%; animation-delay: 3s; }
.mini-map span:nth-child(8) { left: 52%; top: 12%; animation-delay: 3.5s; }

@keyframes nodePulse {
  0%, 100% {
    opacity: .68;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

.hero-stat {
  position: absolute;
  left: 56px;
  bottom: 52px;
}

.hero-stat small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,250,243,0.58);
  font-size: 13px;
}

.hero-stat strong {
  display: block;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.075em;
}

.hero-tags {
  position: absolute;
  right: 46px;
  bottom: 128px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 260px;
  justify-content: flex-end;
}

.hero-tags span,
.audience-map span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(217,173,98,0.34);
  color: var(--alis-gold-soft);
  background: rgba(17,16,13,0.38);
  font-size: 12px;
  font-weight: 850;
}

.executive-body {
  position: relative;
  padding: 72px max(44px, calc((100vw - var(--max)) / 2)) 86px;
  color: var(--alis-text);
  background:
    radial-gradient(circle at 12% 10%, rgba(217,173,98,0.12), transparent 30%),
    linear-gradient(180deg, #f4eee5 0%, #fffaf3 100%);
}

.executive-change,
.executive-capabilities,
.executive-case {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  margin-bottom: 72px;
}

.executive-before-after,
.executive-audience,
.executive-route,
.executive-deliverables {
  margin-bottom: 78px;
}

.change-copy h3,
.audience-copy h3,
.capability-copy h3,
.route-header h3,
.executive-deliverables h3,
.case-copy h3,
.executive-close h3 {
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.change-copy p,
.capability-copy p,
.case-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--alis-muted);
  font-size: 18px;
  line-height: 1.58;
}

/* Señales del cambio: radar, ahora más sobrio */
.change-radar {
  position: relative;
  min-height: 420px;
  overflow: visible;
}

.radar-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  border: 1px solid rgba(93,76,59,0.18);
  transform: translate(-50%, -50%);
  animation: radarPulse 5.8s ease-in-out infinite;
}

.ring-1 { width: 390px; height: 390px; }
.ring-2 { width: 270px; height: 270px; animation-delay: .7s; }
.ring-3 { width: 150px; height: 150px; animation-delay: 1.4s; }

.change-radar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 390px;
  background: linear-gradient(transparent, rgba(217,173,98,0.55), transparent);
  transform: translate(-50%, -50%) rotate(42deg);
  animation: radarSweep 12s linear infinite;
  transform-origin: center;
}

.change-radar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 390px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,173,98,0.45), transparent);
  transform: translate(-50%, -50%);
  opacity: .45;
}

@keyframes radarPulse {
  0%, 100% {
    opacity: 0.24;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.48;
    transform: translate(-50%, -50%) scale(1.035);
  }
}

@keyframes radarSweep {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.radar-signal {
  position: absolute;
  max-width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(93,76,59,0.12);
  box-shadow: 0 14px 44px rgba(60,48,37,0.06);
  animation: signalFloat 6.2s ease-in-out infinite;
}

.radar-signal span {
  display: block;
  margin-bottom: 6px;
  color: var(--alis-gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.radar-signal strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.s1 { left: 2%; top: 14%; }
.s2 { right: 4%; top: 22%; animation-delay: .8s; }
.s3 { left: 12%; bottom: 18%; animation-delay: 1.4s; }
.s4 { right: 8%; bottom: 14%; animation-delay: 2s; }

@keyframes signalFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.executive-before-after {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(93,76,59,0.18);
  border-bottom: 1px solid rgba(93,76,59,0.18);
}

.executive-before-after div {
  padding: 32px 30px;
  border-right: 1px solid rgba(93,76,59,0.18);
}

.executive-before-after div:last-child {
  border-right: 0;
}

.executive-before-after span,
.executive-deliverables li span,
.route-line article span {
  color: var(--alis-gold);
}

.executive-before-after span {
  display: block;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.executive-before-after h4 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.executive-before-after p {
  color: var(--alis-muted);
  font-size: 15px;
  line-height: 1.5;
}

.audience-copy {
  max-width: 840px;
  margin-bottom: 38px;
}

.audience-map {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-map span {
  color: #2a2119;
  background: rgba(255,255,255,0.72);
  border-color: rgba(93,76,59,0.12);
  font-size: 14px;
}

.capability-visual {
  max-width: 560px;
  padding: 24px 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(217,173,98,0.15), transparent 32%),
    rgba(255,255,255,0.62);
  border: 1px solid rgba(93,76,59,0.11);
}

.capability-row + .capability-row {
  margin-top: 16px;
}

.capability-row span {
  display: block;
  margin-bottom: 7px;
  color: #33291f;
  font-size: 13px;
  font-weight: 850;
}

.capability-row div {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(93,76,59,0.12);
}

.capability-row i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--alis-gold), #f0cf91);
}

.capability-copy {
  padding-top: 34px;
}

.executive-route {
  margin-bottom: 78px;
}

.route-header {
  max-width: 820px;
  margin-bottom: 46px;
}

.route-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.route-line::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,173,98,0.8), transparent);
}

.route-line article {
  position: relative;
  padding: 54px 22px 0;
}

.route-line article span {
  position: absolute;
  top: 0;
  left: 22px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--alis-gold);
  color: #17120d;
  font-size: 11px;
  font-weight: 950;
}

.route-line article strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.route-line article p {
  color: var(--alis-muted);
  font-size: 14px;
  line-height: 1.45;
}

.executive-deliverables {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.executive-deliverables ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(93,76,59,0.18);
}

.executive-deliverables li {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(93,76,59,0.18);
  font-size: 18px;
  font-weight: 800;
}

.executive-deliverables li span {
  font-size: 12px;
  letter-spacing: 0.16em;
}

.executive-case {
  position: relative;
  padding: 52px;
  border-radius: 46px;
  background:
    linear-gradient(
      90deg,
      rgba(18, 15, 12, 0.98) 0%,
      rgba(18, 15, 12, 0.86) 42%,
      rgba(18, 15, 12, 0.42) 68%,
      rgba(18, 15, 12, 0.18) 100%
    ),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
  color: var(--alis-cream-2);
  overflow: hidden;
}

.executive-case::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(217, 173, 98, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(17, 16, 13, 0.04), rgba(17, 16, 13, 0.38));
  pointer-events: none;
  z-index: 1;
}

.executive-case > * {
  position: relative;
  z-index: 2;
}

.executive-case p {
  color: rgba(255,250,243,0.72);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-self: end;
}

.case-metrics div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.case-metrics strong {
  display: block;
  color: var(--alis-gold-soft);
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.case-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255,250,243,0.68);
  font-size: 14px;
}

.executive-close {
  text-align: center;
  padding: 54px 0 20px;
}

.executive-close h3 {
  max-width: 900px;
  margin: 0 auto;
}

.executive-close .program-actions {
  justify-content: center;
}

/* =========================
   BROCHURE / DRAWER / MENU
========================= */

.floating-programs-tab {
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 90;
  transform: translateY(-50%);
  padding: 16px 11px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border: 1px solid rgba(217, 173, 98, 0.38);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: rgba(17, 16, 13, 0.78);
  backdrop-filter: blur(16px);
  color: var(--alis-gold-soft);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.floating-programs-tab:hover {
  background: rgba(17, 16, 13, 0.94);
}

.program-brochure-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(520px, 94vw);
  height: 100vh;
  padding: 34px;
  transform: translateX(104%);
  transition: transform 320ms ease;
  background:
    radial-gradient(circle at 86% 0%, rgba(217, 173, 98, 0.18), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, #f0e5d7 100%);
  color: var(--alis-text);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.26);
  overflow-y: auto;
}

.program-brochure-drawer.is-open {
  transform: translateX(0);
}

.brochure-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(17, 16, 13, 0.58);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.brochure-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.brochure-close {
  margin-left: auto;
  display: block;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(60, 48, 37, 0.18);
  background: rgba(255, 255, 255, 0.52);
  color: var(--alis-text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.brochure-content {
  padding-top: 46px;
}

.brochure-content h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.brochure-content > p {
  margin-bottom: 34px;
  color: var(--alis-muted);
  font-size: 17px;
}

.brochure-block {
  padding: 26px 0;
  border-top: 1px solid rgba(60, 48, 37, 0.14);
}

.brochure-block h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brochure-block p,
.brochure-block li {
  color: var(--alis-muted);
  font-size: 15px;
  line-height: 1.55;
}

.brochure-block ul {
  margin: 0;
  padding-left: 18px;
}

.brochure-block li + li {
  margin-top: 8px;
}

.drawer-program-menu {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(60, 48, 37, 0.14);
}

.drawer-program-menu a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(60, 48, 37, 0.14);
  color: var(--alis-text);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.drawer-program-menu a:hover {
  color: var(--alis-gold);
}

/* =========================
   DIAGNÓSTICO Y FOOTER
========================= */

.diagnostic-section {
  padding: 96px max(44px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(circle at 75% 12%, rgba(217, 173, 98, 0.18), transparent 36%),
    linear-gradient(135deg, #12100d 0%, #211b15 48%, #3a3025 100%);
  color: var(--alis-cream-2);
}

.diagnostic-section h2 {
  max-width: 780px;
  font-size: clamp(44px, 5vw, 78px);
}

.diagnostic-section p {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 250, 243, 0.72);
  font-size: 18px;
}

.diagnostic-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 34px max(44px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0e0d0b;
  color: rgba(255, 250, 243, 0.5);
  font-size: 13px;
}

.site-footer img {
  height: 30px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .site-header {
    padding: 0 22px;
  }

  .main-nav {
    display: none;
  }

  .programas-hero,
  .problem-section .section-grid,
  .executive-hero,
  .executive-change,
  .executive-capabilities,
  .executive-deliverables,
  .executive-case,
  .diagnostic-section {
    grid-template-columns: 1fr;
  }

  .programas-hero {
    padding-top: 92px;
  }

  .visual-panel {
    display: none;
  }

  .hero-visual {
    opacity: 0.44;
  }

  .problem-section .section-grid {
    gap: 34px;
  }

  .problem-points,
  .signal-grid,
  .metric-row,
  .insight-grid,
  .lab-band,
  .executive-before-after,
  .route-line,
  .case-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .program-cover,
  .program-cover.align-right {
    justify-content: flex-start;
    min-height: 76vh;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .program-cover::before,
  .program-cover.align-right::before,
  .theme-light .program-cover::before,
  .theme-light .program-cover.align-right::before {
    background:
      linear-gradient(180deg, rgba(17, 16, 13, 0.82), rgba(17, 16, 13, 0.38)),
      linear-gradient(90deg, rgba(17, 16, 13, 0.9), rgba(17, 16, 13, 0.22));
  }

  .theme-light .program-cover::before,
  .theme-light .program-cover.align-right::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.38)),
      linear-gradient(90deg, rgba(255, 250, 243, 0.92), rgba(255, 250, 243, 0.28));
  }

  .executive-hero-panel {
    min-height: 420px;
  }

  .executive-before-after div {
    border-right: 0;
    border-bottom: 1px solid rgba(93,76,59,0.18);
  }

  .route-line::before {
    display: none;
  }

  .route-line article {
    padding-top: 64px;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 66px;
  }

  .site-header {
    height: var(--nav-h);
    padding: 0 18px;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 10px;
  }

  .programas-hero,
  .problem-section,
  .program-nav-section,
  .program-cover,
  .program-section > .program-deep-content,
  .executive-hero,
  .executive-body,
  .diagnostic-section,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-copy h1,
  .program-cover-copy h2,
  .executive-hero-copy h2 {
    font-size: clamp(46px, 14vw, 72px);
    letter-spacing: -0.06em;
  }

  .problem-section .section-grid h2 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .problem-points,
  .signal-grid,
  .metric-row,
  .insight-grid,
  .lab-band,
  .executive-before-after,
  .route-line,
  .case-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .program-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .program-cover {
    min-height: 82vh;
  }

  .program-cover-copy p,
  .executive-hero-copy p,
  .problem-section .section-grid p,
  .diagnostic-section p {
    font-size: 16px;
  }

  .insight-grid article,
  .signal-card,
  .lab-band,
  .executive-case,
  .capability-visual {
    padding: 28px;
    border-radius: 28px;
  }

  .change-radar {
    min-height: 620px;
  }

  .radar-ring,
  .change-radar::before,
  .change-radar::after {
    opacity: 0.45;
  }

  .radar-signal {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-bottom: 14px;
  }

  .executive-hero-panel {
    border-radius: 30px;
  }

  .executive-case {
    padding: 30px;
    border-radius: 30px;
  }

  .program-brochure-drawer {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}


/* =========================================================
   LANGUAGE TOGGLE — EN / ES
   Requires programas-lang.js
========================================================= */

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(217, 173, 98, 0.38);
  background: rgba(17, 16, 13, 0.36);
  backdrop-filter: blur(16px);
}

.lang-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: transparent;
  color: rgba(255, 250, 243, 0.68);
  cursor: pointer;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-toggle button.is-active {
  background: var(--alis-gold);
  color: #15120e;
}

/* =========================================================
   PROGRAM COVERS 02-10 — EXECUTIVE HERO SYSTEM
   Makes the remaining 9 program sections closer to IA Executive.
========================================================= */

.program-cover {
  min-height: 88vh;
  padding-top: 96px;
  padding-bottom: 64px;
}

.program-cover::before {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.62), rgba(17,16,13,0.24));
}

.program-cover.align-right::before {
  background:
    linear-gradient(270deg, rgba(17,16,13,0.96), rgba(17,16,13,0.62), rgba(17,16,13,0.24));
}

.theme-light .program-cover::before {
  background:
    linear-gradient(90deg, rgba(244,238,229,0.98), rgba(244,238,229,0.74), rgba(244,238,229,0.22));
}

.theme-light .program-cover.align-right::before {
  background:
    linear-gradient(270deg, rgba(244,238,229,0.98), rgba(244,238,229,0.74), rgba(244,238,229,0.22));
}

.program-cover::after {
  background:
    radial-gradient(circle at 74% 42%, rgba(217, 173, 98, 0.16), transparent 30%),
    linear-gradient(180deg, transparent 70%, rgba(17,16,13,0.72) 100%);
}

.theme-light .program-cover::after {
  background:
    radial-gradient(circle at 74% 42%, rgba(217, 173, 98, 0.12), transparent 30%),
    linear-gradient(180deg, transparent 72%, rgba(244,238,229,0.88) 100%);
}

.program-cover-copy {
  max-width: 760px;
}

.program-cover-copy h2 {
  font-size: clamp(58px, 7.4vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.078em;
}

.program-cover-copy p {
  max-width: 590px;
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.55;
}

.program-cover::selection,
.executive-hero::selection {
  background: rgba(217, 173, 98, 0.35);
}

/* Deep content for the other 9 programs, closer to executive density */
.program-section > .program-deep-content {
  padding-top: 72px;
  padding-bottom: 86px;
}

.insight-grid {
  margin-bottom: 48px;
}

.insight-grid article {
  min-height: 260px;
}

.signal-card {
  min-height: 220px;
}

.lab-band {
  margin-top: 46px;
}

/* =========================================================
   EXECUTIVE PANEL FIX — NO OVERLAP
========================================================= */

.executive-hero-panel .hero-stat {
  left: 56px;
  bottom: 46px;
  max-width: 360px;
}

.executive-hero-panel .hero-stat strong {
  position: relative;
  z-index: 2;
  max-width: 360px;
}

.executive-hero-panel .hero-tags {
  right: 42px;
  bottom: 124px;
  z-index: 3;
}

@media (max-width: 980px) {
  .hero-tags,
  .executive-hero-panel .hero-tags {
    right: 34px;
    bottom: 120px;
  }
}

@media (max-width: 640px) {
  .lang-toggle {
    display: none;
  }

  .hero-tags,
  .executive-hero-panel .hero-tags {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 126px;
    justify-content: flex-start;
  }

  .executive-hero-panel .hero-stat {
    left: 28px;
    bottom: 36px;
  }
}


/* =========================================================
   PROGRAM-SPECIFIC VISUAL VARIATION
   Distinct hero images, visual panels and case images.
========================================================= */

.program-ia-ejecutiva .executive-hero-bg {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.62), rgba(17,16,13,0.24)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
}

.program-capacitacion .executive-hero-bg {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.58), rgba(17,16,13,0.18)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
}

.program-certificacion .executive-hero-bg {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.60), rgba(17,16,13,0.20)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
}

.program-laboratorio .executive-hero-bg {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.60), rgba(17,16,13,0.20)),
    url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
}

.program-red-talento .executive-hero-bg {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.58), rgba(17,16,13,0.18)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
}

.program-economia .executive-hero-bg {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.58), rgba(17,16,13,0.18)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
}

.program-vinculacion .executive-hero-bg {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.58), rgba(17,16,13,0.18)),
    url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
}

.program-gobernanza .executive-hero-bg {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.58), rgba(17,16,13,0.18)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
}

.program-comunidad .executive-hero-bg {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.58), rgba(17,16,13,0.18)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
}

.program-mvp .executive-hero-bg {
  background:
    linear-gradient(90deg, rgba(17,16,13,0.96), rgba(17,16,13,0.58), rgba(17,16,13,0.18)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center right;
}

/* Case-specific images */
.program-ia-ejecutiva .executive-case {
  background:
    linear-gradient(90deg, rgba(18,15,12,0.98) 0%, rgba(18,15,12,0.86) 42%, rgba(18,15,12,0.42) 68%, rgba(18,15,12,0.18) 100%),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}
.program-capacitacion .executive-case {
  background:
    linear-gradient(90deg, rgba(18,15,12,0.98), rgba(18,15,12,0.78), rgba(18,15,12,0.18)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}
.program-certificacion .executive-case {
  background:
    linear-gradient(90deg, rgba(18,15,12,0.98), rgba(18,15,12,0.78), rgba(18,15,12,0.18)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}
.program-laboratorio .executive-case {
  background:
    linear-gradient(90deg, rgba(18,15,12,0.98), rgba(18,15,12,0.78), rgba(18,15,12,0.18)),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}
.program-red-talento .executive-case {
  background:
    linear-gradient(90deg, rgba(18,15,12,0.98), rgba(18,15,12,0.78), rgba(18,15,12,0.18)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}
.program-economia .executive-case {
  background:
    linear-gradient(90deg, rgba(18,15,12,0.98), rgba(18,15,12,0.78), rgba(18,15,12,0.18)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}
.program-vinculacion .executive-case {
  background:
    linear-gradient(90deg, rgba(18,15,12,0.98), rgba(18,15,12,0.78), rgba(18,15,12,0.18)),
    url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}
.program-gobernanza .executive-case {
  background:
    linear-gradient(90deg, rgba(18,15,12,0.98), rgba(18,15,12,0.78), rgba(18,15,12,0.18)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}
.program-comunidad .executive-case {
  background:
    linear-gradient(90deg, rgba(18,15,12,0.98), rgba(18,15,12,0.78), rgba(18,15,12,0.18)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}
.program-mvp .executive-case {
  background:
    linear-gradient(90deg, rgba(18,15,12,0.98), rgba(18,15,12,0.78), rgba(18,15,12,0.18)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}

/* Distinct panel visual labels */
.visual-title {
  position: absolute;
  left: 56px;
  bottom: 52px;
  max-width: 360px;
  z-index: 2;
}
.visual-title small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,250,243,0.58);
  font-size: 13px;
}
.visual-title strong {
  display: block;
  font-size: clamp(34px, 4vw, 68px);
  line-height: .94;
  letter-spacing: -0.075em;
}
.visual-tags {
  position: absolute;
  right: 42px;
  bottom: 124px;
  z-index: 3;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 280px;
  justify-content: flex-end;
}
.visual-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(217,173,98,0.34);
  color: var(--alis-gold-soft);
  background: rgba(17,16,13,0.38);
  font-size: 12px;
  font-weight: 850;
}

/* alternate visual behaviors */
.visual-learning .mini-map span:nth-child(even) { border-radius: 4px; }
.visual-certification .mini-map span { width: 12px; height: 12px; border: 2px solid var(--alis-gold); background: transparent; }
.visual-lab .mini-map { transform: rotate(-3deg); }
.visual-network .mini-map span { animation-duration: 7s; }
.visual-economy .mini-map span { width: 8px; height: 22px; border-radius: 999px; }
.visual-global .mini-map { border-radius: 999px; }
.visual-governance .mini-map span { box-shadow: 0 0 0 6px rgba(217,173,98,.08), 0 0 24px rgba(217,173,98,.5); }
.visual-community .mini-map span:nth-child(odd) { background: rgba(255,250,243,.86); }
.visual-mvp .mini-map span { border-radius: 2px; transform: rotate(45deg); }

@media (max-width: 640px) {
  .visual-tags {
    left: 28px;
    right: 28px;
    bottom: 126px;
    justify-content: flex-start;
  }
  .visual-title {
    left: 28px;
    bottom: 36px;
  }
}
