@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "MD Tall";
  src: url("./fonts/MDTall2.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Black Mango";
  src: url("./fonts/black-mango-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #050505;
  --bg-card: #0b0a0a;
  --bg-bar: #0a0909;
  --fg: #f1eee8;
  --red: #d10a0a;
  --red-hover: #ff4141;
  --font-display: "MD Tall", "Oswald", "Arial Narrow", sans-serif;
  --font-editorial: "Black Mango", Georgia, serif;
  --font-body: "Poppins", Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}


a {
  color: var(--fg);
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

button {
  font: inherit;
}

::selection {
  background: var(--red);
  color: var(--fg);
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 200;
  background: var(--red);
  color: var(--fg);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  transition: top 160ms ease;
}
.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Utility bar */
.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px clamp(20px, 4vw, 56px);
  background: var(--bg-bar);
  border-bottom: 1px solid rgba(241, 238, 232, 0.08);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.utility-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(241, 238, 232, 0.45);
}
.utility-left img {
  display: block;
}
.utility-right {
  color: rgba(241, 238, 232, 0.55);
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  /* z-index 65: por encima de #main-nav (60). El panel móvil de pantalla
   * completa se pinta después del header en el stacking del body; sin este
   * valor más alto, el botón hamburguesa (que sí se anima a "✕" via
   * aria-expanded) queda tapado por el propio panel y no hay forma de
   * cerrarlo con un toque en móvil. */
  z-index: 65;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 16px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(209, 10, 10, 0.28);
}
/*
 * El backdrop-filter va en un ::before (no directo en .site-header) porque
 * filter/backdrop-filter en un ancestro convierte a ese ancestro en el
 * "containing block" de sus descendientes position:fixed. #main-nav usa
 * fixed para el panel móvil de pantalla completa; si el blur viviera en
 * .site-header, el panel quedaría atrapado dentro del alto del header
 * en vez de cubrir el viewport completo.
 */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  display: block;
  height: 42px;
  width: auto;
}
.brand-word {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-word em {
  font-style: normal;
  color: var(--red);
}
#main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2.2vw, 30px);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#main-nav a {
  color: rgba(241, 238, 232, 0.72);
  transition: color 140ms ease;
}
#main-nav a:hover {
  color: var(--red);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-cta,
