/* ============================================================================
   Congreso Internacional de Coaching y Liderazgo — hoja de estilos del sitio
   Implementacion propia. Sin frameworks, sin runtime de CMS.
   Orden: tokens -> base -> layout -> componentes -> secciones -> responsive.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  /* Paleta tomada del banner de KHI: escenario oscuro con bokeh dorado. */
  --ink: #0f1218;
  --ink-2: #171b24;
  --ink-soft: #2a3140;

  --sand: #f7fafc;
  --sky: #e9f4fc;          /* fondo claro de las secciones de ponentes */
  --sky-deep: #d7ebf8;

  --amber: #f5a11f;
  --amber-deep: #ef6f28;
  --rose: #e81b52;         /* acentos de los chips sociales */

  --text: #1b2230;
  --text-soft: #5a6577;
  --text-invert: #ffffff;

  --line: rgba(16, 24, 40, .10);
  --shadow-sm: 0 2px 8px rgba(16, 24, 40, .06);
  --shadow-md: 0 12px 32px rgba(16, 24, 40, .12);
  --shadow-lg: 0 28px 68px rgba(16, 24, 40, .22);

  --grad-amber: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);

  --wrap: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  --sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --header-h: 76px;          /* fila de logo + navegacion */
  --topbar-h: 48px;          /* banda de cupos, encima del logo */
  --header-total: calc(var(--header-h) + var(--topbar-h));
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.68;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;         /* red de seguridad; el objetivo es que nada desborde */
}

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.14;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.1rem, 1.35rem + 3.4vw, 4.05rem); }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.3vw, 2.95rem); }
h3 { font-size: clamp(1.18rem, 1.02rem + .72vw, 1.5rem); }

p { margin: 0 0 1.1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* Foco visible y consistente en todo lo interactivo. */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Enlace de salto: oculto hasta recibir foco por teclado. */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -140%);
  z-index: 200;
  padding: .8rem 1.4rem;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 12px 12px;
  transition: transform .18s ease;
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* ---------- layout ---------- */
.wrap {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.75rem, 7vw, 7rem); position: relative; }
.section--sky { background: var(--sky); }
.section--ink { background: var(--ink); color: var(--text-invert); }

.section-head { text-align: center; max-width: 780px; margin: 0 auto clamp(2.4rem, 4.5vw, 3.75rem); }
.section-head p { color: var(--text-soft); margin-bottom: 0; }
.section--ink .section-head p { color: rgba(255, 255, 255, .74); }

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: .775rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: .85rem;
}
.section--ink .eyebrow { color: var(--amber); }

/* Motivo decorativo de puntos, dibujado con CSS (sin imagenes). */
.dots {
  position: absolute;
  width: 190px; height: 300px;
  background-image: radial-gradient(currentColor 2.4px, transparent 2.6px);
  background-size: 26px 26px;
  opacity: .32;
  pointer-events: none;
}
.dots--left  { left: 0;  top: 12%;    color: var(--rose);  mask-image: linear-gradient(90deg, #000, transparent); -webkit-mask-image: linear-gradient(90deg, #000, transparent); }
.dots--right { right: 0; bottom: 10%; color: var(--amber); mask-image: linear-gradient(270deg, #000, transparent); -webkit-mask-image: linear-gradient(270deg, #000, transparent); }
@media (max-width: 900px) { .dots { display: none; } }

/* ---------- botones ---------- */
.btn {
  --btn-bg: var(--grad-amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(239, 111, 40, .34);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(239, 111, 40, .42); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .55);
  box-shadow: none;
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); box-shadow: none; }
.btn--lg { padding: 1.12rem 2.5rem; font-size: 1.08rem; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn:hover { transform: none; transition: none; }
}

/* ---------- cabecera ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: block;            /* apila la banda sobre la fila de navegacion */
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header__bar { min-height: var(--header-h); }
/* Sin `width: 100%`: tiene la misma especificidad que .wrap pero va despues en
   la hoja, asi que ganaba y estiraba la cabecera a todo el ancho. El logo
   quedaba en el borde mientras el resto del sitio respetaba el contenedor. */
.site-header__bar { display: flex; align-items: center; gap: 1.5rem; }
.site-header.is-stuck { background: rgba(15, 18, 24, .93); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }

.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 38px; width: auto; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.65rem; }
.nav a {
  color: #fff;
  text-decoration: none;
  font-size: .945rem;
  font-weight: 500;
  opacity: .88;
  transition: opacity .18s ease;
}
.nav a:hover { opacity: 1; }
.nav .btn { padding: .68rem 1.4rem; font-size: .92rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border: 0; border-radius: 12px;
  background: rgba(255, 255, 255, .13);
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%; width: 21px; height: 2px;
  background: #fff; border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { content: ''; left: 0; transform: translateY(-7px); }
.nav-toggle span::after  { content: ''; left: 0; transform: translateY(7px); }
.nav-toggle[aria-expanded='true'] span { background: transparent; }
.nav-toggle[aria-expanded='true'] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded='true'] span::after  { transform: rotate(-45deg); }

/* ---------- barra de cupos (a sangre completa, encima del pie) ----------
   Mismo criterio que la banda de cabecera: plano, sin degradados ni
   resplandores. El dato manda; los efectos solo le restaban seriedad. */
.capacity {
  --alert: #c8102e;
  position: relative;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  background: var(--ink-2);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.capacity__alert {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1.5rem;
  padding: .4rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .88);
  font-family: var(--display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.capacity__dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--alert);
}

.capacity__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.capacity__label {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.05rem, .95rem + .6vw, 1.4rem);
}
.capacity__pct {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.capacity__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}
.capacity__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--alert);
  transition: width 1.2s cubic-bezier(.22, .8, .3, 1);
}

