/* ============================================================
   weekends/innovacion/styles.css — PLANTILLA CANÓNICA v2.0
   weekends.rinsainc.com/innovacion/

   Identidad: Navy + Teal + Gold + Cream (variables --wk-*)
   Animaciones inspiradas en masterclass v2 (mesh, orbs, pulse, fade-up)

   Componentes propios weekends (no existen en masterclass):
   - .wke-sesion (cards de las N sesiones, en carrusel horizontal)
   - .wke-ponentes (carrusel de N ponentes)
   - .wke-universidad (card aliada con logo + descripción + highlights)
   - .wke-postevento__asist-grid (3 cards de asistencia per-sesión)
   - .wke-postevento__grab-grid (N compartimientos dinámicos)
   - .wke-unete__cerrado (vista cuando registro está cerrado)
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   TOKENS · Variables del subdominio weekends
   (declaradas localmente; cuando el portal weekends se refactorice
   en Fase A6, se moverán al ../styles.css y se limpiarán de aquí)
═══════════════════════════════════════════════════════════ */
:root {
  /* Paleta navy + teal (identidad weekends) */
  --wk-navy:          #1A3A6B;
  --wk-navy-dark:     #0D1B35;
  --wk-navy-deep:     #0A1424;
  --wk-navy-light:    rgba(26,58,107,0.08);
  --wk-teal:          #0B7BAC;
  --wk-teal-dark:     #08628C;
  --wk-teal-light:    rgba(11,123,172,0.10);
  --wk-gold:          #C9A227;
  --wk-gold-dark:     #9A7A1C;
  --wk-gold-light:    rgba(201,162,39,0.12);
  --wk-cream:         #FAF8F5;
  --wk-red:           #B01C2E;
  --wk-red-light:     rgba(176,28,46,0.08);
  --wk-green:         #1A7A4A;
  --wk-green-light:   rgba(26,122,74,0.12);
  --wk-gray-50:       #FAFAFA;
  --wk-gray-100:      #F0EFED;
  --wk-gray-200:      #D1D5DB;
  --wk-gray-500:      #6B7280;
  --wk-gray-700:      #374151;
  --wk-dark:          #0D1A2C;
  --wk-white:         #FFFFFF;

  --wk-font-heading:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --wk-font-body:     'Inter', system-ui, -apple-system, sans-serif;

  --wk-radius-sm:     6px;
  --wk-radius-md:     10px;
  --wk-radius-lg:     16px;
  --wk-radius-full:   9999px;

  --wk-shadow-sm:     0 2px 8px rgba(13,26,44,0.06);
  --wk-shadow-md:     0 8px 24px rgba(13,26,44,0.10);
  --wk-shadow-lg:     0 16px 48px rgba(13,26,44,0.15);
}

/* ════════════════════════════════════════════════════════════
   RESET + TIPOGRAFÍA BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--wk-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--wk-dark);
  background: var(--wk-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* ════════════════════════════════════════════════════════════
   BOTONES (.wk-btn)
═══════════════════════════════════════════════════════════ */
.wk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--wk-font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--wk-radius-md);
  transition: all 180ms;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.wk-btn--teal {
  background: var(--wk-teal);
  color: white;
  box-shadow: 0 4px 14px rgba(11,123,172,0.25);
}
.wk-btn--teal:hover {
  background: var(--wk-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11,123,172,0.35);
}
.wk-btn--gold {
  background: linear-gradient(135deg, var(--wk-gold) 0%, var(--wk-gold-dark) 100%);
  color: var(--wk-navy-deep);
  box-shadow: 0 4px 14px rgba(201,162,39,0.3);
}
.wk-btn--gold:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(201,162,39,0.4); }
.wk-btn--outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.wk-btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.wk-btn--outline-navy {
  background: transparent;
  color: var(--wk-navy);
  border: 1.5px solid var(--wk-navy);
}
.wk-btn--outline-navy:hover { background: var(--wk-navy); color: white; }
.wk-btn--ghost {
  background: transparent;
  color: var(--wk-gray-700);
}
.wk-btn--ghost:hover { color: var(--wk-navy); background: var(--wk-navy-light); }
.wk-btn--lg { padding: 14px 28px; font-size: 15px; }
.wk-btn--full { width: 100%; }

/* ════════════════════════════════════════════════════════════
   NAVBAR (.wk-nav)
═══════════════════════════════════════════════════════════ */
.wk-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,26,44,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wk-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wk-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.wk-nav__logo { width: 32px; height: 32px; }
.wk-nav__brand-text { display: flex; flex-direction: column; }
.wk-nav__brand-title {
  font-family: var(--wk-font-heading);
  font-size: 14px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.wk-nav__brand-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--wk-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.wk-nav__links { display: flex; gap: 4px; align-items: center; }
.wk-nav__link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border-radius: var(--wk-radius-md);
  transition: all 150ms;
}
.wk-nav__link:hover { color: white; background: rgba(255,255,255,0.06); }
.wk-nav__link--cta {
  background: var(--wk-teal);
  color: white !important;
  margin-left: 8px;
}
.wk-nav__link--cta:hover { background: var(--wk-teal-dark); }
.wk-nav__toggle { display: none; color: white; padding: 6px; }

