@font-face {
  font-family: 'Broadway';
  src: url('BROADW.TTF') format('truetype');
  font-display: swap;
}

:root {
  --crimson: #C0122A;
  --crimson-glow: rgba(192, 18, 42, 0.6);
  --ember: #E8501A;
  --gold: #D4A843;
  --gold-soft: rgba(212, 168, 67, 0.15);
  --deep: #07030A;
  --mid: #120810;
  --cream: #F5EDD8;
  --fog: rgba(255,255,255,0.05);
  --border: rgba(212,168,67,0.22);
  --border-hot: rgba(192,18,42,0.4);
  --radius-sm: 1px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
  background: var(--deep);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ═══ GRAIN OVERLAY ═══ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ═══ CUSTOM CURSOR ═══ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
  mix-blend-mode: difference;
}
.cursor.hover { width: 0; height: 0; background: transparent; }
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(212,168,67,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.23,1,0.32,1), height 0.25s cubic-bezier(0.23,1,0.32,1), border-color 0.2s;
}
.cursor-ring.hover {
  width: 50px; height: 50px;
  border-color: var(--crimson);
}

/* ═══ NAV ═══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(7,3,10,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 56px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: rgba(245,237,216,0.5);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ═══ DOT NAVIGATION ═══ */
.slide-counter {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 4px; height: 4px;
  border-radius: 10px;
  background: rgba(212,168,67,0.25);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
  height: 28px;
  box-shadow: 0 0 8px rgba(212,168,67,0.5);
}
.dot:hover { background: rgba(212,168,67,0.6); }

/* ═══ SECTIONS ═══ */
section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  contain: layout style;
}

.bg-img {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 88px;
}

/* ═══ SECTION LABEL ═══ */
.section-label {
  position: absolute;
  top: 50%;
  right: 72px;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: rgba(212,168,67,0.35);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 3;
  user-select: none;
}

/* ═══ HERO ═══ */
#hero {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#hero .section-inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 0;
}

