/* ============================================================
   CAMPAMENTOS DE LIDERAZGO — Registro Histórico Vivo
   uds.rinsainc.com/cace/bootcamps-universitarios
   Sistema visual co-branded: chasis UDS + marca CACE / Alianza Colombo Búlgara
   v1.0 · 2026-06-13
   ============================================================ */

:root {
  /* ── Base (chasis UDS) ── */
  --bc-navy:        #0C1A3C;
  --bc-navy-dark:   #0A1730;
  --bc-navy-deep:   #060E22;
  --bc-blue:        #178577;
  --bc-blue-soft:   #E7F6F3;
  --bc-cream:       #F7F2E9;
  --bc-cream-warm:  #EFE7D7;
  --bc-white:       #FFFFFF;
  --bc-ink:         #0D0D0D;
  --bc-text:        #2A2F3A;
  --bc-muted:       #6B7280;
  --bc-mute-soft:   #9AA1AD;
  --bc-border:      #E7E3DB;
  --bc-border-soft: #F0EEE9;

  /* ── Acento del programa (rota por campamento via --acento inline) ── */
  --acento:         #E9A23B;
  --acento-soft:    #FEF6E7;

  /* ── Identidad CACE (azul) + Alianza (multicolor) ── */
  --cace-blue:      #2C74A6;
  --ab-amarillo:    #F4C20D;
  --ab-azul:        #2D7DD2;
  --ab-rojo:        #C8102E;
  --ab-verde:       #1FA64A;

  /* ── Tipografía ── */
  --bc-display: 'Plus Jakarta Sans', 'Inter', 'Helvetica Neue', sans-serif;
  --bc-body:    'Inter', 'Helvetica Neue', sans-serif;

  /* ── Sombras ── */
  --bc-sh-sm:  0 1px 3px rgba(16,40,80,.06), 0 1px 2px rgba(16,40,80,.04);
  --bc-sh-md:  0 6px 20px rgba(16,40,80,.08), 0 2px 6px rgba(16,40,80,.05);
  --bc-sh-lg:  0 18px 48px rgba(16,40,80,.14), 0 6px 16px rgba(16,40,80,.08);
  --bc-sh-xl:  0 30px 70px rgba(10,26,56,.22);

  --bc-radius:    18px;
  --bc-radius-sm: 12px;
  --bc-radius-lg: 28px;
  --bc-maxw:      1200px;
  --bc-ease:      cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }

body.bc {
  margin: 0;
  font-family: var(--bc-body);
  color: var(--bc-text);
  background: var(--bc-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

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

.bc-skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--bc-navy); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.bc-skip:focus { left: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   NAV co-branded
   ============================================================ */
.bc-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--bc-border-soft);
}
.bc-nav__inner {
  max-width: var(--bc-maxw); margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; gap: 18px;
}
.bc-nav__brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.bc-nav__logos { display: flex; align-items: center; gap: 12px; }
.bc-nav__logos img { height: 34px; width: auto; }
.bc-nav__logos .bc-nav__sep { width: 1px; height: 26px; background: var(--bc-border); }
.bc-nav__title {
  font-family: var(--bc-display); font-weight: 800; font-size: 15px; line-height: 1.1;
  color: var(--bc-navy); letter-spacing: -.01em; white-space: nowrap;
}
.bc-nav__title span { display: block; font-size: 11px; font-weight: 600; color: var(--bc-mute-soft); letter-spacing: .04em; text-transform: uppercase; }
.bc-nav__links { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.bc-nav__link { font-size: 14.5px; font-weight: 600; color: var(--bc-text); transition: color .2s; }
.bc-nav__link:hover { color: var(--acento); }
.bc-nav__back {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  color: var(--bc-muted); padding: 8px 14px; border: 1px solid var(--bc-border); border-radius: 999px; transition: all .2s;
}
.bc-nav__back:hover { border-color: var(--bc-navy); color: var(--bc-navy); }
.bc-nav__back svg { width: 15px; height: 15px; }
.bc-nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.bc-nav__burger span { display: block; width: 24px; height: 2px; background: var(--bc-navy); border-radius: 2px; margin: 5px 0; transition: .3s; }

/* ============================================================
   BOTONES
   ============================================================ */
.bc-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--bc-display); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: all .25s var(--bc-ease); white-space: nowrap;
}
.bc-btn svg { width: 18px; height: 18px; }
.bc-btn--primary { background: var(--acento); color: var(--bc-navy-deep); }
.bc-btn--primary:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: var(--bc-sh-lg); }
.bc-btn--accent { background: var(--acento); color: #fff; }
.bc-btn--accent:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: var(--bc-sh-lg); }
.bc-btn--ghost { background: transparent; color: var(--bc-navy); border-color: var(--bc-border); }
.bc-btn--ghost:hover { border-color: var(--bc-navy); background: var(--bc-blue-soft); }
.bc-btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.3); }
.bc-btn--light:hover { background: rgba(255,255,255,.24); }
.bc-btn--whatsapp { background: #25D366; color: #fff; }
.bc-btn--whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: var(--bc-sh-lg); }
.bc-btn--whatsapp svg { width: 20px; height: 20px; }
/* Sección CTA de contacto (página de campamento) */
.bc-cta-sec { padding: 56px 0; }
.bc-cta-card { background: var(--bc-blue-soft); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-lg); padding: 44px 32px; text-align: center; }
.bc-cta-card__t { font-family: var(--bc-display); font-weight: 800; font-size: clamp(21px, 3vw, 30px); color: var(--bc-navy); margin: 0 0 24px; }