.capacity__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem 2rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.capacity__foot p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .97rem;
  max-width: 46ch;
}

@media (prefers-reduced-motion: reduce) {
  .capacity__fill { transition: none; }
}
@media (max-width: 620px) {
  .capacity__head { gap: .4rem; }
  .capacity__foot { flex-direction: column; align-items: stretch; }
  .capacity__foot .btn { justify-content: center; }
}

/* ---------- banda de cupos (lo primero de la pagina) ----------
   Rojo plano y tipografia contenida. Sin degradados, sin resplandores ni
   pulsos: el dato ya es el que llama la atencion. Vive dentro del header fijo,
   encima del logo, asi acompana al visitante toda la pagina. */
.topbar {
  --alert: #c8102e;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  background: var(--alert);
  color: #fff;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2.4vw, 2rem);
  width: 100%;
  padding-block: .55rem;
}
.topbar__title {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  white-space: nowrap;
}
.topbar__meter {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
}
.topbar__caption {
  flex: 0 0 auto;
  font-size: .78rem;
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
}
.topbar__track {
  flex: 1 1 auto;
  min-width: 60px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .26);
  overflow: hidden;
}
.topbar__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #fff;
  transition: width 1.2s cubic-bezier(.22, .8, .3, 1);
}
.topbar__pct {
  flex: 0 0 auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .topbar__fill { transition: none; }
}
@media (max-width: 760px) {
  /* En movil el titulo se apila sobre el medidor para no aplastar la pista. */
  .topbar__inner { flex-direction: column; align-items: stretch; gap: .4rem; }
  .topbar__title { font-size: .7rem; }
  .topbar__caption { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 860px);
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-total) + 3rem) 4rem;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
/* El degradado mantiene legible el texto sobre la foto en cualquier ancho. */
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 17, .95) 0%, rgba(10, 12, 17, .82) 42%, rgba(10, 12, 17, .34) 70%, rgba(10, 12, 17, .55) 100%),
    linear-gradient(180deg, rgba(10, 12, 17, .72) 0%, transparent 34%);
}
/* .hero__inner conserva el ancho completo del contenedor (.wrap): poner aqui
   el max-width hacia que `margin-inline: auto` centrara esa caja de 680px en la
   ventana, en vez de anclarla al borde izquierdo del contenedor. La medida de
   lectura se limita en el hijo, que si queda alineado a la izquierda. */
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 680px; }