/* hero atmospheric corona */
#hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 60vh;
  background: radial-gradient(ellipse at 50% 100%, rgba(192,18,42,0.28) 0%, rgba(192,18,42,0.05) 50%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: coronaPulse 4s ease-in-out infinite alternate;
}
@keyframes coronaPulse {
  from { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
  to   { opacity: 1;   transform: translateX(-50%) scaleX(1.08); }
}

.hero-eyebrow {
  margin-bottom: 20px;
  opacity: 0;
  animation: slideInDown 0.9s 0.2s cubic-bezier(0.23,1,0.32,1) forwards;
}
.hero-eyebrow-logo {
  width: 240px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(1.05);
}

.hero-title {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 13vw, 188px);
  line-height: 0.88;
  background: linear-gradient(to bottom, #F2DDD0 0%, #D4937A 55%, #B86050 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  opacity: 0;
  animation: heroReveal 1.1s 0.4s cubic-bezier(0.23,1,0.32,1) forwards;
  filter: drop-shadow(2px 3px 0px rgba(60, 20, 5, 0.4));
  position: relative;
  will-change: transform, opacity;
}

.hero-music-week {
  display: inline-block;
  background: #BFA090;
  padding: 3px 14px 5px;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(13px, 1.8vw, 26px);
  letter-spacing: 5px;
  color: #111;
  margin-top: 2px;
  opacity: 0;
  animation: slideInDown 0.9s 0.6s cubic-bezier(0.23,1,0.32,1) forwards;
}

.hero-logo-img {
  max-width: clamp(240px, 46vw, 580px);
  width: 100%;
  height: auto;
  opacity: 0;
  animation: heroReveal 1.1s 0.4s cubic-bezier(0.23,1,0.32,1) forwards;
  filter: drop-shadow(2px 4px 12px rgba(60, 20, 5, 0.5));
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(50px) scale(0.97); filter: blur(12px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(16px, 2.5vw, 38px);
  letter-spacing: 12px;
  color: var(--gold);
  margin-top: 10px;
  opacity: 0;
  animation: slideInDown 0.9s 0.7s cubic-bezier(0.23,1,0.32,1) forwards;
}

.hero-date {
  margin-top: 52px;
  display: flex;
  gap: 0;
  align-items: center;
  opacity: 0;
  animation: slideInDown 0.9s 0.9s cubic-bezier(0.23,1,0.32,1) forwards;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  background: rgba(7,3,10,0.4);
  padding: 0;
}
.hero-date-item {
  text-align: center;
  padding: 20px 32px;
  position: relative;
}
.hero-date-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.hero-date-num {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero-date-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 6px;
}
.hero-sep { display: none; }

/* marquee ticker */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--crimson);
  padding: 9px 0;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.6s 1.4s forwards;
}
.hero-ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.hero-ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(245,237,216,0.9);
  padding: 0 40px;
  flex-shrink: 0;
}
.hero-ticker-item::before {
  content: '◆';
  margin-right: 40px;
  color: rgba(245,237,216,0.4);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 0.8s 1.3s forwards;
}
.scroll-hint span {
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(245,237,216,0.35);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.7); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ═══ EYEBROW ═══ */
.eyebrow {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══ HEADINGS ═══ */
h2 {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #ffffff 0%, #e8c8c8 60%, #d4a0a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
h2 .outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(245,237,216,0.4);
  display: block;
  background: none;
}

.body-text {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(245,237,216,0.7);
  max-width: 520px;
}
.body-text p + p { margin-top: 18px; }

/* ═══ GOLD DIVIDER ═══ */
.gold-divider {
  width: 52px; height: 1px;
  background: var(--gold);
  margin: 28px 0;
  position: relative;
}
.gold-divider::after {
  content: '◆';
  position: absolute;
  left: 58px; top: 50%;
  transform: translateY(-50%);
  font-size: 7px;
  color: rgba(212,168,67,0.5);
  letter-spacing: 0;
}

/* ═══ TWO COL ═══ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

/* ═══ GLASS CARD ═══ */
.glass-card {
  background: rgba(7,3,10,0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  padding: 44px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

/* ═══ OVERLAYS ═══ */
.overlay-dark-left {
  background: linear-gradient(100deg,
    rgba(7,3,10,0.7) 0%,
    rgba(7,3,10,0.55) 35%,
    rgba(7,3,10,0.2) 65%,
    transparent 100%);
}
.overlay-dark-right {
  background: linear-gradient(260deg,
    rgba(7,3,10,0.7) 0%,
    rgba(7,3,10,0.55) 35%,
    rgba(7,3,10,0.2) 65%,
    transparent 100%);
}
.overlay-dark-full {
  background: linear-gradient(to bottom,
    rgba(7,3,10,0.1) 0%,
    rgba(7,3,10,0.35) 50%,
    rgba(7,3,10,0.75) 100%);
}
.overlay-center {
  background: radial-gradient(ellipse at center,
    rgba(7,3,10,0.1) 0%,
    rgba(7,3,10,0.55) 100%);
}
.overlay-crimson-tint {
  background: linear-gradient(135deg, rgba(192,18,42,0.12) 0%, transparent 60%);
}

/* ═══ ACTIVITIES GRID ═══ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.activity-item {
  background: rgba(7,3,10,0.85);
  padding: 36px 28px 32px;
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.activity-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,18,42,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.activity-item:hover { background: rgba(12,4,8,0.85); }
.activity-item:hover::before { opacity: 1; }
.activity-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transition: width 0.5s cubic-bezier(0.23,1,0.32,1);
}
.activity-item:hover::after { width: 100%; }
.activity-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  display: block;
  color: var(--gold);
  opacity: 0.65;
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.activity-icon svg { width: 100%; height: 100%; display: block; }
.activity-item:hover .activity-icon {
  opacity: 1;
  color: var(--gold);
  transform: scale(1.08);
}
.activity-name {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.activity-item:hover .activity-name { color: var(--cream); }
.activity-desc {
  font-size: 16px;
  color: rgba(245,237,216,0.6);
  line-height: 1.7;
}

/* ═══ PARTNERS / ALIADOS ═══ */
.partners-section { text-align: center; }

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 36px;
  margin-top: 72px;
}

.partner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.partner-item {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: rgba(12,5,12,0.9);
  border: 1px solid rgba(212,168,67,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* inner shimmer ring on hover */
.partner-item::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0);
  transition: border-color 0.45s ease;
}

/* radial glow fill */
.partner-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(192,18,42,0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.partner-item:hover {
  transform: scale(1.15);
  border-color: rgba(212,168,67,0.5);
  box-shadow:
    0 0 0 2px rgba(212,168,67,0.2),
    0 20px 44px rgba(0,0,0,0.45),
    0 0 28px rgba(192,18,42,0.18);
}
.partner-item:hover::before { border-color: rgba(212,168,67,0.25); }
.partner-item:hover::after { opacity: 1; }

.partner-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}

.partner-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: rgba(245,237,216,0.45);
  text-transform: uppercase;
  transition: color 0.3s;
  text-align: center;
}
.partner-wrap:hover .partner-name {
  color: rgba(245,237,216,0.85);
}

.partner-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: rgba(245,237,216,0.75);
  line-height: 1;
  position: relative;
  z-index: 2;
}

/* ═══ SCHEDULE WEEK TRACKS ═══ */
.week-tracks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(212,168,67,0.07);
  min-width: 680px;
}

