:root {
  --azul-noche: #06152A;
  --azul-noche-2: #0D2340;
  --turquesa: #29C6E8;
  --aqua-glow: #68E6FF;
  --gold: #F2C75B;
  --summer-sun: #FFD84D;
  --orange: #F07A24;
  --red: #C92D1F;
  --sand: #FFF2C4;
  --font-display: 'Anton', 'Barlow', sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--azul-noche);
  color: var(--sand);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--summer-sun); }

h1, h2, h3 { margin: 0; }

.text-gold { color: var(--gold); }
.text-cyan { color: var(--turquesa); }
.text-orange { color: var(--orange); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.section-title--gold { color: var(--gold); font-size: clamp(34px, 4.4vw, 68px); line-height: 0.94; }

@keyframes sfRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes sfIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: none; } }
@keyframes sfDrift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes sfWave { 0% { background-position: 0 0; } 100% { background-position: 1200px 0; } }
@keyframes sfPulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.reveal {
  animation: sfRise .8s linear both;
  animation-timeline: view();
  animation-range: entry 5% entry 55%;
}

/* ---------- Buttons ---------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 6px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: filter .18s ease, transform .16s ease;
}
.btn:active { transform: scale(0.97); }

.btn--cta {
  background: linear-gradient(180deg, var(--orange), var(--red));
  color: #FFFFFF;
  box-shadow: 0 14px 40px rgba(201, 45, 31, 0.45);
}
.btn--cta:hover { filter: brightness(1.08); color: #FFFFFF; }

.btn--small { padding: 12px 22px; font-size: 13px; box-shadow: 0 8px 24px rgba(201, 45, 31, 0.35); }
.btn--large { padding: 19px 38px; font-size: 19px; }
.btn--xl { padding: 22px 46px; font-size: clamp(20px, 2vw, 26px); box-shadow: 0 18px 50px rgba(201, 45, 31, 0.5); }

.btn--outline {
  align-self: flex-start;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: transparent;
}
.btn--outline-gold { border: 1px solid var(--gold); color: var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--azul-noche); }
.btn--outline-cyan { border: 1px solid var(--turquesa); color: var(--turquesa); padding: 13px 24px; }
.btn--outline-cyan:hover { background: var(--turquesa); color: var(--azul-noche); }

.btn--gold-solid {
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  background: var(--gold);
  color: var(--azul-noche);
  font-size: 17px;
  gap: 10px;
}
.btn--gold-solid:hover { filter: brightness(1.06); }
.btn--gold-solid:active { transform: scale(0.98); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(6, 21, 42, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 199, 91, 0.18);
}
.nav__brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav__logo { height: 46px; width: auto; display: block; }
.nav__pages {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
}
.nav__pages a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  white-space: nowrap;
}
.nav__pages a:hover { color: var(--gold); }
.nav__pages a.is-active { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: clamp(560px, calc(100vh - 72px), 820px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: end;
  overflow: hidden;
  background: radial-gradient(120% 90% at 20% 0%, var(--azul-noche-2) 0%, var(--azul-noche) 60%, var(--azul-noche) 100%);
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 60% 60%;
  opacity: 0.55; filter: saturate(1.05) contrast(1.05);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--azul-noche) 4%, rgba(6,21,42,0.86) 38%, rgba(6,21,42,0.25) 72%, rgba(6,21,42,0.7) 100%);
}
.hero__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  background: linear-gradient(180deg, rgba(6,21,42,0) 0%, var(--azul-noche) 88%);
}
.hero__waves {
  position: absolute; left: 0; right: 0; bottom: 0; height: 120px; opacity: 0.5;
  background-repeat: repeat-x; background-size: 1200px 120px;
  background-image:
    radial-gradient(60px 22px at 60px 100px, rgba(41,198,232,0.55), transparent 70%),
    radial-gradient(90px 26px at 300px 108px, rgba(104,230,255,0.35), transparent 70%),
    radial-gradient(70px 20px at 620px 100px, rgba(41,198,232,0.4), transparent 70%),
    radial-gradient(110px 30px at 940px 110px, rgba(104,230,255,0.28), transparent 70%);
  animation: sfWave 26s linear infinite;
}
.hero__content {
  position: relative; z-index: 2;
  padding: clamp(20px,3.5vh,56px) clamp(20px,4vw,64px) clamp(28px,5vh,72px);
  display: flex; flex-direction: column; gap: clamp(14px,2.2vh,26px); align-items: flex-start;
}
.hero__eyebrow { display: flex; align-items: center; gap: 14px; animation: sfRise .5s ease-out both; }
.hero__eyebrow-line { width: 34px; height: 1px; background: var(--gold); }
.hero__eyebrow span:last-child { font-size: 12px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.hero__logo {
  height: clamp(190px, 36vh, 400px); width: auto; max-width: 92%; object-fit: contain; display: block;
  margin: -4% 0; filter: drop-shadow(0 24px 60px rgba(201,45,31,0.45));
  animation: sfIn .9s cubic-bezier(.16,.84,.3,1) both;
}
.hero__headline {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 3.6vw, 58px); line-height: 0.94; letter-spacing: -0.02em;
  text-transform: uppercase; color: #FFFFFF; max-width: 15ch; text-wrap: balance;
  animation: sfRise .7s ease-out .1s both;
}
.hero__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; animation: sfRise .7s ease-out .18s both; }
.hero__tags { font-size: 15px; font-weight: 600; color: var(--aqua-glow); }
.hero__dateblock {
  position: relative; z-index: 2;
  padding: 0 clamp(20px,4vw,64px) clamp(40px,7vh,90px);
  display: flex; flex-direction: column; align-items: flex-end; gap: 18px;
}
.hero__dates { display: flex; align-items: flex-end; gap: 10px; animation: sfRise .7s ease-out .26s both; }
.hero__date-main { font-family: var(--font-display); font-size: clamp(64px,9vw,132px); line-height: 0.8; color: var(--turquesa); text-shadow: 0 12px 40px rgba(41,198,232,0.35); }
.hero__date-end { font-family: var(--font-display); font-size: clamp(30px,4vw,58px); line-height: 1; color: var(--sand); }
.hero__month { font-family: var(--font-display); font-size: clamp(18px,2vw,30px); letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); animation: sfRise .7s ease-out .3s both; }
.hero__location { display: flex; align-items: center; gap: 8px; animation: sfPulse 2.4s ease-in-out infinite; }
.hero__location i { color: var(--orange); font-size: 14px; }
.hero__location span { font-size: 14px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); }

/* ---------- Fechas ---------- */
.fechas { position: relative; padding: clamp(70px,10vh,130px) clamp(20px,4vw,64px); background: linear-gradient(180deg, var(--azul-noche) 0%, var(--azul-noche-2) 55%, var(--azul-noche) 100%); }
.fechas__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; }
.fechas__head .section-title { animation: sfRise .8s linear both; animation-timeline: view(); animation-range: entry 5% entry 55%; }