.hero__date {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .52rem 1.15rem;
  border-radius: 999px;
  background: rgba(245, 161, 31, .16);
  border: 1px solid rgba(245, 161, 31, .45);
  color: var(--amber);
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  margin-bottom: 1.4rem;
}
.hero h1 { margin-bottom: .55rem; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero__lead { font-size: clamp(1.02rem, .96rem + .42vw, 1.28rem); color: rgba(255, 255, 255, .84); margin-bottom: 1.1rem; }
.hero__meta { font-family: var(--display); font-weight: 600; color: #fff; margin-bottom: .45rem; }
.hero__host { font-family: var(--display); font-weight: 700; font-size: clamp(1.08rem, 1rem + .5vw, 1.38rem); line-height: 1.35; color: #fff; margin-bottom: 2rem; }
.hero__host strong { color: var(--amber); font-weight: 800; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* contador */
.countdown { display: flex; gap: .7rem; margin-top: 2.4rem; flex-wrap: wrap; }
.countdown__cell {
  min-width: 78px;
  padding: .75rem .55rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
}
.countdown__num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__lbl {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: rgba(255, 255, 255, .62);
  margin-top: .38rem;
}
.countdown__note { margin-top: .75rem; font-size: .83rem; color: rgba(255,255,255,.6); max-width: 34rem; }   /* dos lineas: no pisa a los invitados del banner (cliente, 18-sep-2026) */

/* ---------- tira de medios ---------- */
/* Fondo oscuro: los logos de medios son PNG blancos (asi venian del sitio
   original, sobre seccion oscura). Sobre blanco serian invisibles. */
.media-strip { background: var(--ink); padding-block: clamp(2.2rem, 4vw, 3.2rem); }
.media-strip__title {
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.6rem;
}
/* ---------- marquesina infinita de logos ----------
   El carril contiene DOS copias identicas de la tira. Cada copia mide su
   contenido + un hueco final (padding-inline-end), asi que el carril mide
   exactamente el doble de una copia y desplazarlo -50% lo deja alineado con
   el punto de partida: el reinicio es invisible y el hueco entre la ultima y
   la primera imagen es igual que el resto.
   El tamano del hueco vive en --logo-gap para que ambas reglas no se
   desincronicen nunca. */
.marquee {
  --logo-gap: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  /* difumina los bordes para que los logos entren y salgan sin cortarse */
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  padding: 0 var(--logo-gap) 0 0;
  margin: 0;
  list-style: none;
}
.marquee__group img {
  height: clamp(26px, 3.4vw, 38px);
  width: auto;
  opacity: .62;
  transition: opacity .2s ease;
}
.marquee__group img:hover { opacity: 1; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Detener al pasar el cursor: deja leer un logo concreto. */
.marquee:hover .marquee__track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  /* Sin movimiento: una sola tira, centrada y con scroll manual si no cabe. */
  .marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .marquee__track { animation: none; margin-inline: auto; }
  .marquee__group[aria-hidden='true'] { display: none; }
  .marquee__group { padding-right: 0; }
}

/* ---------- pilares ---------- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 1.5rem; }
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad-amber);
  color: #fff;
  margin-bottom: 1.15rem;
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { margin-bottom: .45rem; }
.pillar p { color: var(--text-soft); margin-bottom: 0; font-size: .96rem; }

/* ---------- anfitriona ---------- */
.host { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(2rem, 5vw, 4.25rem); align-items: center; }
.host__media { position: relative; }
.host__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.host__body h2 { margin-bottom: .9rem; }
.host__body p { color: var(--text-soft); }
.section--ink .host__body p { color: rgba(255, 255, 255, .78); }

/* ============================================================================
   Invitados especiales — tarjetas con rotulo superpuesto y boton circular
   ========================================================================== */
.speaker-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: clamp(1.1rem, 2vw, 1.6rem); }

.speaker-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--ink-2);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .26s ease, box-shadow .26s ease;
}
.speaker-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.speaker-card img { width: 100%; height: 100%; object-fit: cover; }

/* Velo inferior: garantiza contraste del nombre sobre cualquier foto. */
.speaker-card__veil {
  position: absolute; inset: auto 0 0 0; height: 62%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 12, 17, .34) 38%, rgba(10, 12, 17, .88) 100%);
  transition: opacity .26s ease;
}
.speaker-card__body {
  position: absolute; inset: auto 0 0 0;
  display: flex; align-items: flex-end; gap: 1rem;
  padding: 1.3rem 1.35rem;
}
.speaker-card__text { min-width: 0; flex: 1 1 auto; }
.speaker-card__name {
  display: block;            /* como <span> inline heredaba el interlineado 1.68 del body */
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.22rem;
  line-height: 1.12;
  margin: 0 0 .3rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}
.speaker-card__role {
  margin: 0;
  font-size: .87rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, .84);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.speaker-card__go {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 999px;
  background: var(--grad-amber);
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(239, 111, 40, .4);
  transition: transform .26s ease;
}
.speaker-card__go svg { width: 18px; height: 18px; color: #fff; }
.speaker-card:hover .speaker-card__go { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .speaker-card, .speaker-card:hover,
  .speaker-card__go, .speaker-card:hover .speaker-card__go,
  .pillar, .pillar:hover { transform: none; transition: none; }
}

/* ============================================================================
   Panelistas — retratos circulares sobre fondo claro
   ========================================================================== */
.panelist-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));   /* 5 panelistas en una fila (Rafael, 17-sep-2026) */
  gap: clamp(1.4rem, 2.6vw, 2.2rem);
  justify-items: center;
}
@media (max-width: 900px) { .panelist-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.panelist {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 100%;
  max-width: 260px;
}
.panelist__avatar {
  width: clamp(158px, 15vw, 212px);
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  background: var(--sky-deep);
  box-shadow: 0 10px 30px rgba(16, 24, 40, .13);
  transition: transform .24s ease, box-shadow .24s ease;
}
.panelist__avatar img { width: 100%; height: 100%; object-fit: cover; }
.panelist:hover .panelist__avatar { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(16, 24, 40, .2); }
.panelist__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.16rem;
  margin: 1.25rem 0 .3rem;
}
.panelist__role { font-size: .9rem; color: var(--text-soft); margin: 0 0 1rem; line-height: 1.5; }
.panelist__more {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--display); font-weight: 700; font-size: .84rem;
  color: var(--amber-deep);
  text-transform: uppercase; letter-spacing: .07em;
}
.panelist__more svg { width: 14px; height: 14px; transition: transform .2s ease; }
.panelist:hover .panelist__more svg { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .panelist__avatar, .panelist:hover .panelist__avatar,
  .panelist__more svg, .panelist:hover .panelist__more svg { transform: none; transition: none; }
}

