/* ============================================================
   summits/innovacion-panama-2026/styles.css — PLANTILLA CANÓNICA v2.0
   summits.rinsainc.com/innovacion-panama-2026/

   Identidad: Forest + Emerald + Gold + Cream (variables --sm-*)
   Animaciones inspiradas en masterclass v2 (mesh, orbs, pulse, fade-up)

   Componentes propios summit (no existen en masterclass):
   - .sme-agenda__tabs (tabs por día con paneles)
   - .sme-agenda__item--{logistica|apertura|conferencia|panel|workshop|networking|cierre}
   - .sme-venue (card de sede dedicada)
   - .sme-asist-card (1 card grande, no 3 como weekends)
   - .sme-gate__radios + radio cards (campo asistencia presencial/virtual)
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   TOKENS · Variables del subdominio summits
═══════════════════════════════════════════════════════════ */
:root {
  /* Paleta forest + emerald + gold (identidad summits) */
  --sm-forest:        #1A4A2E;
  --sm-forest-dark:   #0D2E1A;
  --sm-forest-deep:   #051A0A;
  --sm-forest-light:  rgba(26,74,46,0.08);
  --sm-emerald:       #2D7A4F;
  --sm-emerald-dark:  #1F5C3B;
  --sm-emerald-light: rgba(45,122,79,0.10);
  --sm-gold:          #C9A227;
  --sm-gold-dark:     #9A7A1C;
  --sm-gold-light:    rgba(201,162,39,0.12);
  --sm-cream:         #F4FAF6;
  --sm-white:         #FFFFFF;
  --sm-red:           #B01C2E;
  --sm-red-light:     rgba(176,28,46,0.08);
  --sm-green:         #1A7A4A;
  --sm-green-light:   rgba(26,122,74,0.12);
  --sm-gray-50:       #FAFAFA;
  --sm-gray-100:      #F0EFED;
  --sm-gray-200:      #D1D5DB;
  --sm-gray-500:      #6B7280;
  --sm-gray-700:      #374151;
  --sm-dark:          #0A1A0E;

  /* Tipos de sesión (colores) */
  --sm-tipo-logistica:   #6B7280;
  --sm-tipo-apertura:    #1A4A2E;
  --sm-tipo-conferencia: #2451A0;
  --sm-tipo-panel:       #7C3AED;
  --sm-tipo-workshop:    #0B7BAC;
  --sm-tipo-networking:  #C9A227;
  --sm-tipo-cierre:      #B01C2E;

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

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

  --sm-shadow-sm:     0 2px 8px rgba(10,26,14,0.06);
  --sm-shadow-md:     0 8px 24px rgba(10,26,14,0.10);
  --sm-shadow-lg:     0 16px 48px rgba(10,26,14,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(--sm-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--sm-dark);
  background: var(--sm-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 (.sm-btn)
═══════════════════════════════════════════════════════════ */
.sm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--sm-font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--sm-radius-md);
  transition: all 180ms;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.sm-btn--forest {
  background: var(--sm-forest);
  color: white;
  box-shadow: 0 4px 14px rgba(26,74,46,0.3);
}
.sm-btn--forest:hover {
  background: var(--sm-forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26,74,46,0.4);
}
.sm-btn--gold {
  background: linear-gradient(135deg, var(--sm-gold) 0%, var(--sm-gold-dark) 100%);
  color: var(--sm-forest-deep);
  box-shadow: 0 4px 14px rgba(201,162,39,0.3);
}
.sm-btn--gold:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(201,162,39,0.4); }
.sm-btn--outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.sm-btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.sm-btn--outline-forest {
  background: transparent;
  color: var(--sm-forest);
  border: 1.5px solid var(--sm-forest);
}
.sm-btn--outline-forest:hover { background: var(--sm-forest); color: white; }
.sm-btn--ghost { background: transparent; color: var(--sm-gray-700); }
.sm-btn--ghost:hover { color: var(--sm-forest); background: var(--sm-forest-light); }
.sm-btn--lg { padding: 14px 28px; font-size: 15px; }
.sm-btn--full { width: 100%; }

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

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

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

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

.sme-hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 60%, rgba(26,74,46,0.7) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(45,122,79,0.35) 0%, transparent 50%),
    radial-gradient(ellipse 70% 80% at 50% 110%, rgba(5,26,10,0.9) 0%, transparent 60%);
  animation: sme-mesh 14s ease-in-out infinite alternate;
}
@keyframes sme-mesh {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2%, 1%) scale(1.05); }
}

.sme-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%);
}