.button-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--fg);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 2px;
  transition: background 140ms ease, transform 160ms var(--ease-out);
  border: none;
  cursor: pointer;
}
.header-cta:hover,
.button-primary:hover {
  background: var(--red-hover);
  color: var(--fg);
}
.header-cta:active,
.button-primary:active {
  transform: scale(0.97);
}
.button-compact {
  padding: 12px 22px;
  font-size: 12px;
}
.button-block {
  width: 100%;
  justify-content: center;
  padding: 17px 28px;
  font-size: 14px;
  margin-top: 4px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(241, 238, 232, 0.25);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: var(--fg);
  transition: transform 160ms ease, opacity 160ms ease;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(56px, 8vh, 96px) clamp(20px, 4vw, 56px) clamp(48px, 7vh, 84px);
  border-bottom: 1px solid rgba(209, 10, 10, 0.25);
  min-height: min(86vh, 860px);
  display: flex;
  align-items: center;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #050505 url("assets/glass-7.webp") center / cover no-repeat;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 5, 0.94) 0%,
    rgba(5, 5, 5, 0.74) 32%,
    rgba(5, 5, 5, 0.1) 60%,
    rgba(5, 5, 5, 0.35) 100%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-chips {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  border: 1px solid rgba(241, 238, 232, 0.25);
  color: rgba(241, 238, 232, 0.7);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: rgba(5, 5, 5, 0.45);
}
.chip-red {
  border-color: var(--red);
  color: var(--red);
  font-weight: 500;
}
.chip-small {
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 5px 12px;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(52px, 7.2vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  max-width: 14ch;
  text-shadow: 0 2px 30px rgba(5, 5, 5, 0.9);
}
.hero h1 span {
  color: var(--red);
}
.hero-edition {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.16em;
  color: rgba(241, 238, 232, 0.7);
}
.hero-lead {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: rgba(241, 238, 232, 0.78);
  text-wrap: pretty;
  text-shadow: 0 1px 18px rgba(5, 5, 5, 0.9);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.button-ghost {
  border: 1px solid rgba(241, 238, 232, 0.3);
  color: var(--fg);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  transition: border-color 140ms ease, color 140ms ease, transform 160ms var(--ease-out);
}
.button-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}
.button-ghost:active {
  transform: scale(0.97);
}
.hero-facts {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  border-top: 1px solid rgba(209, 10, 10, 0.3);
  padding-top: 26px;
  margin-top: 6px;
}
.hero-facts div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-facts span {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.5);
}
.hero-facts strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-facts strong img {
  display: block;
  height: 26px;
  width: auto;
}
.fact-vip span,
.fact-vip strong {
  color: var(--red);
}
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo img {
  width: min(78%, 320px);
  max-height: min(46vh, 360px);
  object-fit: contain;
  filter: drop-shadow(0 10px 50px rgba(5, 5, 5, 0.9));
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(209, 10, 10, 0.25);
  padding: 14px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-set {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: rgba(241, 238, 232, 0.85);
  white-space: nowrap;
  padding-right: 48px;
}
.marquee-set img {
  height: 24px;
  vertical-align: middle;
  margin: 0 22px;
  opacity: 0.8;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Sections */
.section-shell {
  padding: clamp(64px, 9vh, 110px) clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(209, 10, 10, 0.25);
  max-width: 1240px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.max-62 {
  max-width: 62ch;
}
.max-58 {
  max-width: 58ch;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
}
.kicker-num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--red);
}
.kicker-line {
  width: 44px;
  height: 1px;
  background: var(--red);
}
.kicker-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.6);
}
.kicker-on-photo .kicker-label {
  color: rgba(241, 238, 232, 0.75);
}
.h-editorial {
  margin: 0;
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  text-wrap: pretty;
}
.h-display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.h-display span {
  color: var(--red);
}
/* Escala reducida para secciones secundarias (hoy: Patrocinadores) — misma
   familia y tratamiento que .h-display, pero claramente un peldaño abajo
   para que no compita con el objetivo principal (Inscripción). */
.h-display-secondary {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.h-display-secondary span {
  color: var(--red);
}
.section-kicker--secondary .kicker-num {
  font-size: 20px;
}
.section-kicker--secondary .kicker-line {
  width: 28px;
}
.max-20ch {
  max-width: 20ch;
}
.max-52ch {
  max-width: 52ch;
}
/* H2 sobre foto (sección Experiencia): escala más chica que el h-display de sección,
   para que el bloque de texto quepa dentro del alto acotado (max-height:680px) de la foto. */
.h-display-sede {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.92;
}
.h-display-sede span {
  color: var(--red);
}
.body-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(241, 238, 232, 0.72);
  text-wrap: pretty;
}
.body-copy.on-photo {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(241, 238, 232, 0.8);
}
.text-link {
  color: var(--red);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.text-red {
  color: var(--red);
}

/* 01 Congreso */
.congreso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.congreso-grid .section-head {
  gap: 22px;
}
.congreso-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.stat-row {
  display: flex;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-card {
  border: 1px solid rgba(209, 10, 10, 0.35);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-card strong {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--red);
  line-height: 0.9;
}
.stat-card span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.6);
}
.stat-card--primary {
  padding: 28px 30px;
  min-width: 168px;
}
.stat-card--primary strong {
  font-size: 76px;
}
.stat-secondary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 4px 0;
}
.stat-secondary div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.stat-secondary strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--fg);
  line-height: 1;
}
.stat-secondary span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.55);
}
.organiza-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(241, 238, 232, 0.12);
  padding-top: 22px;
}
.organiza-row span {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.45);
}

/* 02 Speakers */
.speaker-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 16px;
  align-items: start;
}
.speaker-card {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(241, 238, 232, 0.12);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 140ms ease;
}
/* auto-fill resuelve a columnas desiguales en anchos chicos (ej. 210px + 124px),
   dejando las tarjetas apretadas. Abajo de 768px fijamos 2 columnas iguales. */