/* ---------- agenda ---------- */
.agenda { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.day {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
}
.day__tag {
  display: inline-block;
  font-family: var(--display); font-weight: 700; font-size: .76rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink);
  background: var(--amber);
  padding: .32rem .8rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.day h3 { margin-bottom: .35rem; }
.day__hours { font-family: var(--display); font-weight: 600; color: var(--amber); margin-bottom: .75rem; }
.day p { color: rgba(255, 255, 255, .74); margin-bottom: 0; font-size: .96rem; }

/* ---------- cta final ---------- */
.cta-final { text-align: center; }
.cta-final h2 { max-width: 880px; margin-inline: auto; text-wrap: balance; }
.cta-final p { max-width: 620px; margin-inline: auto; color: var(--text-soft); }
.cta-final .btn { margin-top: 1.4rem; }

/* ---------- pie ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .62); padding-block: 3.2rem 2.2rem; font-size: .92rem; }
.site-footer__top { display: flex; flex-wrap: wrap; gap: 1.8rem; align-items: center; justify-content: space-between; padding-bottom: 1.8rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.site-footer img { height: 40px; width: auto; }
.site-footer__social { display: flex; gap: .65rem; }
.site-footer__social a {
  width: 40px; height: 40px; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  transition: background .2s ease;
}
.site-footer__social a:hover { background: var(--rose); }
.site-footer__social svg { width: 17px; height: 17px; }
.site-footer__legal { padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; }
.site-footer__legal p { margin: 0; }

/* Categorias de los paneles (etiquetas del sitio original). */
.cats { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.1rem; }
/* Pill de fecha bajo el h2: la especificidad de .section-head p pisaba el margin, y el h2 deja .6em de aire; se sube con margen negativo (Rafael, 17-sep-2026). */
.section-head .cats--under-title { margin: -.55em 0 1.5rem; }
.cats span {
  padding: .4rem 1rem;
  border-radius: 999px;
  background: rgba(239, 111, 40, .12);
  color: var(--amber-deep);
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.propuesta__cta { text-align: center; margin: clamp(2.2rem, 4vw, 3rem) 0 0; }
.propuesta .propuesta__sub { color: var(--amber); }
.propuesta .section-head p { color: rgba(255, 255, 255, .8); }
.propuesta .pillar { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .13); }
.propuesta .pillar h3 { color: #fff; }
.propuesta .pillar p { color: rgba(255, 255, 255, .74); }

.site-footer__connect-title {
  margin: 0 0 .7rem;
  font-family: var(--display);
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
}
.site-footer__legal a { color: rgba(255, 255, 255, .85); }

/* ============================================================================
   Modal de ponente
   ========================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: var(--gutter);
  background: rgba(8, 10, 14, .72);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  /* `visibility` se conmuta de golpe (0s), nunca se interpola: al cerrar se
     retrasa hasta que termina el fundido. Interpolarla haria que el modal solo
     fuera enfocable cuando la transicion avanzara, y una pestana que no pinta
     la deja a medias: el foco no entraria al dialogo. */
  transition: opacity .22s ease, visibility 0s linear .22s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .22s ease, visibility 0s linear 0s;
}

.modal__panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(86svh, 780px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(.985);
  transition: transform .22s ease;
}
.modal.is-open .modal__panel { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .modal, .modal__panel { transition: none; transform: none; }
}

.modal__close {
  position: absolute; top: .85rem; right: .85rem; z-index: 3;
  width: 42px; height: 42px; border: 0; border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  cursor: pointer;
  display: grid; place-items: center;
}
.modal__close:hover { background: #fff; }
.modal__close svg { width: 17px; height: 17px; }

.modal__grid { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); }   /* foto mas ancha en el popup (Rafael, 17-sep-2026) */
.modal__media { background: var(--sky); }
.modal__media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.modal__body { padding: clamp(1.7rem, 3.4vw, 2.6rem); }
.modal__body h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.95rem); margin-bottom: .3rem; }
.modal__role { color: var(--amber-deep); font-family: var(--display); font-weight: 600; font-size: .98rem; margin-bottom: 1.3rem; }