.sme-hero__orb { position: absolute; border-radius: 50%; filter: blur(40px); }
.sme-hero__orb--1 {
  width: 360px; height: 360px;
  top: 12%; left: 6%;
  background: radial-gradient(circle, rgba(26,74,46,0.7) 0%, transparent 70%);
  animation: sme-orb 20s ease-in-out infinite;
}
.sme-hero__orb--2 {
  width: 280px; height: 280px;
  bottom: 18%; right: 10%;
  background: radial-gradient(circle, rgba(45,122,79,0.35) 0%, transparent 70%);
  animation: sme-orb 16s ease-in-out infinite reverse;
}
.sme-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: sme-orb 24s ease-in-out infinite 4s;
}
@keyframes sme-orb {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(28px, -22px); }
  66%      { transform: translate(-18px, 22px); }
}

.sme-hero__orbit-wrap {
  position: absolute;
  top: 50%; right: 7%;
  transform: translateY(-50%);
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.sme-hero__orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07); }
.sme-hero__orbit--1 { width: 360px; height: 360px; animation: sme-orbit 30s linear infinite; }
.sme-hero__orbit--1::before {
  content: ''; position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sm-gold);
  box-shadow: 0 0 12px var(--sm-gold);
  top: -3px; left: 50%; transform: translateX(-50%);
}
.sme-hero__orbit--2 { width: 240px; height: 240px; animation: sme-orbit 22s linear infinite reverse; }
.sme-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 sme-orbit { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.sme-hero__medallion {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sm-gold) 0%, var(--sm-gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--sm-forest-deep);
  box-shadow: 0 8px 32px rgba(201,162,39,0.4), inset 0 -2px 8px rgba(0,0,0,0.2);
  animation: sme-pulse 4s ease-in-out infinite;
}
@keyframes sme-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); }
}

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

.sme-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(--sm-radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sm-gold);
  margin-bottom: 22px;
  animation: sme-fade-up 0.6s ease-out;
}
.sme-hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sm-gold);
  box-shadow: 0 0 8px var(--sm-gold);
  animation: sme-blink 2s ease-in-out infinite;
}
@keyframes sme-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.sme-hero__title {
  font-family: var(--sm-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: sme-fade-up 0.7s 0.1s ease-out both;
}
.sme-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: sme-fade-up 0.7s 0.2s ease-out both;
}
.sme-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 30px;
  animation: sme-fade-up 0.7s 0.3s ease-out both;
}
@keyframes sme-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sme-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: sme-fade-up 0.7s 0.4s ease-out both;
}
.sme-hero__meta-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.sme-hero__meta-item svg { width: 18px; height: 18px; color: var(--sm-emerald); flex-shrink: 0; }

.sme-countdown { margin-bottom: 28px; animation: sme-fade-up 0.7s 0.5s ease-out both; }
.sme-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;
}
.sme-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(--sm-radius-lg);
  backdrop-filter: blur(8px);
}
.sme-countdown__unit { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.sme-countdown__num {
  font-family: var(--sm-font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sme-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;
}
.sme-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;
}

.sme-live {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  background: linear-gradient(135deg, rgba(45,122,79,0.25) 0%, rgba(26,74,46,0.5) 100%);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--sm-radius-lg);
  margin-bottom: 28px;
  max-width: 580px;
}
.sme-live__pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--sm-red);
  box-shadow: 0 0 0 0 rgba(176,28,46,0.6);
  animation: sme-live-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes sme-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);  }
}
.sme-live__text { display: flex; flex-direction: column; gap: 2px; }
.sme-live__text strong { font-size: 15px; color: white; font-weight: 700; }
.sme-live__text span   { font-size: 13px; color: rgba(255,255,255,0.72); }

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

.sme-hero__bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--sm-white));
  z-index: 1;
}

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

/* ════════════════════════════════════════════════════════════
   AGENDA · Tabs por día + timeline tipificado
═══════════════════════════════════════════════════════════ */
.sme-agenda__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.sme-agenda__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 22px;
  background: white;
  border: 2px solid var(--sm-gray-100);
  border-radius: var(--sm-radius-lg);
  cursor: pointer;
  transition: all 180ms;
  min-width: 200px;
  text-align: left;
}
.sme-agenda__tab:hover { border-color: var(--sm-emerald); }
.sme-agenda__tab.is-active {
  background: var(--sm-forest);
  border-color: var(--sm-forest);
  color: white;
}
.sme-agenda__tab-num {
  font-family: var(--sm-font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--sm-emerald);
  text-transform: uppercase;
}
.sme-agenda__tab.is-active .sme-agenda__tab-num { color: var(--sm-gold); }
.sme-agenda__tab-date {
  font-family: var(--sm-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--sm-dark);
  margin-top: 4px;
}
.sme-agenda__tab.is-active .sme-agenda__tab-date { color: white; }
.sme-agenda__tab-title {
  font-size: 12.5px;
  color: var(--sm-gray-500);
  font-weight: 500;
  margin-top: 2px;
}
.sme-agenda__tab.is-active .sme-agenda__tab-title { color: rgba(255,255,255,0.75); }

