/* ============================================================
   FUNDACIÓN MANOS LABORIOSAS POR COLOMBIA
   styles.css — Sistema de Diseño Corporativo
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ── CSS Variables ── */
:root {
  --terracota:  #c4622d;
  --terracota2: #a84d21;
  --bosque:     #1a3a2a;
  --oliva:      #4a6741;
  --naval:      #0f1e30;
  --naval2:     #172336;
  --crema:      #f5ede0;
  --crema2:     #ede3d0;
  --ambar:      #d4a064;
  --teal:       #5ab4b0;
  --blanco:     #ffffff;
  --texto:      #1a3a2a;

  --orange:     #ef7911;
  --orange2:    #d46912;
  --olive-logo: #8c8c28;
  --umber:      #7a441d;

  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --radius-sm: 3px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 12px rgba(15,30,48,.07);
  --shadow-md: 0 8px 32px rgba(15,30,48,.13);
  --shadow-lg: 0 24px 64px rgba(15,30,48,.2);

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-w: 1280px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--crema);
  color: var(--texto);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }
ul  { list-style: none; }
button, input, textarea { font-family: inherit; }

/* Accesibilidad */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.022'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9000;
}

/* ── Scroll-reveal ── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
}
.reveal       { transform: translateY(36px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-scale { transform: scale(.93); }

.reveal.visible, .reveal-left.visible,
.reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

/* ── Global: section labels & titles ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1.1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.section-label.amber { color: var(--ambar); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: var(--bosque);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin-bottom: 1.25rem;
}
.section-sub {
  color: rgba(26,58,42,.5);
  font-size: .95rem;
  line-height: 1.85;
  font-weight: 300;
  max-width: 520px;
}


/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--naval);
  transition: background .5s ease, box-shadow .5s ease, padding .3s ease;
  padding: 1rem 0;
}
#navbar.scrolled {
  box-shadow: 0 2px 40px rgba(0,0,0,.35);
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  flex-shrink: 0;
  transition: opacity .3s;
}
.nav-logo:hover { opacity: .85; }

/* Inline SVG logo in navbar */
.nav-svg {
  height: 42px; width: auto; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(239,121,17,.25));
  transition: filter .3s;
}
.nav-logo:hover .nav-svg {
  filter: drop-shadow(0 4px 12px rgba(239,121,17,.45));
}

/* Brand text block beside SVG */
.nav-brand {
  display: flex; flex-direction: column;
  line-height: 1.25;
}
.nb-main {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--crema);
  letter-spacing: .02em;
}
.nb-sub {
  font-size: .54rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,237,224,.32);
}

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  position: relative;
  color: rgba(245,237,224,.7);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terracota);
  transition: width .35s var(--ease-expo);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-nav {
  background: var(--terracota) !important;
  color: #fff !important;
  padding: .5rem 1.5rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(196,98,45,.4) !important;
  transition: background .3s, transform .25s !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--terracota2) !important; transform: translateY(-2px) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: .5rem;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: rgba(245,237,224,.8);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s var(--ease-expo), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.mobile-menu {
  display: none;
  background: var(--naval);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 1rem 2rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(245,237,224,.65);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .3s, padding-left .3s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--ambar); padding-left: .5rem; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bosque);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Grid decorativo de fondo */
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,237,224,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,237,224,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Círculo concéntrico decorativo arriba-derecha */
.hero-accent-circle {
  position: absolute;
  top: -12vw; right: -10vw;
  width: clamp(280px, 52vw, 720px);
  height: clamp(280px, 52vw, 720px);
  border-radius: 50%;
  border: 1px solid rgba(196,98,45,.12);
  pointer-events: none;
}
.hero-accent-circle::before {
  content: '';
  position: absolute; inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(196,98,45,.09);
}
.hero-accent-circle::after {
  content: '';
  position: absolute; inset: 28%;
  border-radius: 50%;
  border: 1px solid rgba(196,98,45,.07);
  background: radial-gradient(circle, rgba(196,98,45,.05), transparent 70%);
}

/* ── Hero split layout ── */
.hero-split {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  flex: 1; /* fill the hero flex container */
  max-width: var(--max-w); width: 100%;
  margin: 0 auto;
  padding: 8rem 2.5rem 5rem 0;  /* sin padding izquierdo → logo pega al borde */
  gap: 2.5rem;
}

.hero-logo-panel {
  flex: 0 0 54%;
  display: flex; align-items: center; justify-content: flex-start;
}

.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
}

/* Radial glow behind the SVG */
.logo-glow {
  position: absolute; inset: -18%;
  background: radial-gradient(ellipse at 55% 50%,
    rgba(239,121,17,.20) 0%,
    rgba(140,140,40,.08) 38%,
    transparent 68%);
  pointer-events: none;
  border-radius: 50%;
}

/* Large animated hero SVG */
.logo-hero {
  position: relative; z-index: 1;
  width: 100%;
  animation: logoBreath 5.5s ease-in-out infinite;
  animation-delay: 2.8s;
  filter: drop-shadow(0 16px 48px rgba(239,121,17,.18));
  overflow: visible;
}

.hero-text-panel {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}