.modal__topic {
  background: var(--sky);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: .95rem 1.2rem;
  margin-bottom: 1.4rem;
}
.modal__topic span {
  display: block;
  font-family: var(--display); font-weight: 700; font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: .3rem;
}
.modal__topic strong { font-family: var(--display); font-size: 1.04rem; line-height: 1.35; display: block; }
.modal__topic em { font-style: normal; display: block; margin-top: .35rem; font-size: .93rem; color: var(--text-soft); }

.modal__bio p { color: var(--text-soft); font-size: .97rem; }
.modal__bio p:last-child { margin-bottom: 0; }
.modal__empty { color: var(--text-soft); font-style: italic; }

.modal__contact { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .55rem; }
.modal__contact a, .modal__contact span {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem; border-radius: 999px;
  background: var(--sky); color: var(--text);
  font-size: .87rem; text-decoration: none;
}
.modal__contact a:hover { background: var(--sky-deep); }

body.has-modal { overflow: hidden; }


/* ============================================================================
   Secciones recuperadas de congresocyl.com
   ========================================================================== */

/* ---------- propuesta de valor ---------- */
.propuesta__sub {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.05rem, .98rem + .5vw, 1.3rem);
  color: var(--text);
  margin-bottom: .9rem;
}

/* ---------- beneficios (que vivirás) ---------- */
/* Lista vertical: con 5 items, una rejilla dejaba el ultimo huerfano en una
   fila suelta. En columna todos pesan igual y el texto gana medida de lectura. */
.benefits {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: clamp(.9rem, 1.8vw, 1.25rem);
}
.benefit {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.benefit__mark {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--grad-amber);
  color: #fff;
  margin-top: .1rem;
  box-shadow: 0 6px 14px rgba(239, 111, 40, .3);
}
.benefit h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.benefit p { margin: 0; color: var(--text-soft); font-size: .96rem; }

@media (prefers-reduced-motion: reduce) {
  .benefit, .benefit:hover { transform: none; transition: none; }
}

/* ---------- qué aprenderás ---------- */
.learn-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: clamp(1rem, 2vw, 1.45rem);
}

/* Tarjeta sin bordes: la separacion la da la elevacion, no una linea. La franja
   lateral de color se sustituye por el icono, que ademas identifica el tema. */
.learn {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.6rem;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, .04),
    0 8px 24px rgba(16, 24, 40, .07);
  transition: transform .22s ease, box-shadow .22s ease;
}
.learn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(16, 24, 40, .05),
    0 18px 40px rgba(16, 24, 40, .13);
}

.learn__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.05rem;
  border-radius: 14px;
  /* Reposo: ambar tenue. Al pasar el cursor se llena de color, para que el
     icono lidere la lectura sin gritar en el estado normal. */
  background: rgba(245, 161, 31, .14);
  color: var(--amber-deep);
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.learn:hover .learn__icon {
  background: var(--grad-amber);
  color: #fff;
  transform: scale(1.06);
}
.learn__icon svg { width: 23px; height: 23px; }

.learn h3 {
  font-size: 1.06rem;
  line-height: 1.3;
  margin-bottom: .4rem;
}
.learn p {
  margin: 0;
  color: var(--text-soft);
  font-size: .93rem;
  line-height: 1.62;
}

@media (prefers-reduced-motion: reduce) {
  .learn, .learn:hover,
  .learn__icon, .learn:hover .learn__icon { transform: none; transition: none; }
}

/* ---------- talentos invitados ---------- */
.talents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1.8rem, 4vw, 3.2rem);
  justify-items: center;
  max-width: 820px;
  margin-inline: auto;
}
.talent { text-align: center; max-width: 320px; }
.talent__photo {
  display: block;
  width: clamp(160px, 16vw, 210px);
  aspect-ratio: 1;
  margin: 0 auto 1.3rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
}
.talent__photo img { width: 100%; height: 100%; object-fit: cover; }
.talent__session {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
}
.talent h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.talent p { margin: 0; color: rgba(255, 255, 255, .72); font-size: .93rem; }

/* ---------- sponsors ---------- */
.sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.6rem, 3.5vw, 2.8rem);
  justify-items: center;
  max-width: 760px;
  margin-inline: auto;
}
.sponsor { text-align: center; max-width: 300px; }
.sponsor__logo {
  display: block;
  width: clamp(130px, 13vw, 170px);
  aspect-ratio: 1;
  margin: 0 auto 1.1rem;
  border-radius: 999px;
  overflow: hidden;
  background: var(--sky);
  box-shadow: var(--shadow-sm);
}
.sponsor__logo img { width: 100%; height: 100%; object-fit: cover; }
.sponsor h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.sponsor p { margin: 0; color: var(--text-soft); font-size: .92rem; }