/* Drawer móvil */
.wk-drawer { position: fixed; inset: 0; z-index: 110; pointer-events: none; opacity: 0; transition: opacity 200ms; }
.wk-drawer.open { pointer-events: auto; opacity: 1; }
.wk-drawer__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.wk-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: var(--wk-navy-deep);
  padding: 70px 24px 24px;
  transform: translateX(100%);
  transition: transform 250ms ease;
  display: flex; flex-direction: column; gap: 4px;
}
.wk-drawer.open .wk-drawer__panel { transform: translateX(0); }
.wk-drawer__close {
  position: absolute; top: 16px; right: 16px;
  color: white;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.wk-drawer__close:hover { background: rgba(255,255,255,0.08); }
.wk-drawer__link {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: var(--wk-radius-md);
}
.wk-drawer__link:hover { background: rgba(255,255,255,0.06); }
.wk-drawer__cta {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--wk-teal);
  color: white;
  font-weight: 700;
  border-radius: var(--wk-radius-md);
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   SECCIÓN GENÉRICA
═══════════════════════════════════════════════════════════ */
.wk-section { padding: 90px 0; position: relative; }
.wk-section--cream { background: var(--wk-cream); }
.wk-section--dark { background: var(--wk-navy-deep); color: white; overflow: hidden; padding: 80px 0; }
.wk-section__header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.wk-section__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--wk-teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wk-section__eyebrow--gold { color: var(--wk-gold); }
.wk-section__title {
  font-family: var(--wk-font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--wk-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.wk-section__title--white { color: white; }
.wk-section__sub {
  font-size: 16px;
  color: var(--wk-gray-500);
  line-height: 1.7;
}
.wk-section__sub--white { color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════════════════════════
   HERO · 100vh · Animado
═══════════════════════════════════════════════════════════ */
.wke-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--wk-navy-deep);
  color: white;
  overflow: hidden;
  padding: 100px 0 60px;
}
.wke-hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

/* Mesh gradient animado (navy + teal accent) */
.wke-hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 60%, rgba(26,58,107,0.65) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(11,123,172,0.30) 0%, transparent 50%),
    radial-gradient(ellipse 70% 80% at 50% 110%, rgba(13,27,53,0.9) 0%, transparent 60%);
  animation: wke-mesh 14s ease-in-out infinite alternate;
}
@keyframes wke-mesh {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2%, 1%) scale(1.05); }
}

/* Dot pattern overlay */
.wke-hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 35%, transparent 80%);
}

/* Orbes flotantes */
.wke-hero__orb { position: absolute; border-radius: 50%; filter: blur(40px); }
.wke-hero__orb--1 {
  width: 360px; height: 360px;
  top: 12%; left: 6%;
  background: radial-gradient(circle, rgba(26,58,107,0.7) 0%, transparent 70%);
  animation: wke-orb 20s ease-in-out infinite;
}
.wke-hero__orb--2 {
  width: 280px; height: 280px;
  bottom: 18%; right: 10%;
  background: radial-gradient(circle, rgba(11,123,172,0.35) 0%, transparent 70%);
  animation: wke-orb 16s ease-in-out infinite reverse;
}
.wke-hero__orb--3 {
  width: 220px; height: 220px;
  top: 50%; right: 25%;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  animation: wke-orb 24s ease-in-out infinite 4s;
}
@keyframes wke-orb {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(28px, -22px); }
  66%      { transform: translate(-18px, 22px); }
}

/* Orbit + medallion (lado derecho) */
.wke-hero__orbit-wrap {
  position: absolute;
  top: 50%; right: 7%;
  transform: translateY(-50%);
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.wke-hero__orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07); }
.wke-hero__orbit--1 { width: 360px; height: 360px; animation: wke-orbit 30s linear infinite; }
.wke-hero__orbit--1::before {
  content: ''; position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wk-gold);
  box-shadow: 0 0 12px var(--wk-gold);
  top: -3px; left: 50%; transform: translateX(-50%);
}
.wke-hero__orbit--2 { width: 240px; height: 240px; animation: wke-orbit 22s linear infinite reverse; }
.wke-hero__orbit--2::before {
  content: ''; position: absolute;
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
  top: -2.5px; left: 50%; transform: translateX(-50%);
}
@keyframes wke-orbit { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.wke-hero__medallion {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wk-gold) 0%, var(--wk-gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--wk-navy-deep);
  box-shadow: 0 8px 32px rgba(201,162,39,0.4), inset 0 -2px 8px rgba(0,0,0,0.2);
  animation: wke-pulse 4s ease-in-out infinite;
}
@keyframes wke-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 8px 32px rgba(201,162,39,0.4), inset 0 -2px 8px rgba(0,0,0,0.2); }
  50%      { transform: scale(1.04); box-shadow: 0 12px 40px rgba(201,162,39,0.55), inset 0 -2px 8px rgba(0,0,0,0.2); }
}

.wke-hero__inner { position: relative; z-index: 1; width: 100%; }
.wke-hero__content { max-width: 720px; }