.countdown { display: flex; gap: 14px; animation: sfRise .8s linear both; animation-timeline: view(); animation-range: entry 5% entry 55%; }
.countdown__unit { min-width: 82px; padding: 14px 16px; border-radius: 6px; background: rgba(41,198,232,0.08); border: 1px solid rgba(41,198,232,0.28); text-align: center; }
.countdown__num { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--gold); }
.countdown__label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--aqua-glow); margin-top: 6px; }

/* ---------- Lugar ---------- */
.lugar { position: relative; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,1fr); align-items: stretch; background: var(--azul-noche); }
.lugar__media { position: relative; min-height: clamp(420px,62vh,680px); overflow: hidden; }
.lugar__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.lugar__media-scrim { position: absolute; inset: 0; background: linear-gradient(75deg, rgba(6,21,42,0.85) 0%, rgba(6,21,42,0.15) 55%, rgba(41,198,232,0.18) 100%); }
.lugar__media-caption { position: absolute; left: clamp(20px,4vw,64px); bottom: clamp(24px,5vh,54px); display: flex; flex-direction: column; gap: 8px; }
.lugar__media-name { font-family: var(--font-display); font-size: clamp(30px,3.4vw,54px); line-height: 1; text-transform: uppercase; color: #FFFFFF; }
.lugar__media-coords { font-size: 14px; font-weight: 600; letter-spacing: 0.2em; color: var(--aqua-glow); }
.lugar__info { padding: clamp(48px,8vh,96px) clamp(20px,4vw,64px); display: flex; flex-direction: column; justify-content: center; gap: 26px; background: linear-gradient(180deg, var(--azul-noche-2), var(--azul-noche)); }
.lugar__info .section-title { animation: sfRise .8s linear both; animation-timeline: view(); animation-range: entry 5% entry 55%; }
.lugar__text { margin: 0; max-width: 44ch; font-size: 18px; line-height: 1.55; color: var(--sand); animation: sfRise .8s linear .06s both; animation-timeline: view(); animation-range: entry 5% entry 55%; }
.lugar__facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: rgba(242,199,91,0.22); border: 1px solid rgba(242,199,91,0.22); border-radius: 6px; overflow: hidden; animation: sfRise .8s linear .12s both; animation-timeline: view(); animation-range: entry 5% entry 55%; }
.lugar__fact { padding: 20px; background: var(--azul-noche); }
.lugar__fact-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aqua-glow); }
.lugar__fact-value { margin-top: 8px; font-size: 16px; font-weight: 600; color: #FFFFFF; }
.lugar__map-link { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--aqua-glow); }
.lugar__map-link:hover { color: var(--summer-sun); }
.lugar__map { grid-column: 1 / -1; height: clamp(260px,40vh,420px); }
.lugar__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.9) brightness(0.92); }