.sme-agenda__panel {
  display: none;
  max-width: 920px;
  margin: 0 auto;
}
.sme-agenda__panel.is-active { display: block; animation: sme-fade-up 0.3s ease-out; }
.sme-agenda__panel-fecha {
  text-align: center;
  font-family: var(--sm-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--sm-forest);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--sm-gray-200);
}

.sme-agenda__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sme-agenda__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--sm-gray-100);
  border-left: 4px solid var(--sm-gray-200);
  border-radius: var(--sm-radius-md);
  transition: all 200ms;
}
.sme-agenda__item:hover { box-shadow: var(--sm-shadow-sm); }
.sme-agenda__hora {
  font-family: var(--sm-font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--sm-forest);
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}
.sme-agenda__body { display: flex; flex-direction: column; gap: 6px; }
.sme-agenda__tipo {
  display: inline-block;
  width: fit-content;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--sm-radius-sm);
  color: white;
}
.sme-agenda__titulo {
  font-family: var(--sm-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--sm-dark);
  line-height: 1.35;
}
.sme-agenda__lugar {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  color: var(--sm-gray-500);
  font-weight: 500;
}
.sme-agenda__ponente {
  font-size: 13px;
  color: var(--sm-emerald);
  font-weight: 600;
}
.sme-agenda__desc {
  font-size: 13.5px;
  color: var(--sm-gray-500);
  line-height: 1.6;
  margin-top: 2px;
}

/* Tipos de sesión - color del borde + badge */
.sme-agenda__item--logistica   { border-left-color: var(--sm-tipo-logistica); }
.sme-agenda__item--apertura    { border-left-color: var(--sm-tipo-apertura); }
.sme-agenda__item--conferencia { border-left-color: var(--sm-tipo-conferencia); }
.sme-agenda__item--panel       { border-left-color: var(--sm-tipo-panel); }
.sme-agenda__item--workshop    { border-left-color: var(--sm-tipo-workshop); }
.sme-agenda__item--networking  { border-left-color: var(--sm-tipo-networking); }
.sme-agenda__item--cierre      { border-left-color: var(--sm-tipo-cierre); }

.sme-agenda__tipo--logistica   { background: var(--sm-tipo-logistica); }
.sme-agenda__tipo--apertura    { background: var(--sm-tipo-apertura); }
.sme-agenda__tipo--conferencia { background: var(--sm-tipo-conferencia); }
.sme-agenda__tipo--panel       { background: var(--sm-tipo-panel); }
.sme-agenda__tipo--workshop    { background: var(--sm-tipo-workshop); }
.sme-agenda__tipo--networking  { background: var(--sm-tipo-networking); color: var(--sm-dark); }
.sme-agenda__tipo--cierre      { background: var(--sm-tipo-cierre); }

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

.sme-ponentes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
.sme-ponente {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--sm-radius-lg);
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: all 200ms;
}
.sme-ponente:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,162,39,0.3);
}
.sme-ponente__avatar-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 14px;
}
.sme-ponente__avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 3px solid var(--sm-gold);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.sme-ponente__avatar img { width: 100%; height: 100%; object-fit: cover; }
.sme-ponente__dia-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(--sm-emerald);
  color: white;
  border-radius: var(--sm-radius-full);
  white-space: nowrap;
}
.sme-ponente__redes {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.sme-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;
}
.sme-ponente__red:hover {
  background: var(--sm-gold);
  color: var(--sm-forest-deep);
  border-color: var(--sm-gold);
  transform: translateY(-2px);
}
.sme-ponente__red svg { width: 16px; height: 16px; }
.sme-ponente__nombre {
  font-family: var(--sm-font-heading);
  font-size: 17px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 4px;
}
.sme-ponente__cargo {
  font-size: 13px;
  color: var(--sm-gold);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.sme-ponente__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}
.sme-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(--sm-radius-full);
  color: var(--sm-gold);
  font-weight: 600;
}
.sme-ponente__bio {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  text-align: left;
}