/* ── SVG Hand Animation Keyframes ── */
@keyframes handEnterOL {
  from { opacity: 0; transform: translate(-45px, -40px) rotate(-14deg) scale(.82); }
  to   { opacity: 1; transform: none; }
}
@keyframes handEnterLL {
  from { opacity: 0; transform: translate(-60px, 12px) rotate(-9deg) scale(.82); }
  to   { opacity: 1; transform: none; }
}
@keyframes handEnterRL {
  from { opacity: 0; transform: translate(60px, 12px) rotate(9deg) scale(.82); }
  to   { opacity: 1; transform: none; }
}
@keyframes handEnterBR {
  from { opacity: 0; transform: translate(42px, 45px) rotate(13deg) scale(.82); }
  to   { opacity: 1; transform: none; }
}
@keyframes handEnterBL {
  from { opacity: 0; transform: translate(-42px, 45px) rotate(-11deg) scale(.82); }
  to   { opacity: 1; transform: none; }
}
@keyframes handEnterOR {
  from { opacity: 0; transform: translate(45px, -40px) rotate(14deg) scale(.82); }
  to   { opacity: 1; transform: none; }
}
@keyframes logoBreath {
  0%, 100% { transform: scale(1) translateY(0); }
  50%       { transform: scale(1.016) translateY(-5px); }
}

/* ── Hand path base styles ── */
.hand {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation-duration: 1.15s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
}
.hand.h-ol { animation-name: handEnterOL; animation-delay: .15s; }
.hand.h-ll { animation-name: handEnterLL; animation-delay: .38s; }
.hand.h-rl { animation-name: handEnterRL; animation-delay: .58s; }
.hand.h-br { animation-name: handEnterBR; animation-delay: .78s; }
.hand.h-bl { animation-name: handEnterBL; animation-delay: .98s; }
.hand.h-or { animation-name: handEnterOR; animation-delay: 1.18s; }

/* Navbar hands — static, no animation */
.nh { transform-box: fill-box; transform-origin: center; }

.hero-overline {
  display: flex; align-items: center; gap: .75rem;
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,237,224,.35);
  margin-bottom: 2.75rem;
}
.overline-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Composición tipográfica */
.hero-title-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5rem;
}
.hero-t1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.8rem, 9.5vw, 13rem);
  line-height: .88;
  letter-spacing: -.03em;
  color: var(--crema);
  display: block;
}
.hero-t2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 6.8vw, 9rem);
  line-height: .88;
  letter-spacing: -.03em;
  color:  var(--crema);
  display: block;
  align-self: flex-end;
  padding-right: .5vw;
  margin-top: -.5rem;
}

/* Colombia display title wrapper */
.hero-t3-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,237,224,.08);
}
.hero-t3-eyebrow {
  font-size: .80rem;
  font-weight: 600;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .35rem;
}
.hero-colombia {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 6.8vw, 9rem);
  line-height: .88;
  letter-spacing: -.03em;
  display: block;
  cursor: default;
  user-select: none;
}
/* Each syllable — ghost outline by default, flag color on hover */
.co-co, .co-lom, .co-bia {
  transition: color .42s ease, -webkit-text-stroke .38s ease;
}
.co-co  {
  color: rgba(252,209,22,0);
  -webkit-text-stroke: 1.5px rgba(245,237,224,.32);
  transition-delay: .00s;
}
.co-lom {
  color: rgba(0,80,200,0);
  -webkit-text-stroke: 1.5px rgba(245,237,224,.32);
  transition-delay: .06s;
}
.co-bia {
  color: rgba(232,16,48,0);
  -webkit-text-stroke: 1.5px rgba(245,237,224,.32);
  transition-delay: .12s;
}
.hero-colombia:hover .co-co  {
  color: #FCD116;
  -webkit-text-stroke: 1.5px rgba(252,209,22,.55);
}
.hero-colombia:hover .co-lom {
  color: #0050c8;
  -webkit-text-stroke: 1.5px rgba(0,80,200,.55);
}
.hero-colombia:hover .co-bia {
  color: #e81230;
  -webkit-text-stroke: 1.5px rgba(232,18,48,.55);
}

.hero-body { max-width: 480px; }
.hero-body p {
  color: rgba(245,237,224,.5);
  font-size: 1.02rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.25rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Botón primario */
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--terracota);
  color: #fff;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .9rem 2.25rem;
  border-radius: var(--radius-sm);
  transition: transform .3s var(--ease-spring), box-shadow .3s, background .3s;
  box-shadow: 0 4px 24px rgba(196,98,45,.45);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(196,98,45,.6);
  background: var(--terracota2);
}
.btn-primary svg { transition: transform .3s var(--ease-spring); }
.btn-primary:hover svg { transform: translateX(4px); }

/* Botón outline */
.btn-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  color: rgba(245,237,224,.55);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .9rem 1.75rem;
  border: 1px solid rgba(245,237,224,.18);
  border-radius: var(--radius-sm);
  transition: color .3s, border-color .3s, transform .3s var(--ease-spring);
}
.btn-outline:hover {
  color: var(--crema);
  border-color: rgba(245,237,224,.45);
  transform: translateY(-2px);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  z-index: 2;
  display: flex; align-items: center; gap: .9rem;
  color: rgba(245,237,224,.25);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scroll-line {
  width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--terracota), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: scaleX(.55); transform-origin: left; }
  50%       { opacity: 1;   transform: scaleX(1); }
}


/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--terracota);
  position: relative; overflow: hidden; z-index: 1;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(168,77,33,.6) 0%,
    transparent 50%,
    rgba(168,77,33,.4) 100%);
  pointer-events: none;
}

.stats-bar-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  padding: .75rem 3rem;
  text-align: center;
  flex-shrink: 0;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: .4rem;
}
.stat-label {
  display: block;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.stat-sep {
  width: 1px; height: 38px;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}


/* ============================================================
   GALERÍA / MEDIA
   ============================================================ */
#proposito { overflow: hidden; background: var(--naval); }

.galeria-section {
  background: var(--naval);
  padding: 6rem 2.5rem;
  text-align: center;
}

.galeria-header {
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.galeria-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--crema);
  line-height: 1.2;
  letter-spacing: -.015em;
  margin-bottom: 1rem;
}