/* ---------- Cartel ---------- */
.cartel { padding: clamp(70px,10vh,130px) clamp(20px,4vw,64px); background: linear-gradient(180deg, var(--azul-noche-2) 0%, var(--azul-noche) 60%); display: flex; flex-direction: column; gap: 48px; }
.cartel__head { max-width: 52ch; }
.cartel__lead { margin: 10px 0 0; font-size: 17px; line-height: 1.5; color: var(--sand); }
.cartel__block { display: flex; flex-direction: column; gap: 16px; }
.cartel__block-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 10px; border-bottom: 1px solid rgba(242,199,91,0.22); padding-bottom: 12px; }
.cartel__block-head h3 { font-family: var(--font-display); font-weight: 400; font-size: 24px; text-transform: uppercase; color: #FFFFFF; display: flex; align-items: center; gap: 10px; }
.cartel__block-head h3 i { color: var(--gold); font-size: 18px; }
.cartel__block-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aqua-glow); }
.cartel__row { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 12px; }
.cartel__row--headline { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); }

.cartel-card { display: flex; flex-direction: column; border-radius: 6px; overflow: hidden; background: rgba(41,198,232,0.06); border: 1px solid rgba(242,199,91,0.18); }
.cartel-card__photo { position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; background-color: var(--azul-noche-2); background-image: repeating-linear-gradient(135deg, rgba(104,230,255,0.14) 0 6px, rgba(104,230,255,0) 6px 14px); }
.cartel-card__num { font-family: var(--font-display); font-size: 28px; color: rgba(255,255,255,0.22); }
.cartel-card__body { padding: 10px 12px; display: flex; flex-direction: column; gap: 4px; }
.cartel-card__name { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.02em; text-transform: uppercase; color: #FFFFFF; }
.cartel-card__status { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,242,196,0.45); }
.cartel-card--headline { border-color: rgba(242,199,91,0.4); }
.cartel-card--headline .cartel-card__photo { background-color: rgba(242,199,91,0.08); }
.cartel-card--headline .cartel-card__name { color: var(--gold); font-size: 16px; }

/* ---------- Participa ---------- */
.participa { padding: clamp(70px,10vh,130px) clamp(20px,4vw,64px); background: var(--azul-noche); }
.participa__head { max-width: 52ch; margin-bottom: 48px; }
.participa__head .section-title { margin-bottom: 16px; animation: sfRise .8s linear both; animation-timeline: view(); animation-range: entry 5% entry 55%; }
.participa__lead { margin: 0; font-size: 18px; line-height: 1.55; color: var(--sand); animation: sfRise .8s linear .06s both; animation-timeline: view(); animation-range: entry 5% entry 55%; }
.participa__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); grid-auto-rows: minmax(0,auto); gap: 18px; }