@media (max-width: 767px) {
  .speaker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Legibilidad de MD Tall en móvil: es una condensada muy angosta. En escritorio,
 * a tamaños grandes, el ojo tiene espacio para resolver las letras apretadas.
 * En una pantalla chica esa misma condensación + mayúsculas + interlineado
 * ceñido hace que frases de más de 3-4 palabras cuesten trabajo de leer.
 * Se abre un poco el tracking y se relaja el interlineado solo en mobile;
 * el tamaño ya lo resuelve el clamp() de cada regla, no se toca aquí. */
@media (max-width: 767px) {
  .hero h1 {
    letter-spacing: 0.005em;
    line-height: 0.98;
  }
  .h-display,
  .h-display-secondary,
  .h-display-sede {
    letter-spacing: 0.01em;
    line-height: 1.05;
  }
}

.speaker-card:hover {
  border-color: var(--red);
}
/* La caja de la foto fija su propia proporción 4:5. Los atributos width/height
   del <img> no bastan: anulan el aspect-ratio de CSS y deforman el recorte. */
.speaker-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.speaker-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.speaker-card figcaption {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid rgba(209, 10, 10, 0.3);
}
.sp-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--red);
}
.speaker-card strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--fg);
  text-wrap: pretty;
}
.sp-role {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(241, 238, 232, 0.62);
}
.speaker-placeholder {
  border: 1px dashed rgba(209, 10, 10, 0.45);
  background: repeating-linear-gradient(-45deg, rgba(209, 10, 10, 0.04) 0 10px, transparent 10px 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 320px;
  padding: 24px;
  text-align: center;
}
.ph-plus {
  width: 52px;
  height: 52px;
  border: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--red);
}
.speaker-placeholder strong {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  line-height: 1.3;
  color: rgba(241, 238, 232, 0.75);
}

/* 03 Programa */
.program-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.program-timeline {
  position: relative;
}
.program-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: rgba(209, 10, 10, 0.35);
}
.timeline-dot {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 16px;
  background: var(--red);
  border-radius: 50%;
}
.program-card {
  position: relative;
  border: 1px solid rgba(241, 238, 232, 0.14);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 767px) {
  .program-timeline::before {
    top: 0;
    bottom: 0;
    left: 32px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .program-timeline .timeline-dot {
    position: absolute;
    top: 32px;
    left: 24px;
    margin-bottom: 0;
  }
  .program-timeline .program-card {
    padding-left: 48px;
  }
}
.program-card-vip {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(209, 10, 10, 0.12), rgba(209, 10, 10, 0.02));
}
.program-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.program-date {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.program-date-muted {
  color: rgba(241, 238, 232, 0.55);
}
.vip-badge {
  background: var(--red);
  color: var(--fg);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.program-card strong {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 0.95;
}
.program-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(241, 238, 232, 0.72);
}
.format-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  border: 1px solid rgba(241, 238, 232, 0.12);
}
.format-strip div {
  padding: 20px 24px;
  border-right: 1px solid rgba(241, 238, 232, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.format-strip div:last-child {
  border-right: none;
}
.format-strip strong {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.format-red {
  color: var(--red) !important;
}
.format-strip span {
  font-size: 13px;
  color: rgba(241, 238, 232, 0.6);
}

/* Countdown */
.countdown-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(209, 10, 10, 0.25);
  padding: clamp(28px, 4vh, 44px) clamp(20px, 4vw, 56px);
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
/* Destello del cristal rojo aprobado (mismo render del hero, sin shader nuevo):
   refuerza que el material es sistema, no solo intro, en el momento de más
   urgencia de la página. */
.countdown-strip::before {
  content: "";
  position: absolute;
  top: -70%;
  right: -10%;
  width: 42%;
  height: 240%;
  background: url("assets/glass-7.webp") center / cover no-repeat;
  opacity: 0.14;
  mask-image: radial-gradient(closest-side, black, transparent 72%);
  -webkit-mask-image: radial-gradient(closest-side, black, transparent 72%);
  pointer-events: none;
}
.countdown-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.6);
}
.countdown-values {
  display: flex;
  gap: clamp(18px, 3vw, 44px);
}
.countdown-values div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.countdown-values strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 0.9;
  color: var(--fg);
}
.countdown-values .cd-secs {
  color: var(--red);
}
.countdown-values span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