/* Badge */
.wke-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--wk-radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--wk-gold);
  margin-bottom: 22px;
  animation: wke-fade-up 0.6s ease-out;
}
.wke-hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wk-gold);
  box-shadow: 0 0 8px var(--wk-gold);
  animation: wke-blink 2s ease-in-out infinite;
}
@keyframes wke-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.wke-hero__title {
  font-family: var(--wk-font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  animation: wke-fade-up 0.7s 0.1s ease-out both;
}
.wke-hero__subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  font-weight: 400;
  animation: wke-fade-up 0.7s 0.2s ease-out both;
}
.wke-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 30px;
  animation: wke-fade-up 0.7s 0.3s ease-out both;
}
@keyframes wke-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Meta del ciclo */
.wke-hero__meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  animation: wke-fade-up 0.7s 0.4s ease-out both;
}
.wke-hero__meta-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.wke-hero__meta-item svg { width: 18px; height: 18px; color: var(--wk-teal); flex-shrink: 0; }

/* Countdown */
.wke-countdown { margin-bottom: 28px; animation: wke-fade-up 0.7s 0.5s ease-out both; }
.wke-countdown__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wke-countdown__grid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--wk-radius-lg);
  backdrop-filter: blur(8px);
}
.wke-countdown__unit { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.wke-countdown__num {
  font-family: var(--wk-font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.wke-countdown__lbl {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.wke-countdown__sep {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  align-self: flex-start;
  margin-top: 4px;
}

/* Live badge (sesión en vivo o ciclo concluido) */
.wke-live {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  background: linear-gradient(135deg, rgba(11,123,172,0.25) 0%, rgba(26,58,107,0.5) 100%);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--wk-radius-lg);
  margin-bottom: 28px;
  max-width: 560px;
}
.wke-live__pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--wk-red);
  box-shadow: 0 0 0 0 rgba(176,28,46,0.6);
  animation: wke-live-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes wke-live-pulse {
  0%   { box-shadow: 0 0 0 0    rgba(176,28,46,0.7); }
  100% { box-shadow: 0 0 0 14px rgba(176,28,46,0);  }
}
.wke-live__text { display: flex; flex-direction: column; gap: 2px; }
.wke-live__text strong { font-size: 15px; color: white; font-weight: 700; }
.wke-live__text span   { font-size: 13px; color: rgba(255,255,255,0.72); }

/* CTAs */
.wke-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; animation: wke-fade-up 0.7s 0.6s ease-out both; }

/* Fade inferior del hero */
.wke-hero__bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--wk-white));
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════
   MOSAICO (grid 4×2)
═══════════════════════════════════════════════════════════ */
.wke-mosaico {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.wke-mosaico__item {
  position: relative;
  padding: 28px;
  background: var(--wk-cream);
  border: 1px solid var(--wk-gray-100);
  border-radius: var(--wk-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  overflow: hidden;
}
.wke-mosaico__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--wk-shadow-md);
  border-color: var(--wk-teal-light);
}
.wke-mosaico__item--principal {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--wk-navy) 0%, var(--wk-navy-dark) 100%);
  color: white;
  border-color: transparent;
}
.wke-mosaico__item--principal::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,123,172,0.3) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  pointer-events: none;
}
.wke-mosaico__item--horizontal { grid-column: span 2; }
.wke-mosaico__item--vertical   { grid-row: span 2; }
.wke-mosaico__icon {
  width: 44px; height: 44px;
  border-radius: var(--wk-radius-md);
  background: var(--wk-teal-light);
  color: var(--wk-teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wke-mosaico__icon svg { width: 22px; height: 22px; }
.wke-mosaico__item--principal .wke-mosaico__icon {
  background: rgba(201,162,39,0.18);
  color: var(--wk-gold);
}
.wke-mosaico__titulo {
  font-family: var(--wk-font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.wke-mosaico__item--principal .wke-mosaico__titulo { font-size: 24px; }
.wke-mosaico__desc {
  font-size: 14px;
  color: var(--wk-gray-500);
  line-height: 1.6;
}
.wke-mosaico__item--principal .wke-mosaico__desc {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
}

/* ════════════════════════════════════════════════════════════
   CARRUSEL HORIZONTAL · Componente reutilizable (sesiones + ponentes)
   Usado para listas con N cards parametrizable. Scroll horizontal con
   snap + botones nav prev/next + dots indicadores. Soporta cualquier N.
═══════════════════════════════════════════════════════════ */
.wke-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.wke-carousel__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;          /* evita que el track atrape el scroll vertical de la página */
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 14px;       /* aire para hover-lift y dots */
  /* Ocultar scrollbar nativa */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.wke-carousel__track::-webkit-scrollbar { display: none; }
.wke-carousel__track:focus-visible {
  outline: 2px solid var(--wk-teal);
  outline-offset: 2px;
  border-radius: var(--wk-radius-lg);
}

/* Botones de navegación · flotantes a los lados */
.wke-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--wk-gray-100);
  box-shadow: var(--wk-shadow-md);
  color: var(--wk-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 180ms;
}
.wke-carousel__nav:hover {
  background: var(--wk-teal);
  color: white;
  border-color: var(--wk-teal);
  transform: translateY(-50%) scale(1.05);
}
.wke-carousel__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: white;
  color: var(--wk-blue-dark);
  transform: translateY(-50%);
}
.wke-carousel__nav--prev { left: -22px; }
.wke-carousel__nav--next { right: -22px; }

/* Variante dark (sección de ponentes) */
.wke-carousel--dark .wke-carousel__nav {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  color: white;
  backdrop-filter: blur(6px);
}
.wke-carousel--dark .wke-carousel__nav:hover {
  background: rgba(201,162,39,0.95);   /* gold accent */
  border-color: rgba(201,162,39,1);
  color: var(--wk-blue-dark);
}

/* Dots indicadores */
.wke-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.wke-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wk-gray-200);
  border: none;
  cursor: pointer;
  transition: all 180ms;
  padding: 0;
}
.wke-carousel__dot--active {
  background: var(--wk-teal);
  width: 24px;
  border-radius: 4px;
}
.wke-carousel__dots--light .wke-carousel__dot {
  background: rgba(255,255,255,0.25);
}
.wke-carousel__dots--light .wke-carousel__dot--active {
  background: #C9A227;   /* gold */
}