.participa-card {
  position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: 6px; overflow: hidden;
  animation: sfRise .7s linear both; animation-timeline: view(); animation-range: entry 5% entry 45%;
}
.participa-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.participa-card__scrim { position: absolute; inset: 0; }
.participa-card__content { position: relative; display: flex; flex-direction: column; gap: 14px; }
.participa-card__content h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: #FFFFFF; }
.participa-card__content p { margin: 0; line-height: 1.5; color: var(--sand); }

.participa-card--dj { grid-column: span 2; padding: clamp(24px,3vw,40px); border: 1px solid rgba(242,199,91,0.28); }
.participa-card--dj .participa-card__scrim { background: linear-gradient(20deg, #06152A 8%, rgba(6,21,42,0.55) 55%, rgba(240,122,36,0.22) 100%); }
.participa-card--dj .participa-card__content { max-width: 38ch; }
.participa-card--dj i { font-size: 26px; color: var(--gold); }
.participa-card--dj h3 { font-size: clamp(30px,3.4vw,52px); line-height: 0.96; }
.participa-card--dj p { font-size: 17px; }

.participa-card--singer { padding: clamp(22px,2.4vw,32px); border: 1px solid rgba(41,198,232,0.3); animation-delay: .08s; }
.participa-card--singer .participa-card__scrim { background: linear-gradient(180deg, rgba(6,21,42,0.1) 20%, #06152A 92%); }
.participa-card--singer .participa-card__content { gap: 12px; }
.participa-card--singer i { font-size: 24px; color: var(--aqua-glow); }
.participa-card--singer h3 { font-size: clamp(26px,2.4vw,38px); line-height: 0.98; }
.participa-card--singer p { font-size: 16px; }

.participa-card--dancers {
  grid-column: span 3; min-height: 300px; display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.1fr);
  border: 1px solid rgba(201,45,31,0.35); animation-delay: .14s;
}
.participa-card--dancers .participa-card__text { padding: clamp(24px,3vw,44px); display: flex; flex-direction: column; justify-content: center; gap: 14px; background: linear-gradient(120deg, var(--azul-noche-2), var(--azul-noche)); }
.participa-card--dancers i { font-size: 24px; color: var(--orange); }
.participa-card--dancers h3 { font-size: clamp(28px,3vw,46px); line-height: 0.98; }
.participa-card--dancers p { max-width: 42ch; font-size: 17px; }
.participa-card--dancers .btn { align-self: flex-start; padding: 14px 26px; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; }
.participa-card--dancers .participa-card__media { position: relative; min-height: 260px; }
.participa-card__scrim--side { background: linear-gradient(90deg, #06152A 0%, rgba(6,21,42,0.35) 45%, rgba(41,198,232,0.16) 100%); }

/* ---------- Entradas ---------- */
.entradas {
  position: relative; min-height: clamp(480px,72vh,720px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: clamp(70px,10vh,130px) clamp(20px,4vw,64px); overflow: hidden;
}
.entradas__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 70%; opacity: 0.5; }
.entradas__scrim { position: absolute; inset: 0; background: radial-gradient(85% 70% at 50% 60%, rgba(6,21,42,0.55) 0%, var(--azul-noche) 78%); }
.entradas__content {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 24px;
  animation: sfRise .8s linear both; animation-timeline: view(); animation-range: entry 5% entry 55%;
}
.entradas__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange); }
.entradas__headline { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px,7vw,116px); line-height: 0.88; text-transform: uppercase; color: #FFFFFF; max-width: 18ch; text-wrap: balance; margin: 0; }
.entradas__price { font-size: 15px; font-weight: 600; color: var(--aqua-glow); }

/* ---------- Votación ---------- */
.votacion { padding: clamp(48px,8vh,110px) clamp(16px,4vw,64px); background: linear-gradient(180deg, var(--azul-noche) 0%, var(--azul-noche-2) 40%, var(--azul-noche) 100%); }
.votacion__inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
.votacion__badge { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 6px; background: rgba(41,198,232,0.08); border: 1px solid rgba(41,198,232,0.28); }
.votacion__badge i { font-size: 13px; color: var(--aqua-glow); }
.votacion__badge span { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--aqua-glow); }
.votacion__head { display: flex; flex-direction: column; gap: 10px; }
.votacion__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.votacion__head .section-title { font-size: clamp(34px,7vw,72px); line-height: 0.92; }
.votacion__lead { margin: 0; max-width: 46ch; font-size: 16px; line-height: 1.5; color: var(--sand); }
.votacion__foot { font-size: 12px; line-height: 1.5; color: rgba(255,242,196,0.5); }

.votacion__locked { display: none; flex-direction: column; align-items: center; text-align: center; gap: 18px; padding: clamp(48px,8vh,90px) 20px; }
.votacion__locked-icon {
  width: 84px; height: 84px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(242,199,91,0.1); border: 1px solid rgba(242,199,91,0.35); color: var(--gold); font-size: 32px;
}
.votacion__locked-text { margin: 0; max-width: 42ch; font-size: 16px; line-height: 1.55; color: var(--sand); }
.votacion--locked .votacion__locked { display: flex; }
.votacion--locked .votacion__interactive { display: none; }

.vote-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 6px; border-radius: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(242,199,91,0.22); }
.vote-tab {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  min-height: 56px; padding: 10px 12px; border-radius: 6px; cursor: pointer; border: none;
  background: transparent; color: rgba(255,242,196,0.7);
  transition: background .18s ease, color .18s ease;
}
.vote-tab:active { transform: scale(0.98); }
.vote-tab.is-active { background: linear-gradient(180deg, var(--orange), var(--red)); color: #FFFFFF; box-shadow: 0 10px 28px rgba(201,45,31,0.4); }
.vote-tab__title { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
.vote-tab__badge { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }

[hidden] { display: none !important; }

.vote-confirm {
  display: flex; flex-direction: column; gap: 14px; padding: 18px; border-radius: 6px;
  background: linear-gradient(180deg, rgba(240,122,36,0.22), rgba(201,45,31,0.26));
  border: 1px solid rgba(242,199,91,0.42); box-shadow: 0 20px 50px rgba(201,45,31,0.26);
  animation: sfRise .4s ease-out both;
}
.vote-confirm__row { display: flex; align-items: center; gap: 14px; }
.vote-confirm__check {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--azul-noche); font-size: 18px; animation: sfIn .45s cubic-bezier(.2,.9,.3,1.2) both;
}
.vote-confirm__text { display: flex; flex-direction: column; gap: 3px; }
.vote-confirm__title { font-family: var(--font-display); font-size: 24px; line-height: 1; text-transform: uppercase; color: #FFFFFF; }
.vote-confirm__name { font-size: 13px; font-weight: 600; color: var(--sand); }

.vote-alldone { display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 6px; background: rgba(41,198,232,0.1); border: 1px solid rgba(41,198,232,0.32); animation: sfRise .4s ease-out both; }
.vote-alldone i { font-size: 17px; color: var(--aqua-glow); }
.vote-alldone span { font-size: 14px; font-weight: 600; line-height: 1.45; color: var(--sand); }

.vote-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 12px; }

.vote-card {
  position: relative; display: flex; flex-direction: column; border-radius: 6px; overflow: hidden;
  background: rgba(41,198,232,0.06); border: 1px solid rgba(242,199,91,0.22);
  transition: opacity .2s ease;
}
.vote-card.is-voted { background: linear-gradient(180deg, rgba(240,122,36,0.22), rgba(201,45,31,0.24)); border: 2px solid var(--gold); box-shadow: 0 16px 40px rgba(201,45,31,0.3); }
.vote-card.is-blocked { opacity: 0.35; filter: saturate(0.4); }

.vote-card__photo {
  position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
  background-color: var(--azul-noche-2);
  background-image: repeating-linear-gradient(135deg, rgba(104,230,255,0.16) 0 6px, rgba(104,230,255,0) 6px 14px);
}
.vote-card__tag { position: absolute; left: 8px; top: 8px; padding: 3px 7px; border-radius: 4px; background: rgba(6,21,42,0.72); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,242,196,0.8); }
.vote-card__check {
  display: none; position: absolute; right: 8px; top: 8px; width: 28px; height: 28px; border-radius: 50%;
  align-items: center; justify-content: center; background: var(--gold); color: var(--azul-noche); font-size: 13px;
  animation: sfIn .4s cubic-bezier(.2,.9,.3,1.2) both;
}
.vote-card.is-voted .vote-card__check { display: flex; }
.vote-card__num { font-family: var(--font-display); font-size: 32px; line-height: 1; color: rgba(255,255,255,0.24); }

.vote-card__body { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.vote-card__name { font-family: var(--font-display); font-size: 16px; line-height: 1.05; letter-spacing: 0.02em; text-transform: uppercase; color: #FFFFFF; }
.vote-card__role { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,242,196,0.45); }

.vote-card__btn {
  display: flex; align-items: center; justify-content: center; width: 100%; min-height: 46px; padding: 0 12px;
  border-radius: 6px; font-family: var(--font-display); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  border: none; background: linear-gradient(180deg, var(--orange), var(--red)); color: #FFFFFF; cursor: pointer;
  box-shadow: 0 8px 22px rgba(201,45,31,0.35); transition: filter .18s ease, transform .16s ease;
}
.vote-card__btn:hover { filter: brightness(1.08); }
.vote-card__btn:active { transform: scale(0.97); }
.vote-card.is-voted .vote-card__btn { background: var(--gold); color: var(--azul-noche); cursor: default; box-shadow: none; }
.vote-card.is-blocked .vote-card__btn { border: 1px solid rgba(242,199,91,0.22); background: transparent; color: rgba(255,242,196,0.45); cursor: not-allowed; box-shadow: none; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid rgba(242,199,91,0.2); border-bottom: 1px solid rgba(242,199,91,0.2); background: var(--azul-noche-2); padding: 16px 0; }
.marquee__track { display: flex; width: max-content; gap: 48px; animation: sfDrift 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242,199,91,0.85); white-space: nowrap; }

/* ---------- Footer ---------- */
.footer { padding: clamp(56px,8vh,96px) clamp(20px,4vw,64px) 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; background: var(--azul-noche); }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo { height: 72px; width: auto; display: block; align-self: flex-start; }
.footer__brand span { font-size: 14px; color: rgba(255,242,196,0.65); }
.footer__social { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer__social-label { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--aqua-glow); }
.footer__icons { display: flex; gap: 14px; }
.social-icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 6px;
  border: 1px solid rgba(242,199,91,0.32); color: var(--gold); font-size: 20px; transition: background .18s ease, color .18s ease;
}
.social-icon:hover { background: var(--gold); color: var(--azul-noche); }
.footer__handle { font-size: 14px; color: rgba(255,242,196,0.65); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; flex-basis: 100%; padding-top: 24px; border-top: 1px solid rgba(242,199,91,0.14); }
.footer__legal a { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: rgba(255,242,196,0.5); }
.footer__legal a:hover { color: var(--gold); }

