/* ============================================
   eila26 · Manual del Expositor
   Brand-accurate palette (Manual de Marca 2026)
   Navy #02205B · Purple #530782 · Magenta #F760F8
   Typography: Instrument Sans (brand-approved Elementor equivalent of Neue Kabel)
   ============================================ */

:root {
  --navy: #02205B;
  --navy-deep: #01143a;
  --purple: #530782;
  --purple-soft: #7a1cb4;
  --magenta: #F760F8;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --faint: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);

  --warn: #ffb347;
  --danger: #ff6b8a;

  --grad-brand: linear-gradient(135deg, #530782 0%, #8a2fbd 45%, #F760F8 100%);
  --grad-brand-soft: linear-gradient(135deg, #7a1cb4 0%, #F760F8 100%);
  --grad-bg: radial-gradient(ellipse at top right, #102d80 0%, #02205B 45%, #01143a 100%);
  --grad-strip: linear-gradient(90deg, #02205B 0%, #530782 50%, #F760F8 100%);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --nav-h: 60px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--navy-deep);
  color: var(--white);
  font-family: 'Instrument Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv01";
}

.eila { display: block; width: 100%; max-width: 100%; overflow: clip; }

a { color: var(--magenta); }

/* ---------- Shared ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--magenta);
  margin: 0 0 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 2.2vw + 0.5rem, 2.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.section-title span {
  background: var(--grad-brand-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title.centered { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 14px 34px -12px rgba(247, 96, 248, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); }

.brand-strip {
  height: 6px;
  background: var(--grad-strip);
  width: 100%;
  display: block;
}

/* ---------- Stars background ---------- */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,0.8), transparent 50%),
    radial-gradient(1.2px 1.2px at 28% 68%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 44% 14%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1.3px 1.3px at 62% 52%, rgba(255,255,255,0.8), transparent 50%),
    radial-gradient(1px 1px at 78% 32%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(1.4px 1.4px at 88% 78%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(1px 1px at 18% 88%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1.2px 1.2px at 58% 84%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 72% 10%, rgba(255,255,255,0.45), transparent 50%),
    radial-gradient(1.1px 1.1px at 34% 44%, rgba(255,255,255,0.6), transparent 50%);
  opacity: 0.9;
  pointer-events: none;
}

/* ============================================
   STICKY NAV
   ============================================ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(1, 20, 58, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topnav__brand {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--white);
  text-decoration: none;
}
.topnav__brand span { color: var(--magenta); }
.topnav__links {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin-left: auto;
}
.topnav__links::-webkit-scrollbar { display: none; }
.topnav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.topnav__links a:hover { color: var(--white); border-color: var(--magenta); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--grad-bg);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(247, 96, 248, 0.22) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.hero__logo {
  display: block;
  width: clamp(200px, 34vw, 380px);
  height: auto;
  margin: 0 0 1.75rem;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--magenta);
  margin: 0 0 0.75rem;
}
.hero__headline {
  font-size: clamp(2.2rem, 4vw + 0.5rem, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  max-width: 16ch;
}
.hero__headline span {
  background: var(--grad-brand-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__tagline {
  font-size: clamp(1.05rem, 1vw + 0.6rem, 1.25rem);
  font-weight: 400;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 1.8rem;
}
.hero__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}
.hero__meta li { position: relative; padding-right: 1.4rem; }
.hero__meta li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--magenta);
}
.hero__meta li:last-child { padding-right: 0; }
.hero__meta li:last-child::after { display: none; }
.hero__meta strong { font-weight: 700; }
.hero__hashtag {
  display: inline-block;
  margin-top: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--grad-brand-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   DOC SECTIONS
   ============================================ */
.doc {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 2.5rem);
}
.doc-section { scroll-margin-top: calc(var(--nav-h) + 16px); padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.doc-section + .doc-section { border-top: 1px solid var(--line); }
.doc-section__num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--magenta);
  margin-bottom: 0.5rem;
}
.doc-section h2 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.doc-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--white);
}
.doc-section h3:first-of-type { margin-top: 0.5rem; }
.doc-section p { color: var(--muted); margin: 0 0 1rem; }
.doc-section p strong, .doc-section li strong { color: var(--white); font-weight: 700; }
.doc-section a { color: var(--magenta); text-decoration: none; border-bottom: 1px solid rgba(247,96,248,0.4); }
.doc-section a:hover { border-color: var(--magenta); }

.lead {
  font-size: 1.12rem;
  color: var(--white) !important;
  max-width: 60ch;
}