.galeria-sub {
  color: rgba(245,237,224,.45);
  font-size: .93rem;
  line-height: 1.8;
  font-weight: 300;
}

.galeria-carousel {
  max-width: var(--max-w);
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,237,224,.15) transparent;
  padding-bottom: 1rem;
}
.galeria-carousel::-webkit-scrollbar { height: 6px; }
.galeria-carousel::-webkit-scrollbar-track { background: transparent; }
.galeria-carousel::-webkit-scrollbar-thumb { background: rgba(245,237,224,.15); border-radius: 3px; }

.galeria-track {
  display: flex;
  gap: 1.25rem;
  padding: 0 1rem;
}

.galeria-item {
  flex: 0 0 320px;
  height: 220px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.galeria-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.04);
  border: 2px dashed rgba(245,237,224,.12);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(245,237,224,.25);
  transition: background .3s, border-color .3s;
}
.galeria-placeholder:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(245,237,224,.2);
}
.galeria-placeholder span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.galeria-cta {
  margin-top: 2.5rem;
}
.btn-galeria {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--terracota);
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  transition: background .3s, transform .3s var(--ease-spring), box-shadow .3s;
  box-shadow: 0 4px 20px rgba(196,98,45,.35);
}
.btn-galeria:hover {
  background: var(--terracota2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,98,45,.5);
}




/* ============================================================
   IMPACTO Y PRESENCIA — Rediseño
   ============================================================ */
#impacto {
  position: relative;
  background: linear-gradient(155deg, #0c1a2e 0%, #0e2216 50%, #0c1a2e 100%);
  padding: 7rem 2.5rem 8rem;
  overflow: hidden;
}

/* Fotos de fondo atmosféricas */
.imp-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.imp-bg-photo {
  position: absolute;
  top: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: .13;
  filter: grayscale(35%) brightness(.8);
}
.imp-backdrop-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%, transparent 20%, #0c1a2e 85%),
    linear-gradient(to right, #0c1a2e 0%, transparent 28%, transparent 72%, #0c1a2e 100%);
}

/* Contenido */
.imp-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* Zona de estadísticas: héroe + divisor + secundarias */
.imp-stats-zone {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  margin: 2.5rem 0 0;
}

.imp-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.imp-big-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 14vw, 12.5rem);
  color: var(--crema);
  line-height: .85;
  letter-spacing: -.04em;
  display: block;
}

.imp-big-meta { display: flex; flex-direction: column; gap: .35rem; }

.imp-big-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(245,237,224,.5);
}

.imp-big-sub {
  font-size: .82rem;
  color: rgba(245,237,224,.25);
  font-style: italic;
}

.imp-vdivider {
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(245,237,224,.12) 35%,
    rgba(245,237,224,.12) 65%,
    transparent);
  flex-shrink: 0;
}

.imp-secondary {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding-left: .5rem;
}

.imp-sec-stat {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.imp-sec-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -.03em;
  min-width: 4.5rem;
  display: block;
}
.imp-c-teal  { color: var(--teal); }
.imp-c-terra { color: var(--terracota); }
.imp-c-ambar { color: var(--ambar); }

.imp-sec-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,237,224,.38);
  line-height: 1.6;
}

/* Presencia territorial */
.imp-territory { margin-top: 5.5rem; }

.imp-terr-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.imp-terr-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.07);
}
.imp-terr-lbl {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(245,237,224,.22);
  white-space: nowrap;
}

.imp-deptos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.imp-depto {
  display: flex;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
  transition: background .3s;
}
.imp-depto:last-child { border-right: none; }
.imp-depto:hover { background: rgba(255,255,255,.05); }

.imp-depto-bar {
  width: 3px;
  min-height: 28px;
  align-self: stretch;
  border-radius: 3px;
  background: var(--dc, var(--terracota));
  flex-shrink: 0;
  opacity: .85;
}

.imp-depto-content { display: flex; flex-direction: column; gap: .45rem; }

.imp-depto-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--crema);
  letter-spacing: -.01em;
}

.imp-depto-places {
  font-size: .76rem;
  color: rgba(245,237,224,.42);
  line-height: 1.7;
}

.imp-depto-sub {
  font-size: .68rem;
  color: rgba(245,237,224,.22);
  line-height: 1.6;
  font-style: italic;
}

.imp-soon {
  font-style: italic;
  color: rgba(245,237,224,.2) !important;
}

.imp-footnote {
  font-style: italic;
  font-size: .9rem;
  color: rgba(255,255,255,.18);
  margin-top: 4rem;
  text-align: center;
}