/* ============================================================
   SECCIONES
   ============================================================ */
.bc-section { padding: 88px 0; }
.bc-section--cream { background: var(--bc-cream); }
.bc-section--warm  { background: var(--bc-cream-warm); }
.bc-section--dark  { background: var(--bc-navy-deep); color: #fff; }
.bc-section--tight { padding: 60px 0; }

.bc-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.bc-head--left { margin-left: 0; text-align: left; }
.bc-eyebrow {
  display: inline-block; font-family: var(--bc-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--acento); margin-bottom: 14px;
}
.bc-section--dark .bc-eyebrow { color: #F4C20D; }
.bc-title {
  font-family: var(--bc-display); font-weight: 800; font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08; letter-spacing: -.02em; color: var(--bc-navy); margin: 0 0 16px;
}
.bc-section--dark .bc-title { color: #fff; }
.bc-intro { font-size: 17px; color: var(--bc-muted); margin: 0; }
.bc-section--dark .bc-intro { color: rgba(255,255,255,.72); }

/* ============================================================
   HERO HUB
   ============================================================ */
.bc-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(39,196,176,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(233,162,59,.12), transparent 55%),
    linear-gradient(180deg, var(--bc-white) 0%, var(--bc-cream-warm) 100%);
  padding: 64px 0 80px;
}
.bc-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.bc-hero__org { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; }
.bc-hero__org img { height: 56px; width: auto; }
.bc-hero__org .bc-hero__org-x { color: var(--bc-mute-soft); font-size: 13px; font-weight: 600; }
.bc-hero__title {
  font-family: var(--bc-display); font-weight: 800; font-size: clamp(42px, 6.4vw, 74px);
  line-height: 1.02; letter-spacing: -.028em; color: var(--bc-navy); margin: 0 0 24px;
}
.bc-hero__title em { font-style: normal; color: var(--acento); }
.bc-hero__lede { font-size: 19px; line-height: 1.6; color: var(--bc-text); max-width: 560px; margin: 0 0 18px; }
.bc-hero__sub { font-size: 15px; color: var(--bc-muted); max-width: 540px; margin: 0 0 32px; }
.bc-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Visual del hero: sistema orbital "viaje" (planeta + destinos), flotante sobre fondo claro */
.bc-hero__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 390px; }
.bc-hero__stage { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1; display: grid; place-items: center; }
.bc-orbit { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1.5px solid rgba(26,58,107,.16); transform: translate(-50%,-50%); }
.bc-orbit::before, .bc-orbit::after {
  content: ''; position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: currentColor; box-shadow: 0 0 0 4px var(--bc-white), 0 2px 9px rgba(26,58,107,.22);
  top: -6px; left: 50%; margin-left: -6px;
}
.bc-orbit--1 { width: 50%; height: 50%; color: #f59e0b; animation: bc-orbit 20s linear infinite; }
.bc-orbit--2 { width: 74%; height: 74%; color: #10b981; animation: bc-orbit 31s linear infinite reverse; }
.bc-orbit--2::after { color: #ec4899; top: 50%; left: auto; right: -6px; margin-top: -6px; margin-left: 0; }
.bc-orbit--3 { width: 98%; height: 98%; color: #dc2626; animation: bc-orbit 44s linear infinite; }
.bc-orbit--3::after { color: #0ea5e9; top: 50%; left: -6px; margin-top: -6px; margin-left: 0; }
.bc-hero__globe {
  position: absolute; top: 50%; left: 50%; z-index: 2; width: 146px; height: 146px;
  transform: translate(-50%,-50%); animation: bc-globe 6s ease-in-out infinite;
  filter: drop-shadow(0 16px 30px rgba(26,58,107,.24));
}
.bc-hero__globe img { width: 100%; height: 100%; display: block; }
@keyframes bc-orbit { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes bc-globe { 0%,100% { transform: translate(-50%,-50%) translateY(0); } 50% { transform: translate(-50%,-50%) translateY(-9px); } }

/* ============================================================
   EJES / PROGRAMA
   ============================================================ */
.bc-ejes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bc-eje {
  background: #fff; border: 1px solid var(--bc-border); border-radius: var(--bc-radius);
  padding: 34px 28px; transition: all .3s var(--bc-ease); position: relative; overflow: hidden;
}
.bc-eje::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: var(--eje-c, var(--acento)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--bc-ease); }
.bc-eje:hover { transform: translateY(-6px); box-shadow: var(--bc-sh-lg); border-color: transparent; }
.bc-eje:hover::before { transform: scaleX(1); }
.bc-eje__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--eje-soft, var(--bc-blue-soft)); color: var(--eje-c, var(--bc-navy)); margin-bottom: 20px; }
.bc-eje__icon svg { width: 26px; height: 26px; }
.bc-eje__title { font-family: var(--bc-display); font-weight: 700; font-size: 20px; color: var(--bc-navy); margin: 0 0 10px; }
.bc-eje__desc { font-size: 15px; color: var(--bc-muted); margin: 0; }

.bc-prose { max-width: 760px; margin: 0 auto; font-size: 17px; color: var(--bc-text); }
.bc-prose p { margin: 0 0 18px; }
.bc-prose strong { color: var(--bc-navy); }

/* ============================================================
   MÉTRICAS (contadores)
   ============================================================ */
.bc-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bc-metric { text-align: center; padding: 28px 16px; }
.bc-metric__num { font-family: var(--bc-display); font-weight: 800; font-size: clamp(40px, 6vw, 60px); line-height: 1; color: #fff; }
.bc-metric__num span { color: #F4C20D; }
.bc-metric__label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); margin-top: 10px; letter-spacing: .03em; }

/* ============================================================
   FRANJA universidades (marquee)
   ============================================================ */
.bc-inst-wrap { overflow: hidden; position: relative; padding: 8px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.bc-inst-track { display: flex; gap: 18px; width: max-content; animation: bc-marquee 48s linear infinite; }
.bc-inst-wrap:hover .bc-inst-track { animation-play-state: paused; }
@keyframes bc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.bc-inst {
  flex: 0 0 auto; display: flex; align-items: center; gap: 12px; background: #fff;
  border: 1px solid var(--bc-border); border-radius: 14px; padding: 14px 22px; box-shadow: var(--bc-sh-sm);
  min-width: 200px;
}
.bc-inst img { height: 38px; width: auto; max-width: 80px; object-fit: contain; }
.bc-inst__name { font-family: var(--bc-display); font-weight: 700; font-size: 14px; color: var(--bc-navy); line-height: 1.2; }
.bc-inst__pais { font-size: 12px; color: var(--bc-muted); }
.bc-inst__fallback { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--bc-blue-soft); color: var(--bc-navy); font-family: var(--bc-display); font-weight: 800; font-size: 16px; }

/* ============================================================
   MAPA mundial
   ============================================================ */
.bc-map-wrap { display: grid; grid-template-columns: 1.4fr .6fr; gap: 28px; align-items: stretch; }
.bc-map-col { position: relative; }
.bc-map { width: 100%; height: 520px; border-radius: var(--bc-radius-lg); overflow: hidden; background: var(--bc-blue-soft); border: 1px solid var(--bc-border); }
/* Gate: el mapa no captura el scroll hasta hacer clic (evita el zoom accidental al hacer scroll) */
.bc-map-gate {
  position: absolute; inset: 0; z-index: 10; display: grid; place-items: center; cursor: pointer;
  background: rgba(10,26,56,.16); backdrop-filter: blur(.5px); border-radius: var(--bc-radius-lg);
  transition: opacity .35s var(--bc-ease);
}
.bc-map-gate.is-hidden { opacity: 0; pointer-events: none; }
.bc-map-gate__chip {
  display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--bc-navy);
  padding: 13px 24px; border-radius: 999px; box-shadow: var(--bc-sh-lg);
  font-family: var(--bc-display); font-weight: 700; font-size: 14.5px; animation: bc-gate 2.2s ease-in-out infinite;
}
.bc-map-gate__chip svg { width: 19px; height: 19px; color: var(--acento); }
@keyframes bc-gate { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.bc-map-aside { display: flex; flex-direction: column; gap: 14px; }
.bc-map-aside__hint { font-size: 14px; color: var(--bc-muted); padding: 16px 18px; background: var(--bc-cream); border-radius: var(--bc-radius-sm); border: 1px dashed var(--bc-border); }
.bc-map-aside__hint strong { color: var(--bc-navy); }
.bc-map-legend { display: flex; flex-direction: column; gap: 8px; }
.bc-map-legend__item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--bc-text); }
.bc-map-legend__dot { width: 12px; height: 12px; border-radius: 50%; flex: 0 0 auto; }

/* Popup del mapa (custom dentro de amCharts root o flotante) */
.bc-mappop { font-family: var(--bc-body); max-width: 280px; }
.bc-mappop__pais { font-family: var(--bc-display); font-weight: 800; font-size: 15px; color: var(--bc-navy); margin-bottom: 8px; }
.bc-mappop__item { display: flex; gap: 10px; padding: 8px; border-radius: 10px; transition: background .15s; }
.bc-mappop__item:hover { background: var(--bc-blue-soft); }
.bc-mappop__thumb { width: 52px; height: 38px; border-radius: 7px; object-fit: cover; flex: 0 0 auto; }
.bc-mappop__t { font-family: var(--bc-display); font-weight: 700; font-size: 13px; color: var(--bc-navy); line-height: 1.2; }
.bc-mappop__d { font-size: 11.5px; color: var(--bc-muted); }

/* ============================================================
   GRID de campamentos (tarjetas)
   ============================================================ */
.bc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.bc-card {
  position: relative; display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--bc-border); border-radius: var(--bc-radius); overflow: hidden;
  box-shadow: var(--bc-sh-sm); transition: all .32s var(--bc-ease);
}
.bc-card:hover { transform: translateY(-8px); box-shadow: var(--bc-sh-xl); border-color: transparent; }
.bc-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bc-blue-soft); }
.bc-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--bc-ease); }
.bc-card:hover .bc-card__img { transform: scale(1.07); }
.bc-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,26,56,.55) 100%); }
.bc-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 999px;
  font-family: var(--bc-display); font-weight: 700; font-size: 12px; color: var(--card-acento, var(--bc-navy));
}
.bc-card__num {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  background: var(--card-acento, var(--bc-navy)); color: #fff; display: grid; place-items: center;
  font-family: var(--bc-display); font-weight: 800; font-size: 15px; box-shadow: var(--bc-sh-md);
}
.bc-card__geo { position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff; }
.bc-card__pais { font-family: var(--bc-display); font-weight: 800; font-size: 19px; line-height: 1; }
.bc-card__ciudad { font-size: 13px; opacity: .9; margin-top: 3px; }
.bc-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bc-card__meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--bc-muted); margin-bottom: 10px; font-weight: 600; }
.bc-card__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--bc-mute-soft); }
.bc-card__title { font-family: var(--bc-display); font-weight: 700; font-size: 19px; color: var(--bc-navy); line-height: 1.22; margin: 0 0 10px; }
.bc-card__desc { font-size: 14.5px; color: var(--bc-muted); margin: 0 0 18px; flex: 1; }
.bc-card__foot { display: flex; align-items: center; justify-content: space-between; }
.bc-card__cta { display: inline-flex; align-items: center; gap: 7px; font-family: var(--bc-display); font-weight: 700; font-size: 14px; color: var(--card-acento, var(--bc-navy)); }
.bc-card__cta svg { width: 16px; height: 16px; transition: transform .25s; }
.bc-card:hover .bc-card__cta svg { transform: translateX(4px); }
.bc-card__chip { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.bc-card__chip--prox { background: #FEF3C7; color: #92610A; }
.bc-card__chip--real { background: #ECFDF5; color: #047857; }

/* ============================================================
   CACE / ALIANZA (organizadores)
   ============================================================ */
.bc-orgs { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.bc-org-card {
  background: #fff; border: 1px solid var(--bc-border); border-radius: var(--bc-radius-lg); padding: 38px;
  display: flex; flex-direction: column; align-items: flex-start; transition: all .3s; box-shadow: var(--bc-sh-sm);
}
.bc-org-card:hover { box-shadow: var(--bc-sh-lg); transform: translateY(-4px); }
.bc-org-card__logo { height: 64px; width: auto; margin-bottom: 22px; }
.bc-org-card__name { font-family: var(--bc-display); font-weight: 800; font-size: 21px; color: var(--bc-navy); margin: 0 0 12px; }
.bc-org-card__desc { font-size: 15px; color: var(--bc-muted); margin: 0 0 20px; }

/* ============================================================
   FOOTER co-branded
   ============================================================ */
.bc-footer { background: var(--bc-navy-deep); color: rgba(255,255,255,.78); padding: 64px 0 32px; }
.bc-footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.bc-footer__logos { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.bc-footer__logos .bc-logo-chip { background: #fff; border-radius: 12px; padding: 10px 14px; }
.bc-footer__logos .bc-logo-chip img { height: 34px; width: auto; }
.bc-footer__desc { font-size: 14.5px; line-height: 1.6; max-width: 380px; }
.bc-footer__col h4 { font-family: var(--bc-display); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 16px; }
.bc-footer__col a { display: block; font-size: 14.5px; color: rgba(255,255,255,.78); padding: 5px 0; transition: color .2s; }
.bc-footer__col a:hover { color: #F4C20D; }
.bc-footer__bottom { padding-top: 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,.5); }
.bc-footer__rinsa { display: inline-flex; align-items: center; gap: 8px; }
.bc-footer__rinsa img { height: 22px; opacity: .85; }

/* ============================================================
   ===============  PÁGINA DE CAMPAMENTO  ====================
   ============================================================ */
.bc-cmp-hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.bc-cmp-hero__bg { position: absolute; inset: 0; z-index: 0; }
.bc-cmp-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.bc-cmp-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,26,56,.35) 0%, rgba(10,26,56,.55) 55%, rgba(10,26,56,.92) 100%); }
.bc-cmp-hero__inner { position: relative; z-index: 1; width: 100%; max-width: var(--bc-maxw); margin: 0 auto; padding: 0 24px 64px; }
.bc-cmp-hero__back { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 26px; padding: 8px 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; backdrop-filter: blur(6px); transition: all .2s; }
.bc-cmp-hero__back:hover { background: rgba(255,255,255,.16); }
.bc-cmp-hero__num { display: inline-flex; align-items: center; gap: 10px; font-family: var(--bc-display); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.bc-cmp-hero__num b { width: 40px; height: 40px; border-radius: 50%; background: var(--acento); display: grid; place-items: center; font-size: 17px; }
.bc-cmp-hero__pais { font-family: var(--bc-display); font-weight: 800; font-size: clamp(36px, 6vw, 64px); line-height: 1; letter-spacing: -.02em; margin: 0 0 8px; }
.bc-cmp-hero__title { font-size: clamp(18px, 2.4vw, 26px); font-weight: 500; color: rgba(255,255,255,.92); max-width: 720px; margin: 0 0 22px; }
.bc-cmp-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.bc-cmp-chip { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px); padding: 8px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 600; }
.bc-cmp-chip svg { width: 15px; height: 15px; opacity: .9; }
/* Sello/logo propio de la edición (opcional · ej. Canadá 2026) */
.bc-cmp-hero__sello-wrap {
  position: absolute; top: 96px; left: 0; right: 0; z-index: 3;
  max-width: var(--bc-maxw); margin: 0 auto; padding: 0 24px; pointer-events: none;
}
.bc-cmp-hero__sello {
  width: 156px; height: 156px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 14px 38px rgba(0,0,0,.34); animation: bc-sello-in .8s var(--bc-ease) both; pointer-events: auto;
}
@keyframes bc-sello-in { from { opacity: 0; transform: scale(.82) rotate(-7deg); } to { opacity: 1; transform: none; } }

/* Ficha de datos */
.bc-ficha { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: -52px; position: relative; z-index: 5; }
.bc-stat {
  background: #fff; border: 1px solid var(--bc-border); border-radius: var(--bc-radius); padding: 24px 20px;
  box-shadow: var(--bc-sh-md); text-align: center; transition: transform .25s;
}
.bc-stat:hover { transform: translateY(-4px); }
.bc-stat__num { font-family: var(--bc-display); font-weight: 800; font-size: 32px; line-height: 1; color: var(--acento); }
.bc-stat__label { font-size: 13px; font-weight: 600; color: var(--bc-muted); margin-top: 8px; }

/* Narrativa */
.bc-narr { display: flex; flex-direction: column; gap: 30px; max-width: 820px; margin: 0 auto; }
.bc-narr__block { }
.bc-narr__h { font-family: var(--bc-display); font-weight: 700; font-size: 22px; color: var(--bc-navy); margin: 0 0 12px; display: flex; align-items: center; gap: 12px; }
.bc-narr__h::before { content: ''; width: 28px; height: 3px; border-radius: 3px; background: var(--acento); }
.bc-narr__block p { font-size: 16.5px; color: var(--bc-text); margin: 0 0 14px; }

/* Instituciones del campamento */
.bc-cmp-inst { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.bc-cmp-inst__item { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--bc-border); border-radius: 12px; padding: 11px 18px; font-size: 14px; font-weight: 600; color: var(--bc-navy); box-shadow: var(--bc-sh-sm); }
.bc-cmp-inst__flag { font-size: 16px; }
.bc-cmp-inst__pais { color: var(--bc-muted); font-weight: 500; font-size: 12.5px; }

/* ============================================================
   ÁLBUM + LIGHTBOX
   ============================================================ */
/* Álbum = carrusel horizontal (altura fija, no crece en vertical) */
.bc-album { position: relative; }
.bc-album__track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 12px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.bc-album__track::-webkit-scrollbar { display: none; }
.bc-album__item {
  position: relative; flex: 0 0 auto; width: 440px; height: 320px; scroll-snap-align: center;
  border: 0; padding: 0; background: var(--bc-blue-soft); border-radius: var(--bc-radius-sm);
  overflow: hidden; cursor: zoom-in; box-shadow: var(--bc-sh-sm); font: inherit;
}
.bc-album__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--bc-ease); }
.bc-album__item:hover img { transform: scale(1.05); }
.bc-album__cap {
  position: absolute; inset: auto 0 0 0; padding: 30px 16px 14px; text-align: left;
  background: linear-gradient(transparent, rgba(10,26,56,.86)); color: #fff; font-size: 13.5px; line-height: 1.4;
}
.bc-album__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--bc-border); box-shadow: var(--bc-sh-md); cursor: pointer;
  display: grid; place-items: center; color: var(--bc-navy); transition: all .2s;
}
.bc-album__nav:hover { background: var(--bc-navy); color: #fff; transform: translateY(-50%) scale(1.06); }
.bc-album__nav svg { width: 22px; height: 22px; }
.bc-album__nav--prev { left: -14px; } .bc-album__nav--next { right: -14px; }
.bc-album__nav[disabled] { opacity: 0; pointer-events: none; }

.bc-lb { position: fixed; inset: 0; z-index: 999; background: rgba(7,15,32,.94); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.bc-lb.open { display: flex; opacity: 1; }
.bc-lb__stage { position: relative; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.bc-lb__img { max-width: 92vw; max-height: 78vh; border-radius: 10px; box-shadow: var(--bc-sh-xl); object-fit: contain; }
.bc-lb__cap { color: rgba(255,255,255,.92); font-size: 15px; margin-top: 16px; max-width: 700px; text-align: center; min-height: 20px; }
.bc-lb__count { color: rgba(255,255,255,.55); font-size: 13px; margin-top: 6px; font-weight: 600; }
.bc-lb__close { position: absolute; top: 18px; right: 22px; background: rgba(255,255,255,.12); border: 0; width: 46px; height: 46px; border-radius: 50%; color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.bc-lb__close:hover { background: rgba(255,255,255,.25); }
.bc-lb__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 0; width: 54px; height: 54px; border-radius: 50%; color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.bc-lb__nav:hover { background: rgba(255,255,255,.25); }
.bc-lb__nav--prev { left: 18px; } .bc-lb__nav--next { right: 18px; }
.bc-lb__close svg, .bc-lb__nav svg { width: 24px; height: 24px; }

/* Resultados */
.bc-results { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.bc-result { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--bc-border); border-radius: var(--bc-radius-sm); padding: 20px 22px; box-shadow: var(--bc-sh-sm); }
.bc-result__ic { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px; background: var(--acento-soft); color: var(--acento); display: grid; place-items: center; }
.bc-result__ic svg { width: 19px; height: 19px; }
.bc-result__t { font-size: 16px; color: var(--bc-text); }

/* Nav prev/next entre campamentos */
.bc-cmp-nav { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; }
.bc-cmp-nav__link { display: flex; align-items: center; gap: 14px; padding: 20px 24px; background: #fff; border: 1px solid var(--bc-border); border-radius: var(--bc-radius); transition: all .25s; box-shadow: var(--bc-sh-sm); }
.bc-cmp-nav__link:hover { border-color: var(--bc-navy); transform: translateY(-3px); box-shadow: var(--bc-sh-md); }
.bc-cmp-nav__link--next { flex-direction: row-reverse; text-align: right; }
.bc-cmp-nav__dir { font-size: 12px; font-weight: 700; color: var(--bc-mute-soft); letter-spacing: .05em; text-transform: uppercase; }
.bc-cmp-nav__name { font-family: var(--bc-display); font-weight: 700; font-size: 15px; color: var(--bc-navy); }
.bc-cmp-nav__hub { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--bc-navy); color: #fff; }
.bc-cmp-nav__link svg { width: 22px; height: 22px; color: var(--bc-muted); flex: 0 0 auto; }

/* Helpers */
.bc-hide { display: none !important; }
.bc-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--bc-ease), transform .6s var(--bc-ease); }
.bc-reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .bc-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .bc-ejes { grid-template-columns: 1fr; }
  .bc-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-metrics { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bc-map-wrap { grid-template-columns: 1fr; }
  .bc-map { height: 420px; }
  .bc-orgs { grid-template-columns: 1fr; }
  .bc-footer__top { grid-template-columns: 1fr; gap: 30px; }
  .bc-ficha { grid-template-columns: repeat(2, 1fr); }
  .bc-album__item { width: 380px; height: 280px; }
}
@media (max-width: 720px) {
  .bc-hero__visual { display: none; }   /* la animación orbital solo en tablet/desktop */
  .bc-cmp-hero__sello-wrap { top: 82px; padding: 0 18px; }
  .bc-cmp-hero__sello { width: 92px; height: 92px; border-width: 2px; }
  .bc-section { padding: 60px 0; }
  .bc-nav__links { display: none; }
  .bc-nav__burger { display: block; }
  .bc-nav__title span { display: none; }
  .bc-nav__logos img { height: 28px; }
  .bc-hero__org img { height: 44px; }
  .bc-grid { grid-template-columns: 1fr; }
  .bc-ficha { grid-template-columns: repeat(2, 1fr); margin-top: -36px; }
  .bc-album__item { width: 82vw; height: 240px; }
  .bc-album__nav { display: none; }
  .bc-cmp-nav { grid-template-columns: 1fr; }
  .bc-cmp-nav__hub { display: none; }
  .bc-lb__nav { width: 44px; height: 44px; }
}

/* Drawer móvil */
.bc-drawer-ov { position: fixed; inset: 0; background: rgba(10,26,56,.5); z-index: 110; opacity: 0; visibility: hidden; transition: .3s; }
.bc-drawer-ov.open { opacity: 1; visibility: visible; }
.bc-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 290px; max-width: 84vw; background: #fff; z-index: 120; transform: translateX(100%); transition: transform .32s var(--bc-ease); padding: 80px 28px 28px; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--bc-sh-xl); }
.bc-drawer.open { transform: none; }
.bc-drawer a { font-family: var(--bc-display); font-weight: 600; font-size: 16px; color: var(--bc-navy); padding: 13px 0; border-bottom: 1px solid var(--bc-border-soft); }
.bc-drawer__close { position: absolute; top: 22px; right: 22px; background: none; border: 0; cursor: pointer; color: var(--bc-navy); }