.day-track {
  background: rgba(7,3,10,0.7);
  position: relative;
}

.day-track.day-weekend {
  background: rgba(10,4,6,0.75);
}

/* ── Day header ── */
.day-head {
  padding: 28px 18px 22px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(212,168,67,0.1);
}

.day-track.day-weekend .day-head {
  background: linear-gradient(160deg, rgba(212,168,67,0.055) 0%, transparent 70%);
}

.day-track.day-weekend .day-head::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(212,168,67,0.1) 100%);
}

/* Ghost number background */
.day-ghost {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  font-weight: 900;
  color: rgba(212,168,67,0.035);
  right: -6px;
  bottom: -22px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.day-label-wrap { position: relative; z-index: 1; }

.day-weekday {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(212,168,67,0.45);
  margin-bottom: 2px;
}

.day-date-num {
  display: block;
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}

.day-weekend .day-date-num { color: var(--gold); }

.day-month {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(245,237,216,0.22);
  margin-top: 5px;
  text-transform: uppercase;
}

/* ── Timeline container ── */
.day-events {
  padding: 4px 0 28px;
  position: relative;
}

/* Vertical axis thread */
.day-events::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(212,168,67,0.18) 0%,
    rgba(212,168,67,0.06) 60%,
    transparent 100%);
}

/* ── Event row ── */
.ev {
  padding: 9px 14px 9px 34px;
  position: relative;
  transition: background 0.2s;
}

.ev:hover { background: rgba(212,168,67,0.025); }

/* Node dot on the thread */
.ev::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10,4,14,0.95);
  border: 1px solid rgba(212,168,67,0.22);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ev:hover::before {
  border-color: rgba(212,168,67,0.6);
  box-shadow: 0 0 6px rgba(212,168,67,0.25);
}

.ev-time {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(212,168,67,0.38);
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 1;
}

.ev-name {
  display: block;
  font-size: 15px;
  color: rgba(245,237,216,0.6);
  line-height: 1.35;
}

/* ── Meta rows: check-in / break ── */
.ev.ev-meta {
  opacity: 0.28;
  padding-top: 11px;
  padding-bottom: 11px;
}
.ev.ev-meta::before { display: none; }
.ev.ev-meta .ev-name {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Showcase: gold glow ── */
.ev.ev-show {
  margin: 10px 6px 6px;
  padding: 13px 12px 13px 30px;
  background: linear-gradient(135deg, rgba(212,168,67,0.08) 0%, rgba(212,168,67,0.03) 100%);
  border-left: 1px solid rgba(212,168,67,0.3);
}
.ev.ev-show::before {
  left: 11px;
  top: 17px;
  width: 8px; height: 8px;
  background: rgba(212,168,67,0.7);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212,168,67,0.45);
}
.ev.ev-show .ev-name {
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  margin-top: 1px;
}
.ev.ev-show .ev-time { color: rgba(212,168,67,0.55); }

/* ── Concert events: crimson pulse ── */
.ev.ev-concert {
  margin: 10px 6px 6px;
  padding: 13px 12px 13px 30px;
  background: linear-gradient(135deg, rgba(192,18,42,0.12) 0%, rgba(192,18,42,0.04) 100%);
  border-left: 1px solid rgba(192,18,42,0.4);
}
.ev.ev-concert::before {
  left: 11px;
  top: 17px;
  width: 8px; height: 8px;
  background: rgba(192,18,42,0.75);
  border-color: var(--crimson);
  box-shadow: 0 0 10px rgba(192,18,42,0.45);
}
.ev.ev-concert .ev-name {
  color: rgba(255,255,255,0.9);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-top: 1px;
}
.ev.ev-concert .ev-time { color: rgba(192,18,42,0.55); }

/* ── Gold special: Hall of Fame / Trade Fair ── */
.ev.ev-gold {
  padding-top: 12px;
  padding-bottom: 12px;
}
.ev.ev-gold::before {
  border-color: rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.12);
}
.ev.ev-gold .ev-name {
  color: rgba(212,168,67,0.75);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
}
.ev.ev-gold .ev-time { color: rgba(212,168,67,0.35); }

/* ── Scroll wrapper & swipe hint ── */
.schedule-scroll-wrap {
  position: relative;
  margin-top: 48px;
}

.schedule-scroll {
  overflow-x: auto;
  /* scrollbar visible y sutil en todos los navegadores */
  scrollbar-width: thin;
  scrollbar-color: rgba(212,168,67,0.35) rgba(212,168,67,0.06);
  padding-bottom: 6px;
}
.schedule-scroll::-webkit-scrollbar {
  height: 3px;
}
.schedule-scroll::-webkit-scrollbar-track {
  background: rgba(212,168,67,0.06);
  border-radius: 2px;
}
.schedule-scroll::-webkit-scrollbar-thumb {
  background: rgba(212,168,67,0.38);
  border-radius: 2px;
}
.schedule-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(212,168,67,0.6);
}