@media (max-width: 720px) {
  .wke-carousel__nav--prev { left: 4px; }
  .wke-carousel__nav--next { right: 4px; }
  .wke-carousel__nav { width: 38px; height: 38px; }
}

/* ════════════════════════════════════════════════════════════
   SESIONES · cards dentro del carrusel
═══════════════════════════════════════════════════════════ */
.wke-sesiones { /* aplica como wke-carousel__track también */ }

.wke-sesion {
  flex: 0 0 calc((100% - 22px) / 2);   /* 2 cards visibles en desktop · 22px gap · cards más anchas para dar espacio al dúo de co-ponentes (S1/S2) */
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--wk-gray-100);
  border-radius: var(--wk-radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  min-width: 0;
}
.wke-sesion:hover {
  transform: translateY(-4px);
  box-shadow: var(--wk-shadow-md);
  border-color: var(--wk-teal-light);
}
@media (max-width: 720px) {
  .wke-sesion { flex: 0 0 92%; padding: 26px 22px; }   /* 1 card por viewport en móvil */
}
.wke-sesion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--wk-gray-200);
}
.wke-sesion__numero {
  font-family: var(--wk-font-heading);
  font-size: 12px;
  font-weight: 800;
  color: white;
  background: var(--wk-teal);
  padding: 5px 12px;
  border-radius: var(--wk-radius-full);
  letter-spacing: 0.04em;
}
.wke-sesion__fecha {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wk-gray-500);
}
.wke-sesion__fecha svg { color: var(--wk-navy); }
.wke-sesion__titulo {
  font-family: var(--wk-font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--wk-dark);
  line-height: 1.35;
}
.wke-sesion__desc {
  font-size: 14px;
  color: var(--wk-gray-500);
  line-height: 1.65;
  flex: 1;
}
.wke-sesion__temas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.wke-sesion__tema {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--wk-teal-light);
  color: var(--wk-teal);
  border-radius: var(--wk-radius-sm);
}
/* ── Sesión card · dúo de co-ponentes (S1/S2) o ponente único (S3/S4) ──
   S1 y S2 muestran 2 co-ponentes lado a lado; S3 y S4 uno solo
   (modificador --solo colapsa a una columna). Todos son "Ponente". */