/* 04 Inscripción */
.inscripcion-section {
  background: radial-gradient(50% 60% at 50% 0%, rgba(209, 10, 10, 0.08), transparent 70%);
}
.inscripcion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.inscripcion-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.steps-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.steps-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.steps-list li span {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 26px;
  min-width: 32px;
}
.steps-list li p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(241, 238, 232, 0.8);
}
.steps-list li strong {
  color: var(--fg);
}
.prize-block {
  border: 1px solid rgba(209, 10, 10, 0.45);
  background: linear-gradient(120deg, rgba(209, 10, 10, 0.12), transparent);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.prize-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}
/* Frase completa, no un display: MD Tall es una condensada muy angosta y a
   este tamaño una oración entera en mayúsculas deja de leerse. Poppins. */
.prize-block strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.prize-note {
  font-size: 12px;
  color: rgba(241, 238, 232, 0.55);
}

.registro-aside {
  position: sticky;
  top: 90px;
  overflow: hidden;
  border: 1px solid var(--red);
  background: var(--bg-card);
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.registro-aside::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -40%;
  width: 95%;
  height: 95%;
  background: url("assets/glass-7.webp") center / cover no-repeat;
  opacity: 0.1;
  mask-image: radial-gradient(closest-side, black, transparent 70%);
  -webkit-mask-image: radial-gradient(closest-side, black, transparent 70%);
  pointer-events: none;
}
.registro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.registro-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.registro-title strong {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
.registro-org {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -8px;
}
.registro-org span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.4);
}
.registro-org img {
  display: block;
  opacity: 0.85;
}
.registro-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.registro-benefits li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(241, 238, 232, 0.82);
}
.registro-benefits li::before {
  content: "—";
  color: var(--red);
}
.registro-paths {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.registro-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.registro-divider::before,
.registro-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(241, 238, 232, 0.12);
}
.registro-divider span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.4);
}
.registro-form-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.5);
}
#registro-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(241, 238, 232, 0.12);
  padding-top: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.5);
}
.field .optional {
  text-transform: none;
  letter-spacing: 0;
  color: rgba(241, 238, 232, 0.35);
}
.field input,
.field textarea {
  background: var(--bg);
  border: 1px solid rgba(241, 238, 232, 0.2);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 14px;
  letter-spacing: 0;
  text-transform: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(241, 238, 232, 0.32);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  outline: none;
}
.field-hint {
  font-size: 11px;
  color: rgba(241, 238, 232, 0.45);
}
.field-error {
  font-size: 12px;
  color: var(--red-hover);
  min-height: 0;
}
.field.has-error input {
  border-color: var(--red-hover);
}
.field textarea {
  resize: vertical;
}
.registro-confirm {
  border: 1px solid var(--red);
  background: rgba(209, 10, 10, 0.1);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.registro-confirm strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
.registro-confirm span {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(241, 238, 232, 0.8);
}
.registro-note {
  font-size: 12px;
  color: rgba(241, 238, 232, 0.55);
  text-align: center;
  line-height: 1.6;
}
.registro-alt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(241, 238, 232, 0.12);
  padding-top: 20px;
}
.registro-alt-label {
  font-size: 12px;
  color: rgba(241, 238, 232, 0.6);
  text-align: center;
}
.whatsapp-note {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(241, 238, 232, 0.7);
  text-align: center;
  border: 1px solid rgba(241, 238, 232, 0.15);
  padding: 12px 14px;
}

/* 05 Experiencia */
.experiencia-section {
  border-top: 1px solid rgba(209, 10, 10, 0.25);
  position: relative;
  overflow: hidden;
}
.experiencia-section > picture {
  width: 100%;
  display: block;
  min-height: 460px;
  max-height: 680px;
  overflow: hidden;
}
.experiencia-section > picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.55) brightness(0.42) contrast(1.06) sepia(0.18) hue-rotate(-14deg) saturate(1.5);
  transform: scale(1.12);
  will-change: transform;
}
.experiencia-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.34) 38%, rgba(5, 5, 5, 0.94)),
    radial-gradient(70% 90% at 78% 30%, rgba(209, 10, 10, 0.18), transparent 68%);
  display: flex;
  align-items: flex-end;
}
.experiencia-content {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(20px, 4vw, 56px) clamp(36px, 5vh, 60px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sede-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(241, 238, 232, 0.18);
  padding-top: 20px;
  margin-top: 8px;
}
.sede-row img {
  height: 52px;
  width: auto;
  display: block;
}
.sede-row > span {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.55);
}
.button-outline {
  border: 1px solid rgba(241, 238, 232, 0.35);
  color: var(--fg);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 20px;
  transition: border-color 140ms ease, color 140ms ease, transform 160ms var(--ease-out);
}
.button-outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.button-outline:active {
  transform: scale(0.97);
}