/* Fade derecha — solo visible en móvil */
.schedule-fade-right {
  display: none;
}

/* Hint de deslizamiento — solo móvil */
.schedule-swipe-hint {
  display: none;
}

@media (max-width: 900px) {
  .schedule-fade-right {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 9px;
    width: 64px;
    background: linear-gradient(to right, transparent, rgba(7,3,10,0.92));
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.3s;
  }

  .schedule-scroll-wrap.at-end .schedule-fade-right {
    opacity: 0;
  }

  .schedule-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
    color: rgba(212,168,67,0.38);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
  }
  .schedule-swipe-hint span {
    line-height: 1;
  }
  .schedule-swipe-hint svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    animation: swipe-nudge 1.8s ease-in-out infinite;
  }
  .schedule-swipe-hint svg:first-child {
    transform: rotate(180deg);
    animation: swipe-nudge-left 1.8s ease-in-out infinite;
  }
}

@keyframes swipe-nudge {
  0%, 100% { transform: translateX(0); opacity: 0.38; }
  50% { transform: translateX(4px); opacity: 0.7; }
}
@keyframes swipe-nudge-left {
  0%, 100% { transform: rotate(180deg) translateX(0); opacity: 0.38; }
  50% { transform: rotate(180deg) translateX(4px); opacity: 0.7; }
}

/* ═══ TRIBUTE / HOMENAJE ═══ */
.tribute-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 52px;
  border: 1px solid var(--border);
}
.tribute-item {
  background: rgba(7,3,10,0.85);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.tribute-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,18,42,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
}
.tribute-item:hover { background: rgba(12,4,8,0.9); }
.tribute-item:hover::before { opacity: 1; }
.tribute-num {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  font-weight: 900;
  color: rgba(212,168,67,0.07);
  position: absolute;
  top: -14px; right: 20px;
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s;
}
.tribute-item:hover .tribute-num { color: rgba(212,168,67,0.12); }
.tribute-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 14px;
}
.tribute-desc {
  font-size: 15px;
  color: rgba(245,237,216,0.65);
  line-height: 1.75;
}

/* ═══ PONENTES DE ÉLITE — REDESIGN ═══ */

.ponentes-corona {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 65% 55% at 72% 50%, rgba(192,18,42,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.ponentes-inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 80px;
  align-items: start;
  padding-top: 160px;
  padding-bottom: 120px;
}

.ponentes-left {
  position: sticky;
  top: 140px;
}

/* stats block */
.ponentes-stat-row {
  display: flex;
  align-items: stretch;
  margin-top: 48px;
  border: 1px solid var(--border);
  background: rgba(7,3,10,0.5);
  backdrop-filter: blur(18px);
}
.ponentes-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  flex: 1;
  text-align: center;
}
.ponentes-stat-num {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.ponentes-stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(245,237,216,0.4);
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}
.ponentes-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* cards grid */
.ponentes-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ponente-card {
  background: rgba(7,3,10,0.88);
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s ease;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* top accent bar */
.ponente-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson) 0%, var(--gold) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.ponente-card:hover::before { opacity: 1; }

/* left accent bar — grows from bottom */
.ponente-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--crimson) 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.ponente-card:hover::after { transform: scaleY(1); }
.ponente-card:hover { background: rgba(13,4,9,0.94); }

/* watermark ghost text */
.ponente-card-ghost {
  position: absolute;
  bottom: -4px;
  right: -6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  letter-spacing: -1px;
  color: rgba(212,168,67,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  transition: color 0.45s ease, transform 0.55s cubic-bezier(0.23,1,0.32,1);
}
.ponente-card:hover .ponente-card-ghost {
  color: rgba(212,168,67,0.1);
  transform: translateX(-8px);
}

/* ordinal number */
.ponente-card-num {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  opacity: 0.45;
  position: absolute;
  top: 26px;
  right: 26px;
  transition: opacity 0.3s;
}
.ponente-card:hover .ponente-card-num { opacity: 1; }

/* icon */
.ponente-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(192,18,42,0.11);
  border: 1px solid rgba(192,18,42,0.26);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(192,18,42,0.8);
  padding: 11px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s, color 0.35s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.ponente-card-icon svg { width: 100%; height: 100%; display: block; }
.ponente-card:hover .ponente-card-icon {
  background: rgba(192,18,42,0.24);
  border-color: rgba(192,18,42,0.52);
  color: white;
  transform: scale(1.1);
}

.ponente-card-body { position: relative; z-index: 1; }

.ponente-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 7px;
  line-height: 1;
  transition: color 0.3s;
}
.ponente-card:hover .ponente-card-name { color: var(--cream); }