.wke-sesion__duo {
  display: grid;
  grid-template-columns: 1fr 26px 1fr;
  align-items: stretch;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--wk-gray-100);
  margin-top: auto;            /* alinea el bloque de ponentes al pie de la card */
}
.wke-sesion__duo--solo {
  grid-template-columns: 1fr;
}
.wke-sesion__persona {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.wke-sesion__persona-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.wke-sesion__persona-foto {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wk-gray-100);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wk-gray-500);
}
.wke-sesion__persona-foto img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.wke-sesion__persona-info { min-width: 0; }
.wke-sesion__persona-nombre {
  font-family: var(--wk-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--wk-dark);
  line-height: 1.25;
  word-wrap: break-word;
}
.wke-sesion__persona-cargo {
  font-size: 11px;
  color: var(--wk-gray-500);
  line-height: 1.3;
  margin-top: 2px;
}
.wke-sesion__rol-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--wk-radius-sm);
  width: fit-content;
  background: var(--wk-teal-light);
  color: var(--wk-teal);
}
.wke-sesion__duo-conector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wk-gray-500);
  opacity: 0.55;
  align-self: center;
  height: 100%;
  padding-top: 26px;
}
@media (max-width: 720px) {
  .wke-sesion__duo {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wke-sesion__duo-conector { transform: rotate(90deg); padding: 0; height: auto; }
}

/* ════════════════════════════════════════════════════════════
   PONENTES · Grid de 3 con redes sociales
═══════════════════════════════════════════════════════════ */
.wke-ponentes__bg { position: absolute; inset: 0; pointer-events: none; }
.wke-ponentes__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.wke-ponentes__glow {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(11,123,172,0.35) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(80px);
}

.wke-ponentes {
  position: relative;
  z-index: 1;
  /* aplica como wke-carousel__track — display:flex viene de la clase carrusel */
}
.wke-ponente {
  flex: 0 0 calc((100% - 44px) / 3);   /* 3 ponentes visibles en desktop */
  scroll-snap-align: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--wk-radius-lg);
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 200ms, background 200ms, border-color 200ms;
  min-width: 0;
}
.wke-ponente:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,162,39,0.3);
}
@media (max-width: 980px) {
  .wke-ponente { flex: 0 0 calc((100% - 22px) / 2); }
}
@media (max-width: 720px) {
  .wke-ponente { flex: 0 0 80%; }
}
.wke-ponente__avatar-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 14px;
}
.wke-ponente__avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 3px solid var(--wk-gold);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.wke-ponente__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.wke-ponente__sesion-badge {
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: var(--wk-teal);
  color: white;
  border-radius: var(--wk-radius-full);
  white-space: nowrap;
}
.wke-ponente__redes {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.wke-ponente__red {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms;
}
.wke-ponente__red:hover {
  background: var(--wk-gold);
  color: var(--wk-navy-deep);
  border-color: var(--wk-gold);
  transform: translateY(-2px);
}
.wke-ponente__red svg { width: 16px; height: 16px; }
.wke-ponente__nombre {
  font-family: var(--wk-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 4px;
}
.wke-ponente__cargo {
  font-size: 13px;
  color: var(--wk-gold);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.wke-ponente__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}
.wke-ponente__spec {
  font-size: 11px;
  padding: 4px 9px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--wk-radius-full);
  color: var(--wk-gold);
  font-weight: 600;
}
.wke-ponente__bio {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  text-align: left;
}

/* ════════════════════════════════════════════════════════════
   AGENDA · Timeline del ciclo
═══════════════════════════════════════════════════════════ */
.wke-agenda {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 28px;
}
.wke-agenda::before {
  content: '';
  position: absolute;
  left: 11px; top: 16px; bottom: 16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--wk-teal-light) 0%, var(--wk-navy) 50%, var(--wk-teal-light) 100%);
}
.wke-agenda__item {
  position: relative;
  padding: 18px 20px 18px 24px;
  margin-bottom: 12px;
  background: white;
  border: 1px solid var(--wk-gray-100);
  border-radius: var(--wk-radius-md);
  transition: all 200ms;
}
.wke-agenda__item:hover { box-shadow: var(--wk-shadow-sm); border-color: var(--wk-gray-200); }
.wke-agenda__item::before {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--wk-navy);
  left: -22px; top: 22px;
}
.wke-agenda__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.wke-agenda__hora {
  font-family: var(--wk-font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--wk-navy);
  background: var(--wk-navy-light);
  padding: 4px 10px;
  border-radius: var(--wk-radius-sm);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.wke-agenda__titulo {
  font-family: var(--wk-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--wk-dark);
  line-height: 1.4;
}
.wke-agenda__desc {
  font-size: 14px;
  color: var(--wk-gray-500);
  line-height: 1.65;
}

/* Tipos: sesion (destacado), asistencia, cierre */
.wke-agenda__item--sesion {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--wk-teal-light) 200%);
  border-color: var(--wk-teal-light);
  border-left: 4px solid var(--wk-teal);
}
.wke-agenda__item--sesion::before {
  background: var(--wk-teal);
  border-color: var(--wk-teal);
  width: 18px; height: 18px;
  left: -24px; top: 20px;
  box-shadow: 0 0 0 4px rgba(11,123,172,0.15);
}
.wke-agenda__item--sesion .wke-agenda__hora {
  color: white;
  background: var(--wk-teal);
}
.wke-agenda__item--sesion .wke-agenda__titulo { color: var(--wk-navy); }

.wke-agenda__item--asistencia {
  background: linear-gradient(135deg, var(--wk-gold-light) 0%, rgba(201,162,39,0.04) 100%);
  border: 2px solid var(--wk-gold);
}
.wke-agenda__item--asistencia::before {
  background: var(--wk-gold);
  border-color: var(--wk-gold);
  width: 16px; height: 16px;
  left: -23px; top: 22px;
  box-shadow: 0 0 0 4px rgba(201,162,39,0.2);
  animation: wke-key-pulse 2.4s ease-in-out infinite;
}
@keyframes wke-key-pulse {
  0%, 100% { box-shadow: 0 0 0 4px  rgba(201,162,39,0.2); }
  50%      { box-shadow: 0 0 0 10px rgba(201,162,39,0.08); }
}
.wke-agenda__item--asistencia .wke-agenda__hora {
  color: var(--wk-navy-deep);
  background: var(--wk-gold);
}

.wke-agenda__item--cierre {
  border-left: 4px solid var(--wk-navy-dark);
}
.wke-agenda__item--cierre::before { background: var(--wk-navy-dark); border-color: var(--wk-navy-dark); }