/* ---------- Rules / bullet lists ---------- */
.rules {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.7rem;
}
.rules li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
  line-height: 1.5;
}
.rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--grad-brand-soft);
}
.rules--check li::before {
  content: "";
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F760F8' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.rules--ban li::before {
  content: "";
  top: 0.2em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: none;
  border: 2px solid var(--danger);
  box-shadow: inset 0 0 0 6px transparent;
}
.rules--ban li::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.68em;
  width: 16px;
  height: 2px;
  background: var(--danger);
  transform: rotate(-45deg);
  transform-origin: center;
}

/* ============================================
   CALLOUTS
   ============================================ */
.callout {
  display: flex;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-left: 3px solid var(--magenta);
  margin: 1.25rem 0;
}
.callout__icon { flex: none; font-size: 1.1rem; line-height: 1.5; }
.callout p { margin: 0; color: var(--muted); }
.callout p strong { color: var(--white); }
.callout__title {
  display: block;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.callout--warn { border-left-color: var(--warn); background: rgba(255, 179, 71, 0.07); }
.callout--warn .callout__title { color: var(--warn); }
.callout--danger { border-left-color: var(--danger); background: rgba(255, 107, 138, 0.08); }
.callout--danger .callout__title { color: var(--danger); }
.callout--info { border-left-color: var(--magenta); background: rgba(247, 96, 248, 0.06); }

/* ============================================
   DATA TABLES
   ============================================ */
.table-wrap { overflow-x: auto; margin: 0 0 1.25rem; border-radius: var(--r-md); border: 1px solid var(--line); }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 460px;
}
table.data thead th {
  text-align: left;
  padding: 0.85rem 1rem;
  background: rgba(83, 7, 130, 0.35);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--line-strong);
}
table.data tbody td {
  padding: 0.8rem 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.02); }
table.data tbody td strong { color: var(--white); }
table.data a { color: var(--magenta); text-decoration: none; }

/* ============================================
   CONTACT CARDS
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0.5rem 0 0;
}
.contact-card {
  padding: 1.4rem 1.5rem;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--grad-brand);
}
.contact-card__org {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--magenta);
  font-weight: 600;
  margin: 0 0 0.6rem;
}
.contact-card__name { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.15rem; color: var(--white); }
.contact-card__role { font-size: 0.88rem; color: var(--faint); margin: 0 0 0.9rem; }
.contact-card__links { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.9rem; }
.contact-card__links a { color: var(--muted); text-decoration: none; }
.contact-card__links a:hover { color: var(--magenta); }

/* ============================================
   ADDRESS / ACCESS BLOCKS
   ============================================ */
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0.5rem 0 1.25rem;
}
.access-card {
  padding: 1.3rem 1.4rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.access-card__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.access-card--in .access-card__label { color: var(--magenta); }
.access-card--cargo .access-card__label { color: var(--warn); }
.access-card p { margin: 0; color: var(--white); font-weight: 600; font-size: 1rem; }
.access-card small { color: var(--faint); font-weight: 400; font-size: 0.82rem; display: block; margin-top: 0.3rem; }

/* ============================================
   PLANO / FIGURE
   ============================================ */
.plano { margin: 1rem 0 1.25rem; }
.plano__frame {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 50px -20px rgba(2, 32, 91, 0.6);
}
.plano__frame img { display: block; width: 100%; height: auto; }
.plano figcaption { color: var(--faint); font-size: 0.85rem; margin-top: 0.7rem; text-align: center; }
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}
.legend li { display: flex; align-items: center; gap: 0.45rem; }
.legend .dot { width: 10px; height: 10px; border-radius: 3px; background: var(--magenta); }

/* ---------- map ---------- */
.venue__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1.25rem 0 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px -20px rgba(2, 32, 91, 0.6), 0 0 0 1px var(--line);
}
.venue__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) brightness(0.95);
}

/* ---------- key spec chips ---------- */
.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.5rem 0 1.25rem;
  padding: 0;
  list-style: none;
}
.specs li {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  font-size: 0.85rem;
  color: var(--white);
}
.specs li strong { color: var(--magenta); }

/* ============================================
   SPONSOR DE LA APP  (Southbridge)
   Banda bajo el hero + crédito inline en Reuniones.
   ============================================ */
.appsponsor {
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem);
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.appsponsor__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.8;
  max-width: 48ch;
}
.appsponsor__label strong { color: var(--magenta); font-weight: 700; }
.appsponsor__logo {
  width: 320px;
  max-width: 78vw;
  height: auto;
  display: block;
}

/* Crédito compacto dentro de una sección de contenido. */
.sponsor-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  margin: 1.75rem 0 0;
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
}
.sponsor-note__text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}
.sponsor-note__logo { width: 190px; max-width: 60vw; height: auto; display: block; }

/* ============================================
   ORG FOOTER
   ============================================ */