.ponente-card-desc {
  font-size: 16px;
  color: rgba(245,237,216,0.45);
  line-height: 1.6;
  transition: color 0.3s;
}
.ponente-card:hover .ponente-card-desc { color: rgba(245,237,216,0.72); }

/* bottom-up crimson bloom on hover */
.ponente-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(192,18,42,0.09) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.ponente-card:hover .ponente-card-glow { opacity: 1; }

/* ── auto-cycle active state (mirrors hover) ── */
.ponente-card.is-active { background: rgba(13,4,9,0.94); }
.ponente-card.is-active::before { opacity: 1; }
.ponente-card.is-active::after  { transform: scaleY(1); }
.ponente-card.is-active .ponente-card-ghost {
  color: rgba(212,168,67,0.1);
  transform: translateX(-8px);
}
.ponente-card.is-active .ponente-card-num  { opacity: 1; }
.ponente-card.is-active .ponente-card-icon {
  background: rgba(192,18,42,0.24);
  border-color: rgba(192,18,42,0.52);
  color: white;
  transform: scale(1.1);
}
.ponente-card.is-active .ponente-card-name { color: var(--cream); }
.ponente-card.is-active .ponente-card-desc { color: rgba(245,237,216,0.72); }
.ponente-card.is-active .ponente-card-glow { opacity: 1; }

/* ═══ CTA ═══ */
#cta {
  min-height: 70vh;
  text-align: center;
  justify-content: center;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%,
    rgba(192,18,42,0.22) 0%,
    rgba(7,3,10,0) 65%);
  z-index: 1;
  animation: ctaPulse 5s ease-in-out infinite alternate;
}
@keyframes ctaPulse {
  from { opacity: 0.6; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.05); }
}
#cta .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 70vh;
}
.cta-title {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 1;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #e8c8c8 60%, #d4a0a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}
.cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 20px 60px;
  background: var(--crimson);
  color: white;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 5px;
  border: 1px solid transparent;
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.cta-btn:hover::before { transform: translateX(100%); }
.cta-btn:hover {
  background: transparent;
  border-color: var(--crimson);
  color: var(--cream);
  box-shadow: 0 0 30px rgba(192,18,42,0.3);
}

/* ═══ POR QUÉ BILLBOARD — REDESIGN ═══ */
.porque-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding-top: 110px;
  padding-bottom: 90px;
  text-align: center;
}

.porque-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.porque-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 7px;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
.porque-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.6;
}
.porque-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.6;
}

.billboard-hero-logo {
  width: min(580px, 82vw);
  height: auto;
  object-fit: contain;
}

.porque-title {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: 4px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #e8c8c8 60%, #d4a0a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.porque-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,237,216,0.35);
}

/* Editorial statement block */
.porque-editorial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 680px;
  text-align: center;
}
.porque-ed-pre {
  font-family: 'Playfair Display', serif;
  font-size: clamp(19px, 2.3vw, 27px);
  font-style: italic;
  color: rgba(245,237,216,0.55);
  letter-spacing: 1px;
}
.porque-ed-city {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: 8px;
  background: linear-gradient(160deg, #ffffff 0%, var(--gold) 50%, var(--crimson) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 4px 0;
}
.porque-ed-connector {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 2vw, 23px);
  font-style: italic;
  color: rgba(245,237,216,0.5);
}
.porque-ed-highlight {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3.6vw, 46px);
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.porque-ed-body {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.85;
  color: rgba(245,237,216,0.65);
  font-style: italic;
  max-width: 520px;
}

.porque-divider {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 860px;
}
.pd-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: brightness(0.8) saturate(0.6);
}

.porque-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  background: var(--border);
  border: 1px solid var(--border);
}

.pstat-card {
  background: rgba(7,3,10,0.82);
  padding: 48px 28px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.pstat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.pstat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,18,42,0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}
.pstat-card:hover { background: rgba(14,6,12,0.92); }
.pstat-card:hover::before { opacity: 1; }
.pstat-card:hover::after { opacity: 1; }