/* ════════════════════════════════════════════════════════════
   UNIVERSIDAD ALIADA · Card destacada (componente exclusivo)
═══════════════════════════════════════════════════════════ */
.wke-universidad {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  background: white;
  border: 1px solid var(--wk-gray-100);
  border-radius: var(--wk-radius-lg);
  padding: 36px;
  box-shadow: var(--wk-shadow-sm);
}
.wke-universidad__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--wk-cream);
  border-radius: var(--wk-radius-md);
  border: 1px solid var(--wk-gray-100);
}
.wke-universidad__logo img { max-width: 100%; max-height: 120px; object-fit: contain; }
.wke-universidad__body { display: flex; flex-direction: column; gap: 12px; }
.wke-universidad__nombre {
  font-family: var(--wk-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--wk-navy);
  line-height: 1.2;
}
.wke-universidad__pais {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wk-teal);
}
.wke-universidad__pais svg { color: var(--wk-teal); }
.wke-universidad__desc {
  font-size: 14.5px;
  color: var(--wk-gray-700);
  line-height: 1.7;
}
.wke-universidad__highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.wke-universidad__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--wk-gray-700);
  font-weight: 500;
}
.wke-universidad__highlight svg { color: var(--wk-teal); flex-shrink: 0; }
.wke-universidad .wk-btn { align-self: flex-start; margin-top: 8px; }

/* ════════════════════════════════════════════════════════════
   BENEFICIOS · Grid
═══════════════════════════════════════════════════════════ */
.wke-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.wke-beneficio {
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--wk-gray-100);
  border-radius: var(--wk-radius-lg);
  transition: all 200ms;
  position: relative;
  overflow: hidden;
}
.wke-beneficio:hover {
  transform: translateY(-3px);
  box-shadow: var(--wk-shadow-md);
  border-color: var(--wk-teal);
}
.wke-beneficio__icon {
  width: 52px; height: 52px;
  border-radius: var(--wk-radius-md);
  background: linear-gradient(135deg, var(--wk-teal) 0%, var(--wk-teal-dark) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(11,123,172,0.3);
}
.wke-beneficio__icon svg { width: 26px; height: 26px; }
.wke-beneficio__titulo {
  font-family: var(--wk-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--wk-dark);
  margin-bottom: 8px;
}
.wke-beneficio__desc {
  font-size: 14px;
  color: var(--wk-gray-500);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   ÚNETE · Background + Grid (sidebox + gate) + cerrado
═══════════════════════════════════════════════════════════ */
.wke-unete {
  position: relative;
  background: linear-gradient(180deg, #F4F7FB 0%, #E3EAF3 100%);
  overflow: hidden;
}
.wke-unete__bg { position: absolute; inset: 0; pointer-events: none; }
.wke-unete__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.wke-unete__glow--1 {
  width: 400px; height: 400px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(26,58,107,0.25) 0%, transparent 70%);
}
.wke-unete__glow--2 {
  width: 350px; height: 350px;
  bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(11,123,172,0.25) 0%, transparent 70%);
}

.wke-unete__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Sidebox de beneficios */
.wke-unete__side {
  background: linear-gradient(135deg, var(--wk-navy) 0%, var(--wk-navy-dark) 100%);
  color: white;
  padding: 32px 28px;
  border-radius: var(--wk-radius-lg);
  box-shadow: 0 12px 40px rgba(26,58,107,0.3);
  position: sticky; top: 96px;
  overflow: hidden;
}
.wke-unete__side::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,123,172,0.25) 0%, transparent 70%);
  top: -100px; right: -80px;
  pointer-events: none;
}
.wke-unete__side-icon {
  width: 56px; height: 56px;
  border-radius: var(--wk-radius-md);
  background: rgba(201,162,39,0.18);
  color: var(--wk-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.wke-unete__side-icon svg { width: 28px; height: 28px; }
.wke-unete__side-titulo {
  font-family: var(--wk-font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.wke-unete__side-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.wke-unete__side-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
}
.wke-unete__side-item svg {
  width: 18px; height: 18px;
  color: var(--wk-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Vista "registro cerrado" — alternativa cuando inicia S3 */
.wke-unete__cerrado {
  max-width: 580px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--wk-gray-100);
  border-radius: var(--wk-radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
}
.wke-unete__cerrado-icon {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--wk-gray-100);
  color: var(--wk-gray-500);
  display: flex; align-items: center; justify-content: center;
}
.wke-unete__cerrado-titulo {
  font-family: var(--wk-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--wk-dark);
  margin-bottom: 12px;
}
.wke-unete__cerrado-texto {
  font-size: 15px;
  color: var(--wk-gray-500);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════════
   GATE · 6 paneles
═══════════════════════════════════════════════════════════ */
.wk-gate-panel--hidden { display: none !important; }

.wke-gate {
  background: white;
  border-radius: var(--wk-radius-lg);
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--wk-gray-100);
}
.wke-gate__panel { animation: wke-fade-up 0.4s ease-out; }
.wke-gate__header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wk-gray-100);
}
.wke-gate__header svg { color: var(--wk-navy); }
.wke-gate__header h3 {
  font-family: var(--wk-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--wk-dark);
}
.wke-gate__texto {
  font-size: 13.5px;
  color: var(--wk-gray-500);
  line-height: 1.65;
  margin-bottom: 18px;
}
.wke-gate__form { display: flex; flex-direction: column; gap: 14px; }
.wke-gate__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wke-gate__row--phone { grid-template-columns: 110px 1fr; }
.wke-gate__field { display: flex; flex-direction: column; gap: 6px; }
.wke-gate__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--wk-gray-700);
  letter-spacing: 0.02em;
}
.wke-gate__input {
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  border: 1.5px solid var(--wk-gray-200);
  border-radius: var(--wk-radius-md);
  background: white;
  color: var(--wk-dark);
  transition: border-color 180ms, box-shadow 180ms;
}
.wke-gate__input:focus {
  outline: none;
  border-color: var(--wk-teal);
  box-shadow: 0 0 0 3px var(--wk-teal-light);
}
.wke-gate__input[readonly] { background: var(--wk-gray-50); color: var(--wk-gray-500); }
.wke-gate__field-error { font-size: 12px; color: var(--wk-red); }