@media (max-width: 620px) {
  .benefit { flex-direction: column; gap: .8rem; }
  .talents, .sponsors { grid-template-columns: 1fr; }
}

/* ============================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .host { grid-template-columns: 1fr; }
  .host__media { max-width: 440px; margin-inline: auto; }
  .modal__grid { grid-template-columns: 1fr; }
  .modal__media img { min-height: 0; aspect-ratio: 16 / 10; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-total) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 1.6rem;
    background: rgba(15, 18, 24, .98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .nav .btn { margin-top: 1rem; justify-content: center; border-bottom: 0; }
  .site-header { background: rgba(15, 18, 24, .93); }
}

@media (max-width: 620px) {
  .hero { min-height: 0; padding-block: calc(var(--header-total) + 2.5rem) 3.25rem; }
  /* Banner 2026 en movil: la foto del grupo deja de ser fondo y pasa a ser una
     banda visible bajo la cabecera; el texto va debajo sobre tinta. Asi Karen y
     los ponentes se ven completos y el texto no compite con la foto. */
  .hero { display: block; padding-block: var(--header-total) 3rem; }
  .hero__media { position: relative; inset: auto; height: auto; aspect-ratio: 1100 / 941; margin-bottom: 1.6rem; }
  .hero__media img { object-position: center top; }
  .hero__media::after {
    background: linear-gradient(180deg, rgba(10, 12, 17, .35) 0%, transparent 25%, transparent 70%, var(--ink) 100%);
  }
  .countdown__cell { min-width: 0; flex: 1 1 calc(25% - .6rem); }
  .speaker-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
  .panelist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem 1.1rem; }
  /* Con numero impar de panelistas, el ultimo ocupa las dos columnas y queda centrado. */
  .panelist-grid .panelist:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .panelist__avatar { width: 100%; max-width: 168px; }
  .site-footer__top { justify-content: center; text-align: center; }
  .site-footer__legal { justify-content: center; text-align: center; }
}

@media (max-width: 400px) {
  .panelist-grid { grid-template-columns: 1fr; }
  .panelist { max-width: 300px; }
}