.pstat-num {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 5.5vw, 92px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.pstat-sup {
  font-size: 0.48em;
  color: var(--crimson);
  vertical-align: super;
  font-weight: 700;
  letter-spacing: 0;
}
.pstat-hash {
  font-size: 0.7em;
  color: var(--crimson);
  font-weight: 700;
}

.pstat-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2.5px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.pstat-desc {
  font-size: 16px;
  color: rgba(245,237,216,0.52);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.ecosistema {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.eco-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: rgba(212,168,67,0.4);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eco-label::before,
.eco-label::after {
  content: '◆';
  font-size: 5px;
  opacity: 0.45;
}

.eco-strip {
  width: calc(100% + 176px);
  margin: 0 -88px;
  overflow: hidden;
  background: rgba(7,3,10,0.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 22px 0;
  position: relative;
}
.eco-strip::before,
.eco-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.eco-strip::before {
  left: 0;
  background: linear-gradient(to right, rgba(7,3,10,0.95), transparent);
}
.eco-strip::after {
  right: 0;
  background: linear-gradient(to left, rgba(7,3,10,0.95), transparent);
}

.eco-track {
  display: flex;
  gap: 52px;
  align-items: center;
  width: max-content;
  animation: scrollLogos 32s linear infinite;
  padding: 0 26px;
}
.eco-track:hover { animation-play-state: paused; }

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

.eco-logo {
  flex-shrink: 0;
  width: 96px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* ═══ QUÉ ES — REDESIGN ═══ */
.que-es-corona {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 75% 50% at 50% 20%, rgba(192,18,42,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 75% 75%, rgba(212,168,67,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.que-es-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 0;
}

/* Eyebrow */
.qe-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 7px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.7;
}
.qe-eyebrow-logo {
  height: 18px;
  width: auto;
  display: block;
  opacity: 0.85;
}
.qe-dot {
  font-size: 6px;
  opacity: 0.4;
}

/* Main title block */
.qe-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 52px;
}

.qeh-billboard-logo {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  display: block;
  margin-bottom: 8px;
  opacity: 0.88;
}
.qeh-pre {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(12px, 1.3vw, 18px);
  letter-spacing: 13px;
  color: rgba(245,237,216,0.3);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.qeh-salsa {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: clamp(96px, 16vw, 230px);
  line-height: 0.84;
  color: white;
  letter-spacing: -3px;
  text-shadow:
    0 0 50px rgba(192,18,42,0.65),
    0 0 110px rgba(192,18,42,0.28),
    0 0 200px rgba(192,18,42,0.1),
    0 3px 0 rgba(0,0,0,0.55);
  will-change: transform;
  position: relative;
}

.qeh-row2 {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-top: -6px;
}

.qeh-music {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7.5vw, 106px);
  letter-spacing: 14px;
  color: rgba(245,237,216,0.75);
}

.qeh-week {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7.5vw, 106px);
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,237,216,0.32);
}

.qeh-logo-img {
  max-width: clamp(240px, 45vw, 580px);
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(2px 4px 12px rgba(60, 20, 5, 0.5));
}

.qeh-tagline {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: clamp(17px, 2.1vw, 30px);
  color: var(--gold);
  margin-top: 20px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Narrative block */
.qe-narrative {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  margin-bottom: 80px;
}
.qe-hook {
  margin-bottom: 8px;
}
.qe-hook-line {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  color: rgba(245,237,216,0.85);
  margin-bottom: 6px;
}
.qe-hook-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 2px;
  color: var(--cream);
  line-height: 1;
}
.qe-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(245,237,216,0.82);
}
.qe-body strong { color: var(--gold); font-weight: 500; }
.qe-callout {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(18px, 2.4vw, 28px);
  font-style: italic;
  color: var(--gold);
  padding: 20px 28px;
  border-left: 2px solid var(--gold);
  background: rgba(7,3,10,0.55);
  backdrop-filter: blur(12px);
  line-height: 1.4;
}
.qe-finale {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qe-finale-pre {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,237,216,0.45);
  font-family: 'DM Sans', sans-serif;
}
.qe-finale-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3.2vw, 40px);
  letter-spacing: 2px;
  color: var(--crimson);
  line-height: 1.1;
  text-transform: uppercase;
}

/* Statement glass card */
.qe-statement {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(245,237,216,0.65);
  margin-bottom: 64px;
  background: rgba(7,3,10,0.5);
  border: 1px solid var(--border);
  padding: 30px 44px;
  backdrop-filter: blur(16px);
  position: relative;
}
.qe-statement::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.5), transparent);
}
.qe-statement strong { color: white; }
.qe-statement em {
  color: var(--gold);
  font-style: normal;
}

/* "Hoy, por primera vez" emphasis row */
.qe-body--highlight {
  font-size: 17px;
  color: rgba(245,237,216,0.85);
}

/* Date badge */
.qe-date-block {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(192,18,42,0.08);
  border: 1px solid rgba(192,18,42,0.25);
  backdrop-filter: blur(12px);
}
.qe-date-range {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  color: var(--crimson);
  letter-spacing: 2px;
  line-height: 1;
  flex-shrink: 0;
}
.qe-date-divider {
  width: 1px;
  height: 60px;
  background: rgba(192,18,42,0.35);
  flex-shrink: 0;
}
.qe-date-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.qe-date-month {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.qe-date-city {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--cream);
}
.qe-date-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245,237,216,0.5);
}