.wke-gate__spinner {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--wk-gray-500);
  margin-top: 12px;
}
.wke-spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid var(--wk-gray-200);
  border-top-color: var(--wk-teal);
  border-radius: 50%;
  animation: wke-spin 0.8s linear infinite;
}
.wke-spinner--lg { width: 32px; height: 32px; border-width: 3px; }
@keyframes wke-spin { to { transform: rotate(360deg); } }

.wke-gate__error {
  margin-top: 14px;
  padding: 14px;
  background: var(--wk-red-light);
  border: 1px solid rgba(176,28,46,0.15);
  border-radius: var(--wk-radius-md);
  display: flex; flex-direction: column; gap: 10px;
}
.wke-gate__error p { font-size: 13px; color: var(--wk-red); }
.wke-gate__error--full { align-items: center; text-align: center; padding: 32px 20px; }
.wke-gate__error--full svg { color: var(--wk-red); margin-bottom: 4px; }
.wke-gate__error--full h3 { font-size: 17px; color: var(--wk-dark); font-family: var(--wk-font-heading); font-weight: 800; }

.wke-gate__loading,
.wke-gate__success {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 32px 20px; gap: 12px;
}
.wke-gate__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--wk-green-light);
  color: var(--wk-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.wke-gate__success h3, .wke-gate__loading h3 {
  font-family: var(--wk-font-heading);
  font-size: 18px; font-weight: 800; color: var(--wk-dark);
}
.wke-gate__success p, .wke-gate__loading p {
  font-size: 14px; color: var(--wk-gray-500); line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   WELCOME BANNER (panel registro)
═══════════════════════════════════════════════════════════ */
.wke-welcome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--wk-teal-light) 0%, rgba(11,123,172,0.04) 100%);
  border: 1px solid rgba(11,123,172,0.25);
  border-radius: var(--wk-radius-md);
  animation: wke-fade-up 0.3s ease-out;
}
.wke-welcome__logo {
  width: 44px; height: 44px;
  object-fit: contain;
  background: white;
  border-radius: var(--wk-radius-sm);
  padding: 4px;
  border: 1px solid var(--wk-gray-100);
  flex-shrink: 0;
}
.wke-welcome__text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.wke-welcome__text strong {
  font-family: var(--wk-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--wk-dark);
}
.wke-welcome__text span { font-size: 12px; color: var(--wk-gray-500); }
.wke-welcome__vip {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--wk-navy-deep);
  color: var(--wk-gold);
  border-radius: var(--wk-radius-full);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   PANEL NIVEL INSUFICIENTE
═══════════════════════════════════════════════════════════ */
.wke-nivel { text-align: center; padding: 8px 0; }
.wke-nivel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--wk-navy);
  background: var(--wk-navy-light);
  padding: 6px 14px;
  border-radius: var(--wk-radius-full);
  margin-bottom: 22px;
}
.wke-nivel__badge svg { width: 14px; height: 14px; }
.wke-nivel__content { margin-bottom: 24px; }
.wke-nivel__logo,
.wke-nivel__logo-placeholder {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--wk-gold);
  padding: 8px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wk-gold);
}
.wke-nivel__institucion {
  font-family: var(--wk-font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--wk-dark);
  margin-bottom: 12px;
}
.wke-nivel__mensaje {
  font-size: 15px;
  color: var(--wk-gray-700);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}
.wke-nivel__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.wke-nivel__cta .wk-btn { min-width: 240px; }