/* ── Responsive impacto ─────────────────────────────────────── */
@media (max-width: 860px) {
  .imp-stats-zone { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  .imp-vdivider { display: none; }
  .imp-secondary { flex-direction: row; flex-wrap: wrap; gap: 1.5rem 3rem; padding-left: 0; }
  .imp-sec-stat { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .imp-deptos { grid-template-columns: 1fr 1fr; }
  .imp-depto:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .imp-deptos { grid-template-columns: 1fr; }
  .imp-depto { border-right: none; }
}


/* ============================================================
   ALIADOS
   ============================================================ */
/* ============================================================
   ALIADOS — Red de emprendedores y colaboradores
   ============================================================ */
#aliados {
  background: var(--crema);
  padding: 7rem 2.5rem 0;
  overflow: hidden;
  position: relative;
}

.al-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

/* ── Header ──────────────────────────────────────────────── */
.al-header {
  text-align: center;
  padding-bottom: 5rem;
  position: relative;
}
.al-header::after {
  content: '';
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--terracota);
}
.al-eyebrow {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1rem;
}
.al-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--bosque);
  letter-spacing: -.04em;
  line-height: 1.0;
  margin-bottom: .9rem;
}
.al-title em {
  font-style: italic;
  color: var(--terracota);
  font-weight: 400;
}
.al-sub {
  font-size: .88rem;
  color: rgba(26,58,42,.5);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ── Ticker ──────────────────────────────────────────────── */
.al-ticker-wrap {
  position: relative;
  background: var(--bosque);
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  width: 100vw;
  margin-bottom: 4.5rem;
}
.al-ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 1.4rem 0 1.6rem;
  background: var(--terracota);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.al-ticker-label::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 0;
  bottom: 0;
  border-left: 16px solid var(--terracota);
  border-top: 100px solid transparent;
}
.al-ticker {
  overflow: hidden;
  padding: .7rem 0;
  padding-left: min(180px, 22vw);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.al-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  animation: al-marquee 32s linear infinite;
  white-space: nowrap;
}
.al-ticker-wrap:hover .al-ticker-track { animation-play-state: paused; }
@keyframes al-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.al-pitem {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.al-plogo-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.al-plogo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.al-pname {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--crema);
  letter-spacing: .025em;
}
.al-psep {
  font-size: .55rem;
  color: var(--terracota);
  opacity: .75;
}

/* ── CTA Split ───────────────────────────────────────────── */
.al-red-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 4.5rem;
  text-decoration: none;
  box-shadow: 0 16px 56px rgba(10,18,28,.14);
  transition: box-shadow .45s;
  min-height: 300px;
}
.al-red-split:hover { box-shadow: 0 28px 80px rgba(10,18,28,.22); }
.al-red-left {
  background: var(--bosque);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
}
.al-red-left::before {
  content: 'RED';
  position: absolute;
  bottom: -.5rem;
  right: -1.5rem;
  font-family: var(--font-display);
  font-size: 11rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,.045);
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
}
.al-red-left .al-eyebrow { color: var(--ambar); }
.al-red-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--crema);
  line-height: 1.15;
  letter-spacing: -.03em;
}
.al-red-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracota);
  transition: gap .3s, color .3s;
}
.al-red-split:hover .al-red-cta { gap: 1rem; color: var(--ambar); }
.al-red-photo {
  overflow: hidden;
  position: relative;
}
.al-red-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.al-red-split:hover .al-red-photo img { transform: scale(1.07); }
@media (max-width: 680px) {
  .al-red-split { grid-template-columns: 1fr; }
  .al-red-photo { min-height: 220px; position: relative; }
  .al-red-photo img { position: absolute; }
  .al-red-left { padding: 2.5rem 2rem; }
  .al-red-left::before { font-size: 7rem; }
}

/* ── Colaboraciones ──────────────────────────────────────── */
.al-colab {
  margin-bottom: 5.5rem;
}
.al-colab-hdr {
  margin-bottom: 2.5rem;
}
.al-colab-htitle {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--bosque);
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-top: .45rem;
}
.al-colab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.al-colab-col {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(26,58,42,.06);
  border-top: 3px solid var(--cc, var(--bosque));
  transition: box-shadow .3s, transform .3s;
}
.al-colab-col:hover {
  box-shadow: 0 8px 32px rgba(26,58,42,.1);
  transform: translateY(-2px);
}
.al-colab-col-inner {
  padding: 1.6rem 1.5rem 1.75rem;
}
.al-colab-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--cc, var(--bosque));
  opacity: .09;
  margin-bottom: -.6rem;
  letter-spacing: -.05em;
  user-select: none;
}
.al-colab-name {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cc, var(--bosque));
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(26,58,42,.08);
  margin-bottom: 1rem;
}
.al-colab-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.al-colab-list li {
  font-size: .81rem;
  color: rgba(26,58,42,.62);
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.al-colab-list li::before {
  content: '4';
  color: var(--cc, var(--terracota));
  font-weight: 700;
  flex-shrink: 0;
  font-size: .75rem;
}
@media (max-width: 768px) {
  .al-colab-grid { grid-template-columns: 1fr; }
}



/* ============================================================
   SÚMATE — Mosaico fotográfico asimétrico
   ============================================================ */


.sumate-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sumate-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--bosque);
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-top: .55rem;
}

.sumate-sub {
  color: rgba(26,58,42,.48);
  font-size: .92rem;
  line-height: 1.8;
  max-width: 440px;
  margin: .9rem auto 0;
}

/* ── Grid asimétrico ─────────────────────────────────────── */
.sumate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 360px 320px;
  gap: 5px;
}

/* Row 1: wide + narrow */
.sumate-card:nth-child(1) { grid-column: span 2; }
.sumate-card:nth-child(2) { grid-column: span 1; }

/* Row 2: narrow + wide */
.sumate-card:nth-child(3) { grid-column: span 1; }
.sumate-card:nth-child(4) { grid-column: span 2; }

/* ── Card base ──────────────────────────────────────────── */
.sumate-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
}