.org {
  padding: 3rem clamp(1.25rem, 5vw, 4rem) 1.5rem;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  border-top: 1px solid var(--line);
}
/* min-height + justify-content: los tres logos tienen alturas distintas; sin esto
   cada etiqueta queda a una altura diferente. Así todas parten arriba alineadas. */
.org__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 155px;
  gap: 0.85rem;
  text-align: center;
}
.org__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 500;
}
.org__logo { height: 120px; width: auto; display: block; object-fit: contain; }
.org__logo--mg { height: 100px; }
/* Southbridge es un logo horizontal muy ancho (4.9:1): se ajusta por ancho,
   no por alto, para que no domine a los otros dos. */
.org__logo--sb { height: auto; width: 230px; max-width: 62vw; }
.org__divider { width: 1px; height: 130px; background: var(--line); }

@media (max-width: 720px) {
  .org { flex-wrap: wrap; gap: 2rem; }
  .org__divider { display: none; }
}

.colophon {
  text-align: center;
  padding: 1.5rem 1.25rem 3rem;
  background: var(--navy-deep);
  color: var(--faint);
  font-size: 0.85rem;
  line-height: 1.7;
}
.colophon strong { color: var(--white); }
.colophon .hash {
  display: block;
  margin-top: 0.75rem;
  font-weight: 700;
  background: var(--grad-brand-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 720px) {
  .contact-grid,
  .access-grid { grid-template-columns: 1fr; }
  .topnav__brand { font-size: 0.85rem; }
}
@media (max-width: 640px) {
  .hero__logo { width: clamp(180px, 60vw, 260px); }
  .org { flex-direction: column; gap: 1.25rem; }
  .org__divider { width: 36px; height: 1px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ============================================
   GUÍA GRIP — componentes adicionales
   (extiende el sistema del Manual del Expositor)
   ============================================ */

/* ---------- Chip para nombres de botón en inglés ---------- */
.ui {
  display: inline-block;
  padding: 0.08em 0.5em;
  border-radius: 6px;
  background: rgba(247, 96, 248, 0.12);
  border: 1px solid rgba(247, 96, 248, 0.3);
  color: #ffb3ff;
  font-weight: 600;
  font-size: 0.88em;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.ui em { font-style: normal; color: var(--faint); font-weight: 400; }

/* ---------- Tarjetas de acceso rápido (bajo el hero) ---------- */
.quickcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin: 0 0 0.5rem;
}
.quickcard {
  display: block;
  padding: 1.1rem 1.15rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  text-decoration: none !important;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.quickcard:hover { transform: translateY(-3px); border-color: rgba(247,96,248,0.5); }
.quickcard__icon { font-size: 1.35rem; display: block; margin-bottom: 0.55rem; }
.quickcard__title { display: block; font-weight: 700; color: var(--white); font-size: 0.98rem; margin-bottom: 0.2rem; }
.quickcard__desc { display: block; color: var(--faint); font-size: 0.82rem; line-height: 1.45; }

/* ---------- Pasos numerados ---------- */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.85rem;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.5rem;
  color: var(--muted);
  line-height: 1.55;
  min-height: 1.7rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--grad-brand);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ---------- Bloque doble: Web / Móvil ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0.75rem 0 1.25rem;
}
.split__col {
  padding: 1.25rem 1.35rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.split__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--magenta);
  margin: 0 0 0.9rem;
}
.split__col--mobile .split__label { color: var(--warn); }
.split__col--mobile .steps li::before { background: linear-gradient(135deg, #c47a1e 0%, #ffb347 100%); }
.split__col .steps { margin-bottom: 0; }
.split__col .rules { margin-bottom: 0; }
.split__col p:last-child { margin-bottom: 0; }

/* ---------- FAQ acordeón ---------- */
.faq { display: grid; gap: 0.6rem; margin: 0.5rem 0 0; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.faq details[open] { border-color: rgba(247,96,248,0.35); background: rgba(247,96,248,0.05); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 2.6rem 0.9rem 1.15rem;
  font-weight: 600;
  color: var(--white);
  font-size: 0.96rem;
  position: relative;
  line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 0.8rem;
  color: var(--magenta);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--magenta); }
.faq .faq__body { padding: 0 1.15rem 1.05rem; }
.faq .faq__body p { margin: 0 0 0.6rem; color: var(--muted); font-size: 0.94rem; }
.faq .faq__body p:last-child { margin-bottom: 0; }
.faq .faq__body .rules { margin-bottom: 0; }

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.55rem;
}
.checklist li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(247, 96, 248, 0.55);
  background: rgba(247, 96, 248, 0.06);
}
.checklist__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--magenta);
  margin: 1.6rem 0 0.8rem;
}
.checklist__title:first-child { margin-top: 0.5rem; }