/* ════════════════════════════════════════════════════════════
   POST-EVENTO · Bloques (asistencia + grabaciones)
═══════════════════════════════════════════════════════════ */
.wke-postevento { background: var(--wk-cream); }
.wke-postevento__bloque {
  max-width: 1000px;
  margin: 0 auto;
}
.wke-postevento__bloque + .wke-postevento__bloque {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--wk-gray-200);
}
.wke-postevento__bloque-titulo {
  font-family: var(--wk-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--wk-navy);
  margin-bottom: 8px;
}
.wke-postevento__bloque-desc {
  font-size: 14.5px;
  color: var(--wk-gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 720px;
}

/* Grid de N cards asistencia (una por sesión · auto-fit responsive) */
.wke-postevento__asist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.wke-asist-card {
  background: white;
  border: 1px solid var(--wk-gray-100);
  border-radius: var(--wk-radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 200ms;
}
.wke-asist-card:hover { box-shadow: var(--wk-shadow-md); }
.wke-asist-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.wke-asist-card__num {
  font-family: var(--wk-font-heading);
  font-size: 11px;
  font-weight: 800;
  color: white;
  background: var(--wk-teal);
  padding: 4px 10px;
  border-radius: var(--wk-radius-full);
  letter-spacing: 0.04em;
}
.wke-asist-card__fecha {
  font-size: 12px;
  font-weight: 700;
  color: var(--wk-gray-500);
}
.wke-asist-card__titulo {
  font-family: var(--wk-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--wk-dark);
  line-height: 1.4;
  flex: 1;
}
.wke-asist-card__lock {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--wk-gray-50);
  border: 1px dashed var(--wk-gray-200);
  border-radius: var(--wk-radius-md);
}
.wke-asist-card__lock-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  color: var(--wk-gray-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wke-asist-card__lock-msg {
  font-size: 12px;
  color: var(--wk-gray-700);
  line-height: 1.4;
}

/* Grid de N compartimientos grabación */
.wke-postevento__grab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.wke-grab-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: white;
  border: 1px solid var(--wk-gray-100);
  border-radius: var(--wk-radius-lg);
  transition: all 200ms;
  color: var(--wk-dark);
}
.wke-grab-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--wk-shadow-md);
  border-color: var(--wk-teal);
}
.wke-grab-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--wk-radius-md);
  background: var(--wk-teal-light);
  color: var(--wk-teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wke-grab-card__text { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.wke-grab-card__titulo {
  font-family: var(--wk-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--wk-dark);
}
.wke-grab-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--wk-teal);
}

/* Empty: 1 candado grande cuando 0 grabaciones */
.wke-grab-empty {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: white;
  border: 1px dashed var(--wk-gray-200);
  border-radius: var(--wk-radius-lg);
  max-width: 600px;
}
.wke-grab-empty__icon {
  width: 56px; height: 56px;
  border-radius: var(--wk-radius-md);
  background: var(--wk-gray-50);
  color: var(--wk-gray-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wke-grab-empty p {
  font-size: 14px;
  color: var(--wk-gray-700);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.wk-footer {
  background: var(--wk-navy-deep);
  color: white;
  padding: 60px 0 28px;
}
.wk-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.wk-footer__logo { width: 120px; margin-bottom: 14px; }
.wk-footer__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 380px;
}
.wk-footer__heading {
  font-family: var(--wk-font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: white;
}
.wk-footer__links { display: flex; flex-direction: column; gap: 10px; }
.wk-footer__links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: color 150ms;
}
.wk-footer__links a:hover { color: var(--wk-gold); }
.wk-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.wk-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .wke-hero__orbit-wrap { display: none; }
  .wke-hero__content { max-width: 100%; }
  .wke-unete__grid { grid-template-columns: 1fr; }
  .wke-unete__side { position: static; }
  .wke-mosaico { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .wke-mosaico__item--principal { grid-column: span 2; }
  .wke-mosaico__item--horizontal { grid-column: span 2; }
  .wke-mosaico__item--vertical { grid-row: span 2; }
  .wke-sesiones { grid-template-columns: 1fr 1fr; }
  .wke-ponentes { grid-template-columns: 1fr 1fr; }
  .wke-universidad { grid-template-columns: 1fr; padding: 28px; }
  .wke-universidad__logo { max-width: 200px; margin: 0 auto; }
  .wke-postevento__asist-grid { grid-template-columns: 1fr 1fr; }
  .wk-footer__grid { grid-template-columns: 1fr 1fr; }
  .wk-nav__links { display: none; }
  .wk-nav__toggle { display: flex; align-items: center; justify-content: center; }
}
@media (max-width: 768px) {
  .wk-section { padding: 64px 0; }
  .wke-hero { min-height: 100vh; padding: 90px 0 50px; }
  .wke-hero__meta { gap: 14px; }
  .wke-countdown__unit { min-width: 44px; }
  .wke-countdown__grid { padding: 14px 16px; gap: 4px; }
  .wke-mosaico { grid-template-columns: 1fr; }
  .wke-mosaico__item, .wke-mosaico__item--principal, .wke-mosaico__item--horizontal, .wke-mosaico__item--vertical { grid-column: span 1; grid-row: span 1; }
  .wke-mosaico__item--principal { grid-row: span 2; }
  .wke-sesiones { grid-template-columns: 1fr; }
  .wke-ponentes { grid-template-columns: 1fr; }
  .wke-postevento__asist-grid { grid-template-columns: 1fr; }
  .wke-gate { padding: 22px; }
  .wke-gate__row { grid-template-columns: 1fr; }
  .wke-gate__row--phone { grid-template-columns: 90px 1fr; }
  .wk-footer__grid { grid-template-columns: 1fr; }
}