/* Photo background */
.sc-bg {
  position: absolute;
  inset: 0;
  background-image: var(--sc-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.sumate-card:hover .sc-bg { transform: scale(1.11); }

/* Gradient veil */
.sc-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--sc-top, rgba(0,0,0,.3)) 0%,
    transparent 38%,
    transparent 42%,
    var(--sc-bot, rgba(0,0,0,.85)) 100%
  );
  transition: opacity .5s;
  z-index: 1;
}
.sumate-card:hover .sc-veil { opacity: .82; }

/* Ghost number */
.sc-num {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.07);
  user-select: none;
  z-index: 2;
  transition: color .4s, transform .5s;
}
.sumate-card:hover .sc-num {
  color: rgba(255,255,255,.12);
  transform: scale(1.05) translateY(-4px);
}

/* Content */
.sc-body {
  position: relative;
  z-index: 3;
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.sc-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.sc-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  max-width: 360px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s .05s, transform .35s .05s;
}
.sumate-card:hover .sc-desc {
  opacity: 1;
  transform: translateY(0);
}

.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .25rem;
  transition: color .3s, gap .3s;
}
.sumate-card:hover .sc-cta {
  color: rgba(255,255,255,.9);
  gap: .7rem;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .sumate-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 260px);
  }
  .sumate-card:nth-child(1),
  .sumate-card:nth-child(2),
  .sumate-card:nth-child(3),
  .sumate-card:nth-child(4) { grid-column: span 1; }
  .sc-desc { opacity: 1; transform: none; }
}
@media (max-width: 480px) {
  .sumate-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 240px);
  }
}



/* ============================================================
   FOOTER / CONTACTO
   ============================================================ */
#contacto {
  background: var(--naval);
  position: relative; overflow: hidden;
}

.footer-topline {
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    var(--terracota) 20%,
    var(--ambar) 50%,
    var(--teal) 80%,
    transparent);
}

#contacto::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,180,176,.04), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 5.5rem 2.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* Marca */
.footer-logo {
  height: 56px; width: auto;
  filter: brightness(0) invert(1); opacity: .85;
  margin-bottom: 1.5rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--crema); margin-bottom: .2rem;
}
.footer-brand-sub {
  font-size: .6rem; letter-spacing: .24em;
  color: var(--teal); text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic; font-size: .93rem;
  color: rgba(245,237,224,.35); line-height: 1.7;
  margin-bottom: 2rem;
}
.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
  width: 35px; height: 35px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,237,224,.55);
  transition: background .3s, border-color .3s, transform .3s var(--ease-spring), color .3s;
}
.footer-socials a:hover {
  background: var(--terracota);
  border-color: var(--terracota); color: #fff;
  transform: translateY(-3px) scale(1.1);
}

/* Contacto */
.footer-contact h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--teal); letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,.1);
  color: var(--crema);
  padding: .65rem 0;
  font-size: .87rem; outline: none;
  transition: border-color .3s;
}
.form-input::placeholder { color: rgba(245,237,224,.22); }
.form-input:focus { border-bottom-color: var(--ambar); }
textarea.form-input { resize: none; height: 86px; padding-top: .5rem; }

.btn-submit {
  width: 100%; background: var(--terracota);
  color: #fff;
  font-weight: 700; font-size: .7rem;
  letter-spacing: .13em; text-transform: uppercase;
  padding: .9rem; border: none;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: background .3s, transform .3s var(--ease-spring), box-shadow .3s;
  box-shadow: 0 4px 20px rgba(196,98,45,.4);
}
.btn-submit:hover {
  background: var(--terracota2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,98,45,.5);
}
.form-success {
  display: none; margin-top: .75rem;
  text-align: center; color: var(--teal); font-size: .82rem;
}

/* Contacto */
.contact-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: .85rem;
  color: rgba(245,237,224,.5); font-size: .84rem; line-height: 1.55;
}
.contact-item svg { flex-shrink: 0; margin-top: .1rem; }
.contact-item a { color: rgba(245,237,224,.5); transition: color .3s; }
.contact-item a:hover { color: var(--ambar); }

.footer-legal {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column; gap: .4rem;
}
.footer-legal a { color: rgba(245,237,224,.22); font-size: .68rem; transition: color .3s; }
.footer-legal a:hover { color: var(--ambar); }