/* ---------- Tarjeta destacada (patrocinadores) ---------- */
.spotlight {
  padding: 1.6rem 1.75rem;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(83,7,130,0.45) 0%, rgba(247,96,248,0.14) 100%);
  border: 1px solid rgba(247, 96, 248, 0.32);
  margin: 1.25rem 0;
}
.spotlight h3 { margin-top: 0 !important; }
.spotlight p:last-child { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .quickcards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .quickcards { grid-template-columns: 1fr; }
}

/* ---------- CTA del hero ---------- */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 0;
}

/* ---------- Caja del enlace de ingreso ---------- */
.loginbox {
  padding: 1.4rem 1.6rem;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(83,7,130,0.4) 0%, rgba(247,96,248,0.12) 100%);
  border: 1px solid rgba(247, 96, 248, 0.35);
  margin: 1.25rem 0 1.75rem;
}
.loginbox__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--magenta);
  margin: 0 0 0.6rem !important;
}
.loginbox__url {
  display: inline-block;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
  border-bottom: 2px solid var(--magenta) !important;
  overflow-wrap: anywhere;   /* corta en los <wbr> (las barras) antes que a mitad de palabra */
  line-height: 1.35;
}
.loginbox__url:hover { color: var(--magenta) !important; }
.loginbox__note {
  margin: 0.75rem 0 0 !important;
  font-size: 0.88rem;
  color: var(--faint) !important;
}

/* ============================================
   MOCKUPS — capturas reales de la app
   ============================================ */

/* ---------- Fila de pantallas de celular ---------- */
.shots {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-start;
  margin: 1.25rem 0 1.5rem;
}
.shot {
  margin: 0;
  width: 200px;
  flex: 0 0 auto;
}
.shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.75);
}
.shot figcaption {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--faint);
  text-align: center;
}
.shot figcaption strong { color: var(--white); font-weight: 600; display: block; }

/* Centrar cuando son pocas y caben holgadas */
.shots--center { justify-content: center; }

/* ---------- Captura de escritorio ---------- */
.shot--web {
  width: 100%;
  max-width: 100%;
  margin: 1.25rem 0 1.5rem;
}
.shot--web img {
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, 0.8);
}
.shot--web figcaption { text-align: left; font-size: 0.82rem; }

/* ---------- Etiqueta de plataforma ---------- */
.shots-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--magenta);
  margin: 1.5rem 0 0.25rem;
}
.shots-label--web { color: var(--warn); }

@media (max-width: 520px) {
  .shots { gap: 1rem; justify-content: center; }
  .shot { width: calc(50% - 0.5rem); max-width: 200px; }
}

/* Variante de la caja de enlace para la descarga de la app */
.loginbox--app {
  background: linear-gradient(135deg, rgba(2,32,91,0.75) 0%, rgba(247,96,248,0.10) 100%);
  border-color: rgba(255, 179, 71, 0.4);
}
.loginbox--app .loginbox__label { color: var(--warn); }
.loginbox--app .loginbox__url { border-bottom-color: var(--warn) !important; }
.loginbox--app .loginbox__url:hover { color: var(--warn) !important; }

/* Variante de la caja de enlace para la inscripción al evento (paso 0) */
.loginbox--reg {
  background: linear-gradient(135deg, rgba(2,32,91,0.8) 0%, rgba(35,194,127,0.12) 100%);
  border-color: rgba(35, 194, 127, 0.45);
}
.loginbox--reg .loginbox__label { color: #35d492; }
.loginbox--reg .loginbox__url { border-bottom-color: #35d492 !important; }
.loginbox--reg .loginbox__url:hover { color: #35d492 !important; }

/* ---------- Lista de remitentes a agregar a contactos ---------- */
.maillist {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  display: grid;
  gap: 0.55rem;
}
.maillist li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}
.maillist code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffb3ff;
  word-break: break-all;
}
.maillist span {
  font-size: 0.82rem;
  color: var(--faint);
}

/* Correo en línea dentro del texto (no confundir con .maillist) */
.mail {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
  font-weight: 600;
  color: #ffb3ff;
  background: rgba(247, 96, 248, 0.10);
  border: 1px solid rgba(247, 96, 248, 0.25);
  border-radius: 5px;
  padding: 0.05em 0.35em;
  word-break: break-all;
}

/* Captura vertical (correo) — más angosta que las de escritorio */
.shot--mail { max-width: 520px; margin-left: auto; margin-right: auto; }
.shot--mail img { border-radius: var(--r-md); border: 1px solid var(--line); box-shadow: 0 22px 50px -22px rgba(0,0,0,0.85); }
.shot--mail figcaption { text-align: center; }