/* Crown finale (gold variant) */
.qe-finale-crown {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2.8vw, 34px);
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.2;
}

/* Three pillars */
.qe-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  width: 100%;
  margin-bottom: 100px;
}

.qe-pillar {
  background: rgba(7,3,10,0.85);
  padding: 52px 36px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.qe-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.qe-pillar:hover { background: rgba(14,5,10,0.92); }
.qe-pillar:hover::before { opacity: 1; }

.qe-pillar--hero {
  background: rgba(10,4,8,0.9);
}
.qe-pillar--hero::before { opacity: 0.55; }
.qe-pillar--hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,18,42,0.1) 0%, transparent 65%);
}

.qep-num {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(212,168,67,0.38);
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.qep-label {
  font-family: 'Broadway', 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2.5px;
  color: white;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.qep-desc {
  font-size: 16px;
  color: rgba(245,237,216,0.52);
  line-height: 1.78;
  position: relative;
  z-index: 1;
}

/* Scrolling city ticker */
.qe-city-ticker {
  width: calc(100% + 176px);
  margin: 0 -88px;
  overflow: hidden;
  background: rgba(7,3,10,0.55);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  position: relative;
}
.qe-city-ticker::before,
.qe-city-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.qe-city-ticker::before {
  left: 0;
  background: linear-gradient(to right, rgba(7,3,10,0.95), transparent);
}
.qe-city-ticker::after {
  right: 0;
  background: linear-gradient(to left, rgba(7,3,10,0.95), transparent);
}

.qe-city-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: qeCityScroll 22s linear infinite;
  padding: 0 18px;
}
.qe-city-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  color: rgba(245,237,216,0.38);
  flex-shrink: 0;
  transition: color 0.3s;
}
.qe-city-track span:hover { color: var(--gold); }
.qe-city-track i {
  font-style: normal;
  font-size: 6px;
  color: rgba(212,168,67,0.3);
  flex-shrink: 0;
}

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

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.9s cubic-bezier(0.23,1,0.32,1), transform 0.9s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ═══ MOBILE ═══ */
@media (max-width: 1024px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .section-inner { padding: 120px 56px; }
  .two-col { gap: 56px; }
  .ponentes-inner { grid-template-columns: 1fr; gap: 44px; }
  .ponentes-left { position: static; }
  .ponentes-cards { grid-template-columns: repeat(3, 1fr); }
  .week-tracks { grid-template-columns: repeat(5, minmax(130px, 1fr)); }
  .porque-stats { grid-template-columns: repeat(2, 1fr); }
  .eco-strip { width: calc(100% + 112px); margin: 0 -56px; }
  .qe-city-ticker { width: calc(100% + 112px); margin: 0 -56px; }
}
@media (max-width: 768px) {
  .section-inner { padding: 100px 24px 64px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-reverse { direction: ltr; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .tribute-grid { grid-template-columns: 1fr; }
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .section-label { display: none; }
  .slide-counter { right: 14px; top: auto; bottom: 36px; transform: none; flex-direction: row; }
  .dot.active { height: 4px; width: 20px; }
  .partners-grid { gap: 18px 14px; margin-top: 48px; }
  .partner-item { width: 90px; height: 90px; }
  .partner-name { font-size: 9px; letter-spacing: 1.5px; }
  .partner-wrap { gap: 10px; }
  #hero::before { display: none; }
  .hero-ticker-item { padding: 0 24px; }
  .hero-date { flex-wrap: wrap; }
  .hero-date-item { padding: 14px 20px; }
  .body-text { font-size: 14px; }
  /* ponentes mobile */
  .ponentes-inner { padding-top: 100px; padding-bottom: 72px; gap: 32px; }
  .ponentes-cards { grid-template-columns: repeat(2, 1fr); }
  .ponente-card { min-height: 176px; padding: 26px 20px 22px; }
  .ponente-card-ghost { font-size: 50px; }
  .ponente-card-name { font-size: 20px; }
  .ponente-card-desc { font-size: 12px; }
  .ponente-card-icon { width: 38px; height: 38px; padding: 9px; margin-bottom: 14px; }
  .ponentes-stat-num { font-size: 28px; }
  .ponentes-stat { padding: 18px 12px; }
  .ponentes-stat-label { font-size: 9px; letter-spacing: 2px; }
  /* porque mobile */
  .porque-inner { gap: 36px; padding-top: 80px; padding-bottom: 60px; }
  .eco-strip { width: calc(100% + 48px); margin: 0 -24px; }
  .pstat-card { padding: 32px 16px 28px; }
  .porque-title { font-size: clamp(58px, 14vw, 90px); }
  .pstat-num { font-size: clamp(48px, 11vw, 72px); }
  /* que-es mobile */
  .qe-pillars { grid-template-columns: 1fr; }
  .qe-city-ticker { width: calc(100% + 48px); margin: 0 -24px; }
  .qe-statement { padding: 24px 20px; }
  .qe-eyebrow { flex-wrap: wrap; justify-content: center; gap: 10px; }
}
@media (max-width: 480px) {
  .ponentes-cards { grid-template-columns: 1fr; }
  .ponente-card { min-height: auto; flex-direction: row; align-items: center; gap: 18px; padding: 20px 18px; }
  .ponente-card-icon { margin-bottom: 0; flex-shrink: 0; }
  .ponente-card-ghost { font-size: 42px; bottom: -2px; right: -4px; }
  .ponente-card-num { top: 18px; right: 18px; }
  .partner-item { width: 76px; height: 76px; }
  .partners-grid { gap: 14px 10px; }
  .partner-name { font-size: 8px; letter-spacing: 1px; }
}

/* ═══════════════════════ TICKET WIDGET ═══════════════════════ */
.tw-widget {
  position: fixed;
  bottom: 120px;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  filter: drop-shadow(0 6px 32px rgba(192,18,42,0.22));
}

/* ── TAB ── */
.tw-tab {
  position: relative;
  width: 44px;
  height: 172px;
  background: linear-gradient(180deg, rgba(192,18,42,0.95) 0%, rgba(90,6,16,0.99) 100%);
  border: 1px solid rgba(192,18,42,0.5);
  border-right: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
  overflow: hidden;
  outline: none;
  transition: background 0.22s, filter 0.22s;
  flex-shrink: 0;
}
.tw-tab::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--ember) 50%, var(--crimson) 100%);
}
.tw-tab:hover,
.tw-widget.tw-open .tw-tab {
  background: linear-gradient(180deg, rgba(210,18,40,0.98) 0%, rgba(120,8,22,1) 100%);
  filter: brightness(1.08);
}
.tw-tab-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: twDotPulse 2.6s ease-in-out infinite;
}
@keyframes twDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.7); }
  60% { box-shadow: 0 0 0 5px rgba(212,168,67,0); }
}
.tw-tab-icon {
  width: 19px;
  height: 19px;
  stroke: rgba(245,237,216,0.82);
}
.tw-tab-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 3.5px;
  color: rgba(245,237,216,0.88);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* ── PANEL ── */