.footer-bottom {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p {
  color: rgba(245,237,224,.18);
  font-size: .65rem; letter-spacing: .09em;
}
.footer-credit {
  font-size: .58rem;
  letter-spacing: .08em;
  color: rgba(245,237,224,.13);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.footer-credit:hover { color: rgba(245,237,224,.55); }


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

/* Tablet */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .stats-bar-inner { flex-wrap: wrap; }
  .stat-sep { display: none; }
  .stat-item { padding: .75rem 2rem; }

  .presencia-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

/* Tablet intermedio: colapsar logo panel encima del texto */
@media (max-width: 1000px) {
  .hero-split {
    flex-direction: column;
    padding: 8rem 2.5rem 4rem;
    gap: 2rem;
  }
  .hero-logo-panel { flex: none; width: 60%; max-width: 340px; }
  .hero-text-panel { width: 100%; }
  .hero-t1 { font-size: clamp(4rem, 12vw, 7rem); }
  .hero-t2 { font-size: clamp(2.8rem, 8.5vw, 5rem); }
  .hero-colombia { font-size: clamp(2.8rem, 8.5vw, 5rem); }
}

/* Mobile */
@media (max-width: 768px) {
  #impacto, #aliados { padding: 5rem 1.5rem; }
  .programas-header { padding: 2rem 1.5rem 1.5rem; }
  .galeria-section { padding: 4rem 1.5rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nb-main { font-size: .88rem; }
  .nb-sub  { display: none; }

  .hero-split { padding: 6.5rem 1.5rem 3.5rem; gap: 1rem; align-items: center; }
  .hero-logo-panel { width: 55%; max-width: 220px; }
  .hero-text-panel { align-items: center; text-align: center; width: 100%; }
  .hero-title-block { align-items: center; margin-bottom: 2rem; }
  .hero-t1 { font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero-t2 { font-size: clamp(2.5rem, 10vw, 4.5rem); align-self: center; padding-right: 0; }
  .hero-t3-wrap { align-items: center; }
  .hero-colombia { font-size: clamp(2.5rem, 10vw, 4.5rem); }
  .hero-overline { justify-content: center; }
  .hero-ctas { justify-content: center; }

  .impact-grid { grid-template-columns: 1fr; }
  .impact-stat + .impact-stat { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
  .center-stat { border-left: none; border-right: none; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem 3rem;
  }

  .presencia-grid { grid-template-columns: 1fr; }
  .galeria-item { flex: 0 0 260px; height: 180px; }
}

/* Móvil pequeño */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-primary, .btn-outline { justify-content: center; width: 100%; }
  .hero-logo-panel { max-width: 180px; }
  .hero-t1 { font-size: clamp(3rem, 15vw, 5.5rem); }
  .hero-t2, .hero-colombia { font-size: clamp(2.2rem, 11vw, 3.8rem); }

  .stats-bar-inner { justify-content: flex-start; }
  .stat-item { flex: 1 1 45%; min-width: 140px; }

  .vinculacion-grid { grid-template-columns: 1fr; }
  .vinc-card { border-right: none; border-bottom: 1px solid rgba(26,58,42,.07); }
  .vinc-card:last-child { border-bottom: none; }
  .galeria-item { flex: 0 0 220px; height: 160px; }
}


/* ============================================================
   NAV LOGO — isotipo SVG inline + texto de marca
   ============================================================ */
.nav-isotipo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  overflow: visible;
  filter: drop-shadow(0 2px 6px rgba(239,121,17,.25));
  transition: filter .3s;
}

/* Colores de marca en el isotipo del navbar */
#navbar #path21, #navbar #path20 { fill: #f08720; }
#navbar #path19, #navbar #path18 { fill: #789528; }
#navbar #path17, #navbar #path12-6-4 { fill: #9e4716; }
.nav-logo:hover .nav-isotipo {
  filter: drop-shadow(0 4px 12px rgba(239,121,17,.45));
}

/* Restaurar texto de marca */
.nav-brand {
  display: flex; flex-direction: column;
  line-height: 1.25;
}
.nb-main {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--crema);
  letter-spacing: .02em;
}
.nb-sub {
  font-size: .54rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,237,224,.32);
}


/* ============================================================
   NAV DROPDOWN — Programas
   ============================================================ */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.dropdown-arrow {
  transition: transform .3s var(--ease-expo);
  opacity: .6;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--naval2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: .5rem 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease-expo), transform .3s var(--ease-expo);
  z-index: 300;
  list-style: none;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: .65rem 1.4rem;
  color: rgba(245,237,224,.65);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s, background .25s, padding-left .25s;
}
.nav-dropdown li a:hover {
  color: var(--crema);
  background: rgba(255,255,255,.04);
  padding-left: 1.8rem;
}
.nav-dropdown li a::after { display: none; }

/* Separador sutil entre items */
.nav-dropdown li + li {
  border-top: 1px solid rgba(255,255,255,.04);
}

/* Mobile sub-links */
.mobile-sub-links {
  padding-left: 1rem;
  border-left: 2px solid rgba(196,98,45,.35);
  margin: .25rem 0 .5rem;
}
.mobile-sub-links a {
  display: block;
  color: rgba(245,237,224,.45) !important;
  font-size: .68rem !important;
  padding: .5rem 0 !important;
  border-bottom: none !important;
}
.mobile-sub-links a:hover { color: var(--ambar) !important; padding-left: .4rem !important; }


/* ============================================================
   HERO LOGO — isotipo SVG inline con animacion breath
   ============================================================ */
.logo-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  animation: logoBreath 5.5s ease-in-out infinite;
  animation-delay: .4s;
  filter: drop-shadow(0 16px 48px rgba(239,121,17,.18));
  overflow: visible;
}


/* ============================================================
   PROPOSITO — Video hero + galeria masonry
   ============================================================ */
.proposito-video-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proposito-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.proposito-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,30,48,.55) 0%,
    rgba(15,30,48,.45) 50%,
    rgba(15,30,48,.75) 100%
  );
}

.proposito-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 0 2rem;
}

.proposito-video-content .galeria-title {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  margin-bottom: 1rem;
}

.proposito-video-content .galeria-sub {
  color: rgba(255,255,255,.65);
}

/* Galeria masonry */
.galeria-masonry-section {
  background: var(--naval);
  padding: 3px 3px 0;
}

.galeria-masonry {
  columns: 4;
  column-gap: 3px;
  max-width: 100%;
}

.gm-item {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: hidden;
  position: relative;
}

.gm-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .6s var(--ease-expo), filter .4s;
  filter: brightness(.88) saturate(.92);
}

.gm-item.gm-tall img {
  aspect-ratio: 3 / 4;
}

.gm-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}

/* Overlay de color al hover */
.gm-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(196,98,45,.35) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity .4s;
}
.gm-item:hover::after { opacity: 1; }







/* ═══════════════════════════════════════════════════════════════
   PROGRAMAS — Paneles horizontales
═══════════════════════════════════════════════════════════════ */