/* 06 Patrocinadores */
.patrocinadores-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.button-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--red);
  color: var(--red);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  flex-shrink: 0;
  cursor: pointer;
  background: transparent;
  transition: background 140ms ease, transform 160ms var(--ease-out);
}
.button-outline-red:hover {
  background: rgba(209, 10, 10, 0.12);
  color: var(--red);
}
.button-outline-red:active {
  transform: scale(0.97);
}
.brand-band {
  border: 1px solid rgba(241, 238, 232, 0.12);
  background: linear-gradient(180deg, rgba(209, 10, 10, 0.06), transparent);
  margin-bottom: 14px;
}
.brand-band-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(241, 238, 232, 0.1);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.55);
}
.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: center;
  gap: clamp(26px, 3.4vw, 44px);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
}
.brand-logos img {
  max-width: 100%;
  width: auto;
  object-fit: contain;
  justify-self: center;
  opacity: 0.85;
  transition: opacity 160ms ease;
}
.brand-logos img:hover { opacity: 1; }
.sponsor-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.sponsor-type {
  border: 1px solid rgba(241, 238, 232, 0.12);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sponsor-type span {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 28px;
}
.sponsor-type strong {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sponsor-type p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(241, 238, 232, 0.65);
}

/* 07 FAQ */
.faq-section {
  max-width: 860px;
}
.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
.faq-list details {
  border-bottom: 1px solid rgba(241, 238, 232, 0.12);
  padding: 4px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  font-size: 15px;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 26px;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 200ms var(--ease-out);
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  margin: 0;
  padding: 0 4px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(241, 238, 232, 0.72);
  max-width: 64ch;
  overflow: hidden;
}

/* Footer */
footer {
  border-top: 1px solid rgba(209, 10, 10, 0.35);
  padding: clamp(48px, 7vh, 80px) clamp(20px, 4vw, 56px) 40px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
/* Sin esto el contenedor flex estira el logo a lo ancho (align-items:stretch
   por defecto) y deforma su proporción. */
.footer-brand > img {
  width: auto;
  height: 140px;
}
.footer-org {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-org span {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.45);
}
.footer-event {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  text-align: right;
}
.footer-event strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.02em;
}
.footer-event span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.6);
}
.footer-event img {
  opacity: 0.9;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-links a:not(.text-red) {
  color: rgba(241, 238, 232, 0.7);
}
.footer-legal {
  margin: 0;
  font-size: 12px;
  color: rgba(241, 238, 232, 0.62);
  line-height: 1.7;
  max-width: 90ch;
}

/* Mobile nav */
@media (max-width: 767px) {
  .header-actions {
    order: 2;
  }
  .header-cta {
    padding: 10px 16px;
    font-size: 11px;
  }
  .menu-toggle {
    display: flex;
    /* #main-nav es hijo de .site-header y se convierte en overlay de pantalla
     * completa con z-index:60 dentro de ESE mismo contexto de apilamiento
     * (el z-index de .site-header no protege a sus propios hijos entre sí).
     * Sin position+z-index aquí, el botón queda pintado debajo del overlay
     * que él mismo abre y no hay forma de cerrarlo con un toque. */
    position: relative;
    z-index: 61;
  }
  #main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 32px clamp(24px, 8vw, 56px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.98);
    transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out),
      visibility 220ms;
  }
  #main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }
  #main-nav a {
    font-size: 22px;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), color 140ms ease;
  }
  #main-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }
  #main-nav.is-open a:nth-child(1) {
    transition-delay: 40ms;
  }
  #main-nav.is-open a:nth-child(2) {
    transition-delay: 80ms;
  }
  #main-nav.is-open a:nth-child(3) {
    transition-delay: 120ms;
  }
  #main-nav.is-open a:nth-child(4) {
    transition-delay: 160ms;
  }
  #main-nav.is-open a:nth-child(5) {
    transition-delay: 200ms;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee-track {
    animation: none;
  }
  /* El canvas se queda en el DOM pero script.js nunca arranca el shader:
     lo que se ve es el background-image estático definido arriba (fallback documentado). */

  /* Feedback de presión en botones se conserva (es respuesta directa a una
     acción del usuario, no movimiento pasivo). Lo que se elimina es el
     movimiento autónomo: panel de nav y parallax. */
  #main-nav,
  #main-nav a {
    transition-duration: 1ms !important;
    transform: none !important;
  }
  .experiencia-section > picture img {
    transform: scale(1.12) !important;
  }
}