.tw-panel {
  width: 0;
  overflow: hidden;
  transition: width 0.48s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.tw-widget.tw-open .tw-panel {
  width: 264px;
}
.tw-panel-inner {
  width: 264px;
  background: rgba(7,3,10,0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-right: 2px dashed rgba(212,168,67,0.22);
  border-radius: 12px 0 0 12px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.tw-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: 1px solid rgba(212,168,67,0.18);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: background 0.2s, border-color 0.2s;
}
.tw-close:hover { background: rgba(192,18,42,0.2); border-color: rgba(192,18,42,0.4); }
.tw-close svg { width: 11px; height: 11px; stroke: rgba(245,237,216,0.55); }

.tw-eyebrow {
  padding-right: 28px;
}
.tw-billboard-logo {
  width: 130px;
  height: auto;
  display: block;
  opacity: 0.88;
  filter: brightness(1.05);
}
.tw-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  line-height: 0.92;
  letter-spacing: 1.5px;
  color: var(--cream);
}
.tw-title span { color: var(--crimson); }
.tw-divider-line {
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, transparent 100%);
}
.tw-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tw-meta-item { flex: 1; }
.tw-meta-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
}
.tw-meta-key {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,237,216,0.35);
  margin-top: 3px;
}
.tw-meta-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}
.tw-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: linear-gradient(105deg, var(--crimson) 0%, var(--ember) 100%);
  color: var(--cream);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  border-radius: 2px;
  margin-top: 2px;
  position: relative;
  overflow: hidden;
  transition: filter 0.2s, transform 0.15s;
}
.tw-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(212,168,67,0.18) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.tw-cta-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.tw-cta-btn:hover::after { opacity: 1; }
.tw-cta-btn svg { width: 15px; height: 15px; stroke: rgba(245,237,216,0.85); flex-shrink: 0; }

@media (max-width: 768px) {
  .tw-widget { bottom: 78px; }
  .tw-widget.tw-open .tw-panel { width: 235px; }
  .tw-panel-inner { width: 235px; padding: 22px 18px 20px; }
  .tw-title { font-size: 28px; }
}