#programas {
  background: var(--naval);
  padding: 0;
}

.programas-header {
  text-align: center;
  padding: 4.5rem 2rem 3rem;
  position: relative;
}

.programas-header::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--terracota);
  margin: 2rem auto 0;
  border-radius: 2px;
}

.prog-section-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--crema);
  line-height: 1.15;
  letter-spacing: -.04em;
  margin-top: .6rem;
}

/* ── Horizontal strip ───────────────────────────────────────── */
.lineas-wrapper {
  display: flex;
  height: 76vh;
  min-height: 500px;
  max-height: 740px;
}

/* ── Panel ──────────────────────────────────────────────────── */
.linea-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid rgba(255,255,255,.06);
  border-top: 3px solid var(--lp-accent, var(--orange));
  /* Only transition flex and outline — cheapest possible */
  transition: flex .7s cubic-bezier(0.4,0,0.2,1);
}
.linea-panel:last-child { border-right: none; }

/* Compress siblings when any panel is active */
.lineas-wrapper:has(.linea-panel:hover) .linea-panel,
.lineas-wrapper:has(.linea-panel:focus-visible) .linea-panel { flex: 0.45; }
.linea-panel:hover,
.linea-panel:focus-visible { flex: 3.5 !important; outline: none; }

/* ── Background photo (no filter — use overlays instead) ────── */
.lp-bg {
  position: absolute;
  inset: 0;
  background-image: var(--lp-img);
  background-size: cover;
  background-position: center;
  /* Scale only — transform is GPU-accelerated and cheap */
  transform: scale(1.07);
  transition: transform .8s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.linea-panel:hover .lp-bg,
.linea-panel:focus-visible .lp-bg { transform: scale(1); }

/* Dark desaturate overlay — replaces expensive filter on .lp-bg */
.lp-dim {
  position: absolute;
  inset: 0;
  background: rgba(10,20,35,.45);
  transition: opacity .5s ease;
  z-index: 1;
}
.linea-panel:hover .lp-dim,
.linea-panel:focus-visible .lp-dim { opacity: 0; }

/* ── Gradient overlay ───────────────────────────────────────── */
.lp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,20,35,.97) 0%,
    rgba(10,20,35,.5) 50%,
    rgba(10,20,35,.1) 100%);
  z-index: 2;
}

/* ── Ghost number ───────────────────────────────────────────── */
.lp-ghost-num {
  position: absolute;
  top: 1rem;
  right: .5rem;
  font-family: var(--font-body);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.04);
  user-select: none;
  pointer-events: none;
  z-index: 3;
  /* No font-size transition — causes reflow */
}
.linea-panel:hover .lp-ghost-num { color: rgba(255,255,255,.08); }

/* ── Compressed vertical label ──────────────────────────────── */
.lp-compressed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2.5rem;
  gap: 1rem;
  z-index: 4;
  transition: opacity .2s ease;
  pointer-events: none;
}
.linea-panel:hover .lp-compressed,
.linea-panel:focus-visible .lp-compressed { opacity: 0; }

.lp-num {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--lp-accent, var(--orange));
}

.lp-vert-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,237,224,.6);
  white-space: nowrap;
}

/* ── Expanded content ───────────────────────────────────────── */
.lp-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 0 2rem 2.5rem;
  z-index: 4;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .3s .15s ease, transform .35s .12s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.linea-panel:hover .lp-content,
.linea-panel:focus-visible .lp-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Logo */
.lp-logo-zone {
  margin-bottom: 1.4rem;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.lp-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.lp-logo-placeholder {
  display: inline-flex;
  flex-direction: column;
  gap: .25rem;
  padding: .65rem 1.1rem;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 2px;
}
.lp-lph-name {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lp-accent, var(--orange));
}
.lp-lph-sub {
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}

/* Tag, title, desc, cta */
.lp-tag {
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lp-accent, var(--orange));
  margin-bottom: .65rem;
}
.lp-title {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 800;
  color: var(--crema);
  line-height: 1.2;
  letter-spacing: -.022em;
  margin-bottom: .9rem;
}
.lp-desc {
  font-size: .8rem;
  line-height: 1.7;
  color: rgba(245,237,224,.55);
  margin-bottom: 1.4rem;
  max-width: 320px;
}
.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lp-accent, var(--orange));
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: gap .25s var(--ease-spring), border-color .25s;
}
.lp-cta svg { transition: transform .25s var(--ease-spring); flex-shrink: 0; }
.linea-panel:hover .lp-cta { gap: .65rem; border-bottom-color: var(--lp-accent, var(--orange)); }
.linea-panel:hover .lp-cta svg { transform: translateX(4px); }

/* ── Mobile: stack vertically ───────────────────────────────── */
@media (max-width: 860px) {
  .lineas-wrapper {
    flex-direction: column;
    height: auto;
    max-height: none;
  }
  .linea-panel {
    flex: none !important;
    height: 320px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .lineas-wrapper:has(.linea-panel:hover) .linea-panel { flex: none !important; }
  .lp-compressed { opacity: 0; }
  .lp-content { opacity: 1; transform: none; pointer-events: auto; padding: 0 1.4rem 1.6rem; }
  .lp-desc { display: none; }
  .lp-ghost-num { display: none; }
}
@media (max-width: 480px) {
  .linea-panel { height: 260px; }
  .lp-title { font-size: 1.15rem; }
}


/* ═══════════════════════════════════════════════════════════════
   PROGRAM PAGES — Shared layout for sub-pages
═══════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────── */
.prog-page-hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.prog-page-hero-video,
.prog-page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.prog-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(17,19,22,.92) 0%,
    rgba(17,19,22,.55) 50%,
    rgba(17,19,22,.25) 100%
  );
}