/* --- Speakers: tarjeta clicable + modal de perfil --- */
button.speaker-card {
  font: inherit;
  color: inherit;
  text-align: left;
  padding: 0;
  cursor: pointer;
  appearance: none;
}
.speaker-card--has-cv:hover .sp-more { color: var(--red-hover); }
.sp-more {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  transition: color 140ms ease;
}
.speaker-nophoto {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(241, 238, 232, 0.12);
  background: repeating-linear-gradient(-45deg, rgba(209,10,10,.05) 0 10px, transparent 10px 20px);
}
.speaker-nophoto span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.4);
}

.spk-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(5, 5, 5, 0.82);
}
.spk-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  width: min(760px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(22px, 3vw, 34px);
  background: var(--bg-card);
  border: 1px solid var(--red);
}
.spk-modal-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.spk-modal-body { display: flex; flex-direction: column; gap: 8px; }
.spk-modal-body strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.25;
}
.spk-modal-body p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(241, 238, 232, 0.72);
  text-wrap: pretty;
}
.spk-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(241, 238, 232, 0.25);
  color: var(--fg);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 140ms ease, color 140ms ease, transform 160ms var(--ease-out);
}
.spk-modal-close:hover { border-color: var(--red); color: var(--red); }
.spk-modal-close:active { transform: scale(0.94); }
@media (max-width: 640px) {
  .spk-modal-panel { grid-template-columns: 1fr; }
  .spk-modal-media { max-width: 200px; }
}

/* --- Precio en el panel de acceso --- */
.registro-precio {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 4px;
}
.registro-precio strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--fg);
}
.registro-precio span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.55);
}

/* --- Botón deshabilitado (programa aún no publicado) --- */
.button-ghost.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  border-color: rgba(241, 238, 232, 0.2);
}
.button-ghost.is-disabled:hover {
  border-color: rgba(241, 238, 232, 0.2);
  color: var(--fg);
}

/* --- Términos clickeables (PROFECO) --- */
.legal-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--red);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.legal-link:hover { color: var(--red-hover); }
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(5, 5, 5, 0.82);
}
.legal-modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg-card);
  border: 1px solid var(--red);
}
.legal-modal-panel strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 16px;
}
.legal-modal-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-modal-panel li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(241, 238, 232, 0.75);
}
.legal-modal-panel li::before {
  content: "—";
  color: var(--red);
  flex-shrink: 0;
}

/* --- Apartado de precio con bonificación --- */
.precio-block {
  border: 1px solid var(--red);
  background: linear-gradient(150deg, rgba(209, 10, 10, 0.14), rgba(209, 10, 10, 0.02));
  padding: clamp(20px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.precio-monto {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.precio-monto strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 6vw, 72px);
  line-height: 0.9;
  color: var(--fg);
}
.precio-monto span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 238, 232, 0.6);
}
.precio-bonificable {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(209, 10, 10, 0.35);
  padding-top: 16px;
}
.precio-tag {
  align-self: flex-start;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.precio-bonificable p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(241, 238, 232, 0.82);
  text-wrap: pretty;
}
.precio-terminos {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.precio-terminos:hover { color: var(--red-hover); }

/* Logo de marca dentro del perfil del speaker */
.spk-modal-logo {
  height: 30px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  align-self: flex-start;
  opacity: 0.9;
  margin-top: 4px;
}
.sede-direccion {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(241, 238, 232, 0.68);
  max-width: 46ch;
}

/* Resumen destacado al inicio de términos y condiciones */
.legal-summary {
  border: 1px solid rgba(209, 10, 10, 0.35);
  background: linear-gradient(180deg, rgba(209, 10, 10, 0.08), transparent);
  padding: 20px 24px;
}
.legal-summary ul {
  margin: 10px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-summary li {
  line-height: 1.5;
}