/* ---------- Legal ---------- */
.legal { padding: clamp(70px,10vh,130px) clamp(20px,4vw,64px); background: var(--azul-noche); }
.legal__inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.legal__inner h3 { margin-top: 28px; font-family: var(--font-display); font-weight: 400; font-size: 22px; text-transform: uppercase; color: var(--gold); }
.legal__inner p { margin: 10px 0 0; font-size: 15px; line-height: 1.6; color: var(--sand); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 60; max-width: 560px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; border-radius: 8px; background: rgba(13,35,64,0.96); backdrop-filter: blur(10px);
  border: 1px solid rgba(242,199,91,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.cookie-banner p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--sand); flex: 1 1 260px; }
.cookie-banner p a { color: var(--gold); }
.cookie-banner .btn { flex: 0 0 auto; padding: 10px 22px; min-height: 0; width: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    row-gap: 10px;
    padding-top: 12px;
    padding-bottom: 0;
  }
  .nav .btn--small { order: 2; margin-left: auto; }
  .nav__pages {
    order: 3;
    flex: 0 0 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .nav__pages a { flex: 0 0 auto; }
  .hero { grid-template-columns: 1fr; }
  .hero__dateblock { align-items: flex-start; padding-top: 0; }
  .lugar { grid-template-columns: 1fr; }
  .participa__grid { grid-template-columns: 1fr; }
  .participa-card--dj, .participa-card--dancers { grid-column: span 1; }
  .participa-card--dancers { grid-template-columns: 1fr; }
  .participa-card--dancers .participa-card__media { min-height: 220px; order: -1; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .countdown { flex-wrap: wrap; }
  .vote-tabs { grid-template-columns: 1fr; }
}