.prog-page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.prog-page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}

.prog-page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.prog-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--crema);
  line-height: 1.05;
  margin: 0 0 1.5rem;
}

.prog-page-hero p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245,237,224,.75);
  max-width: 620px;
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

.prog-page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.prog-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .3s var(--ease-spring);
  text-decoration: none;
}

.prog-hero-btn.primary {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
}
.prog-hero-btn.primary:hover {
  background: transparent;
  color: var(--orange);
}

.prog-hero-btn.ghost {
  background: transparent;
  color: var(--crema);
  border: 2px solid rgba(245,237,224,.3);
}
.prog-hero-btn.ghost:hover {
  border-color: var(--crema);
}

.prog-page-hero-logo {
  display: block;
  height: 130px;
  width: auto;
  max-width: 380px;
  margin-bottom: 2rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,.55));
}

/* ── Back nav ──────────────────────────────────────────────── */
.prog-back-bar {
  margin-top: 80px;
  background: var(--bosque);
  border-bottom: 1px solid rgba(245,237,224,.06);
}
.prog-back-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .8rem 2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.prog-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,237,224,.5);
  text-decoration: none;
  transition: color .2s;
}
.prog-back-link:hover { color: var(--crema); }
.prog-back-link svg { flex-shrink: 0; }
.prog-back-sep {
  color: rgba(245,237,224,.2);
  font-size: .7rem;
}
.prog-back-current {
  font-size: .7rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Page body ─────────────────────────────────────────────── */
.prog-page-body {
  background: var(--bosque);
  color: var(--crema);
}

/* ── Content sections ──────────────────────────────────────── */
.prog-section {
  padding: 5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.prog-section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.prog-section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--orange);
}

.prog-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: var(--crema);
}

.prog-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,237,224,.75);
  max-width: 700px;
}

/* ── About split ───────────────────────────────────────────── */
.prog-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.prog-about-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: saturate(.9) contrast(1.05);
}

.prog-about-text { padding: 1rem 0; }
.prog-about-text h2 { margin-bottom: 1.5rem; }

.prog-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.prog-highlights li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(245,237,224,.8);
  line-height: 1.5;
}
.prog-highlights li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: .45rem;
}

/* ── Photo gallery grid ────────────────────────────────────── */
.prog-gallery-section {
  padding: 5rem 0;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(245,237,224,.06);
  border-bottom: 1px solid rgba(245,237,224,.06);
}

.prog-gallery-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.prog-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 3rem;
}

.prog-gallery-grid .pg-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.prog-gallery-grid .pg-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-spring), filter .4s;
  filter: saturate(.85);
}

.prog-gallery-grid .pg-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.prog-gallery-grid .pg-item.pg-tall img { height: 456px; }
.prog-gallery-grid .pg-item.pg-wide { grid-column: span 2; }
.prog-gallery-grid .pg-item.pg-wide img { height: 220px; }

/* ── Video section ─────────────────────────────────────────── */
.prog-video-section {
  padding: 5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.prog-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.prog-video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(245,237,224,.06);
}

.prog-video-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 560px) {
  .prog-video-grid { grid-template-columns: 1fr; }
}

.prog-video-card-info {
  padding: 1.2rem 1.5rem;
}

.prog-video-card-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--crema);
  margin: 0 0 .5rem;
}

.prog-video-card-info p {
  font-size: .82rem;
  color: rgba(245,237,224,.55);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}

/* ── Testimonials ──────────────────────────────────────────── */
.prog-testimonials {
  padding: 5rem 2rem;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(245,237,224,.06);
}

.prog-testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.prog-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.prog-testimonial-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #000;
  border: 1px solid rgba(245,237,224,.08);
}

.prog-testimonial-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: contain;
  display: block;
}

.prog-testimonial-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(17,19,22,.75);
  backdrop-filter: blur(8px);
  padding: .4rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── CTA Band ──────────────────────────────────────────────── */
.prog-cta-band {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(239,121,17,.08) 0%, rgba(30,58,48,.4) 100%);
  border-top: 1px solid rgba(239,121,17,.15);
}
.prog-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--crema);
  margin: 0 0 1rem;
}
.prog-cta-band p {
  color: rgba(245,237,224,.65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .prog-about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .prog-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .prog-page-hero { height: 75vh; }
  .prog-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-gallery-grid .pg-item.pg-tall img { height: 240px; }
  .prog-video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .prog-gallery-grid { grid-template-columns: 1fr; }
  .prog-gallery-grid .pg-item.pg-wide { grid-column: span 1; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 18, 28, .94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  padding: 1.5rem;
  cursor: zoom-out;
}
#lb-overlay.lb-open {
  opacity: 1;
  pointer-events: all;
}
#lb-img {
  max-width: min(92vw, 1200px);
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  transform: scale(.94);
  transition: transform .25s ease;
  cursor: default;
  display: block;
}
#lb-overlay.lb-open #lb-img {
  transform: scale(1);
}
#lb-caption {
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(245,237,224,.5);
  letter-spacing: .06em;
  text-align: center;
  max-width: 600px;
  margin: 0;
  min-height: 1em;
}
#lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
#lb-close:hover {
  background: rgba(255,255,255,.18);
  transform: scale(1.1);
}
.lb-zoomable {
  cursor: zoom-in !important;
}
@media (max-width: 600px) {
  #lb-img { max-width: 96vw; max-height: 80vh; }
}