/* ---------- impresion ---------- */
@media print {
  .site-header, .nav, .countdown, .btn, .modal { display: none !important; }
  body { color: #000; }
}

/* ---------- panelistas sin popup (16-sep-2026) ----------
   Mismo avatar y tipografia que antes, pero ya no son botones: sin cursor,
   sin desplazamiento al pasar el raton y sin "Ver perfil". */
.panelist--static { cursor: default; }
.panelist--static:hover .panelist__avatar { transform: none; box-shadow: 0 10px 30px rgba(16, 24, 40, .13); }
.panelist--static .panelist__role { margin-bottom: 0; }

/* ---------- itinerario con pestanas (Dia 1 / Dia 2) ----------
   Escritorio: filas de 3 columnas (hora | nombre | tema).
   Movil: cada fila se apila como una tarjeta vertical; nunca hay scroll lateral. */
.itin { margin-top: clamp(2.6rem, 5vw, 4rem); }
.itin .section-head { margin-bottom: 1.6rem; }

.itin__tabs {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.itin__tabs [role="tab"] {
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  min-width: 190px;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font: inherit; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.itin__tabs [role="tab"]:hover { background: rgba(255, 255, 255, .12); }
.itin__tabs [role="tab"]:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.itin__tabs [role="tab"][aria-selected="true"] {
  background: var(--grad-amber);
  border-color: transparent;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(245, 161, 31, .28);
}
.itin__tab-day { font-family: var(--display); font-weight: 800; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; }
.itin__tab-date { font-size: .8rem; opacity: .8; }

.itin__list {
  list-style: none; margin: 0; padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}
.itin__row {
  display: grid;
  grid-template-columns: 150px 1.15fr 1.7fr;
  gap: 1.1rem;
  align-items: center;
  padding: .95rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.itin__row--head {
  border-top: 0;
  padding-block: .7rem;
  background: rgba(255, 255, 255, .07);
  font-family: var(--display); font-weight: 700; font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
}
.itin__time {
  font-family: var(--display); font-weight: 700; font-size: .92rem;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.itin__who { font-family: var(--display); font-weight: 600; font-size: .98rem; }
.itin__topic { color: rgba(255, 255, 255, .78); font-size: .94rem; line-height: 1.5; }

.itin__row--anfitriona { background: rgba(245, 161, 31, .07); }
.itin__row--anfitriona .itin__who::after {
  content: "Anfitriona";
  display: inline-block; margin-left: .55rem; padding: .12rem .5rem;
  border-radius: 999px; background: var(--amber); color: var(--ink);
  font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; vertical-align: middle;
}
.itin__row--panel { background: rgba(232, 27, 82, .09); box-shadow: inset 4px 0 0 var(--rose); }
.itin__row--pausa { background: rgba(255, 255, 255, .02); }
.itin__row--pausa .itin__who { color: rgba(255, 255, 255, .6); font-weight: 500; font-style: italic; }
.itin__row--pausa .itin__topic { color: rgba(255, 255, 255, .5); }

@media (max-width: 760px) {
  .itin__tabs [role="tab"] { flex: 1 1 0; min-width: 0; padding-inline: .8rem; }
  .itin__row--head { display: none; }
  .itin__row {
    grid-template-columns: 1fr;
    gap: .3rem;
    padding: 1.05rem 1.15rem;
  }
  .itin__time {
    display: inline-block; width: max-content;
    padding: .22rem .65rem; margin-bottom: .25rem;
    border-radius: 999px;
    background: rgba(245, 161, 31, .14);
    font-size: .8rem;
  }
  .itin__who { font-size: 1.04rem; }
  .itin__topic:empty { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .itin__tabs [role="tab"] { transition: none; }
}

/* ---------- CTA que cierra la grilla de invitados ----------
   Ocupa el hueco que queda junto al ultimo invitado (13 tarjetas en 3 columnas). */
.speaker-cta {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: .6rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 15%, rgba(245, 161, 31, .28), transparent 45%),
    linear-gradient(160deg, var(--ink-2), var(--ink));
  border: 1px solid rgba(245, 161, 31, .25);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.speaker-cta .eyebrow { color: var(--amber); }
.speaker-cta h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 0; text-wrap: balance; }
.speaker-cta p { margin: 0 0 .6rem; color: rgba(255, 255, 255, .75); }
@media (min-width: 940px) { .speaker-cta { grid-column: span 2; } }
@media (max-width: 620px) {
  .speaker-cta { align-items: stretch; }
  .speaker-cta .btn { justify-content: center; white-space: nowrap; }
}

/* ---------- patrocinador único con logo horizontal (16-sep-2026) ----------
   Atlantis University reemplaza a los dos sponsors de 2025. El logo es apaisado,
   asi que va en una tarjeta ancha en vez del circulo. */
/* Seccion sponsor: sin el aire generico de .section (queda 1.5rem para que no toque el borde ni el footer) y eyebrow grande (Rafael, 17-sep-2026). */
#sponsors { padding-block: 2.25rem; }
/* Panelistas e itinerario: algo menos de aire que el .section generico (112px en escritorio -> ~72px). */
#panelistas, #itinerario { padding-block: clamp(2.75rem, 5vw, 4.5rem); }
#sponsors .section-head { margin-bottom: 1.6rem; }
#sponsors .sponsor__logo { margin-bottom: 0; }   /* ya no hay pie de texto bajo el logo */
.eyebrow--lg { font-size: clamp(1rem, .9rem + .5vw, 1.3rem); letter-spacing: .22em; margin-bottom: .5rem; }
.sponsors--single { grid-template-columns: 1fr; max-width: 620px; }
.sponsor--wide { max-width: none; width: 100%; }
.sponsor__logo--wide {
  width: min(100%, 520px);
  aspect-ratio: auto;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1.4rem, 4vw, 2.6rem);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.sponsor__logo--wide img { width: 100%; height: auto; object-fit: contain; display: block; }

/* ---------- hero escritorio, banner 2026 (Rafael, 16-sep-2026) ----------
   Sin velo oscuro sobre la foto y con el texto pegado mas a la izquierda:
   el bloque de texto sale del contenedor de 1180px y usa un margen propio. */
@media (min-width: 621px) {
  /* Velo solo donde hay texto: arriba (cabecera) y a la izquierda (titular);
     se disuelve antes de llegar a Karen y al grupo, que quedan sin oscurecer. */
  .hero__media::after {
    display: block;
    background:
      linear-gradient(90deg, rgba(10, 12, 17, .82) 0%, rgba(10, 12, 17, .62) 34%, rgba(10, 12, 17, .22) 52%, transparent 64%),
      linear-gradient(180deg, rgba(10, 12, 17, .7) 0%, rgba(10, 12, 17, .25) 16%, transparent 30%);
  }
  .hero__inner { width: 100%; max-width: none; padding-inline: clamp(1.5rem, 5vw, 5.5rem); }
  .hero h1, .hero__lead, .hero__meta, .hero__host, .hero__date { text-shadow: 0 2px 18px rgba(10, 12, 17, .55); }
  /* Titular en dos lineas exactas: "Congreso Internacional de" / "Coaching y Liderazgo".
     El tamano escala con el ancho de la ventana para que la primera linea nunca parta. */
  .hero__content { max-width: 900px; }
  .hero h1 { font-size: clamp(1.9rem, 3.55vw, 4.05rem); text-wrap: initial; line-height: 1.1; }
  .hero__l1, .hero__l2 { display: block; white-space: nowrap; }
  .hero__lead, .hero__meta, .hero__host { max-width: 640px; }
  /* La foto empieza debajo de la cabecera fija y se ancla arriba: la cabeza de
     Karen (borde superior del banner) ya no queda escondida bajo el menu. */
  .hero__media { top: var(--header-total); }
  .hero__media img { object-position: 72% top; }
  .brand img { height: 54px; }
  /* Cabecera a todo el ancho con el mismo margen que el texto del hero: el logo
     queda alineado con el titular. */
  .site-header__bar { width: 100%; max-width: none; padding-inline: clamp(1.5rem, 5vw, 5.5rem); }
  /* El hero mide exactamente lo que mide el banner (1672x941) a ese ancho, mas la
     cabecera: la foto entra completa y no se corta a nadie por abajo. */
  .hero { min-height: calc(var(--header-total) + 100vw * 0.5628); }
}

/* ---------- grilla de invitados: 4 por fila en escritorio, 2 en movil (Rafael, 16-sep-2026) ---------- */
.speaker-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.speaker-cta { grid-column: span 3; }
/* Tarjetas mas estrechas con 4 por fila: nombre un punto mas pequeno y tema en 3 lineas. */
.speaker-card__name { font-size: 1rem; }
.speaker-card__role { font-size: .82rem; -webkit-line-clamp: 3; line-clamp: 3; }
.speaker-card__body { padding: 1.1rem 1.1rem; gap: .75rem; }
.speaker-card__go { width: 42px; height: 42px; }
/* Con 1rem, gap .75rem y flecha de 42px la columna de texto mide ~167px: "Marisol Benavides Restrepo" cabe en 2 lineas (Rafael, 17-sep-2026). */
@media (max-width: 940px) {
  .speaker-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .speaker-cta { grid-column: span 2; }
}
@media (max-width: 620px) {
  .speaker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
  .speaker-cta { grid-column: span 1; padding: 1.1rem 1rem; }
  .speaker-cta h3 { font-size: 1.15rem; }
  .speaker-cta p { font-size: .82rem; }
  .speaker-cta .btn { padding: .7rem .9rem; font-size: .8rem; }
  .speaker-card__body { padding: .8rem .8rem; gap: .5rem; }
  .speaker-card__name { font-size: .95rem; }
  .speaker-card__role { font-size: .72rem; }
  .speaker-card__go { width: 34px; height: 34px; }
  .speaker-card__go svg { width: 14px; height: 14px; }
}

/* ---------- notificaciones FOMO (assets/js/fomo.js) ----------
   Escritorio: abajo a la izquierda. Movil: arriba, justo bajo la cabecera fija. */
.fomo {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 90;   /* bajo el modal (100), sobre la cabecera (60) */
  display: flex; align-items: center; gap: .75rem;
  width: min(340px, calc(100vw - 2rem));
  padding: .7rem 2.2rem .7rem .7rem;
  border-radius: 14px;
  background: #fff; color: var(--text);
  box-shadow: 0 14px 40px rgba(16, 24, 40, .22), 0 0 0 1px rgba(16, 24, 40, .06);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.fomo.is-on { opacity: 1; transform: none; pointer-events: auto; }
.fomo__avatar { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 999px; object-fit: cover; background: var(--sky-deep); }
.fomo__text { min-width: 0; line-height: 1.3; }
.fomo__text p { margin: 0; }
.fomo__line { font-size: .86rem; color: var(--text); }
.fomo__name { font-family: var(--display); font-weight: 800; }
.fomo__city { color: var(--text-soft); }
.fomo__msg { font-size: .86rem; margin-top: .1rem; }
.fomo__vip { font-family: var(--display); font-weight: 800; color: var(--amber-deep); }
.fomo__time { font-size: .72rem; color: var(--text-soft); margin-top: .15rem; }
.fomo__close {
  position: absolute; top: .45rem; right: .45rem;
  width: 24px; height: 24px; border: 0; border-radius: 999px;
  background: rgba(16, 24, 40, .06); color: var(--text-soft);
  display: grid; place-items: center; cursor: pointer;
}
.fomo__close:hover { background: rgba(16, 24, 40, .12); color: var(--text); }
@media (max-width: 620px) {
  .fomo { left: .75rem; right: .75rem; bottom: auto; top: calc(var(--header-total) + .6rem); width: auto; transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .fomo { transition: opacity .2s ease; transform: none !important; }
}