/* ════════════════════════════════════════════════════════════
   VENUE · Card destacada
═══════════════════════════════════════════════════════════ */
.sme-venue {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  background: white;
  border: 1px solid var(--sm-gray-100);
  border-radius: var(--sm-radius-lg);
  padding: 36px;
  box-shadow: var(--sm-shadow-sm);
}
.sme-venue__foto {
  background: var(--sm-cream);
  border-radius: var(--sm-radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.sme-venue__foto img { width: 100%; height: 100%; object-fit: cover; }
.sme-venue__foto-placeholder { color: var(--sm-emerald); opacity: 0.5; }
.sme-venue__body { display: flex; flex-direction: column; gap: 12px; }
.sme-venue__nombre {
  font-family: var(--sm-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--sm-forest);
  line-height: 1.2;
}
.sme-venue__direccion {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sm-emerald);
}
.sme-venue__direccion svg { color: var(--sm-emerald); }
.sme-venue__desc {
  font-size: 14.5px;
  color: var(--sm-gray-700);
  line-height: 1.7;
}
.sme-venue__caracteristicas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.sme-venue__caracteristica {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--sm-gray-700);
  font-weight: 500;
}
.sme-venue__caracteristica svg { color: var(--sm-emerald); flex-shrink: 0; }
.sme-venue .sm-btn { align-self: flex-start; margin-top: 8px; }

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

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

.sme-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;
}

.sme-unete__side {
  background: linear-gradient(135deg, var(--sm-forest) 0%, var(--sm-forest-dark) 100%);
  color: white;
  padding: 32px 28px;
  border-radius: var(--sm-radius-lg);
  box-shadow: 0 12px 40px rgba(26,74,46,0.3);
  position: sticky; top: 96px;
  overflow: hidden;
}
.sme-unete__side::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.18) 0%, transparent 70%);
  top: -100px; right: -80px;
  pointer-events: none;
}
.sme-unete__side-icon {
  width: 56px; height: 56px;
  border-radius: var(--sm-radius-md);
  background: rgba(201,162,39,0.18);
  color: var(--sm-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.sme-unete__side-icon svg { width: 28px; height: 28px; }
.sme-unete__side-titulo {
  font-family: var(--sm-font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.sme-unete__side-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.sme-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;
}
.sme-unete__side-item svg {
  width: 18px; height: 18px;
  color: var(--sm-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

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

/* ════════════════════════════════════════════════════════════
   GATE · 6 paneles + campos extra (organizacion + asistencia radio)
═══════════════════════════════════════════════════════════ */
.sm-gate-panel--hidden { display: none !important; }

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

/* Radio cards (campo asistencia) */
.sme-gate__radios { display: flex; flex-direction: column; gap: 8px; }
.sme-gate__radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--sm-gray-200);
  border-radius: var(--sm-radius-md);
  cursor: pointer;
  transition: all 180ms;
  background: white;
}
.sme-gate__radio:hover { border-color: var(--sm-emerald); }
.sme-gate__radio input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--sm-forest);
  cursor: pointer;
  flex-shrink: 0;
}
.sme-gate__radio:has(input:checked) {
  border-color: var(--sm-forest);
  background: var(--sm-forest-light);
}
.sme-gate__radio-content { display: flex; flex-direction: column; gap: 2px; }
.sme-gate__radio-title {
  font-family: var(--sm-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--sm-dark);
}
.sme-gate__radio-desc {
  font-size: 12.5px;
  color: var(--sm-gray-500);
}

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

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

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

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

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

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

/* 1 card grande asistencia (no 3 como weekends) */
.sme-asist-card {
  background: white;
  border: 1px solid var(--sm-gray-100);
  border-radius: var(--sm-radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  transition: all 200ms;
}
.sme-asist-card:hover { box-shadow: var(--sm-shadow-md); }
.sme-asist-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--sm-radius-md);
  background: var(--sm-emerald-light);
  color: var(--sm-emerald);
  display: flex; align-items: center; justify-content: center;
}
.sme-asist-card__titulo {
  font-family: var(--sm-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--sm-dark);
  line-height: 1.3;
}
.sme-asist-card__desc {
  font-size: 14.5px;
  color: var(--sm-gray-500);
  line-height: 1.7;
}
.sme-asist-card__lock {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--sm-gray-50);
  border: 1px dashed var(--sm-gray-200);
  border-radius: var(--sm-radius-md);
}
.sme-asist-card__lock-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  color: var(--sm-gray-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sme-asist-card__lock-msg {
  font-size: 13px;
  color: var(--sm-gray-700);
  line-height: 1.5;
}

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

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

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

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