﻿:root {
  /* Deep steel-blue ink palette pulled from poster background */
  --ink-900: #070d16;
  --ink-800: #0d1726;
  --ink-700: #142339;
  --ink-600: #1c2f4a;
  --ink-500: #2a3f5d;
  --ink-400: #41587a;
  --ink-300: #637a99;
  --ink-200: #94a3bd;
  --ink-100: #c5cdda;
  --ink-050: #eaeef5;
  /* Aged bronze / champagne gold from main logo */
  --gold-900: #2d2410;
  --gold-800: #5a4719;
  --gold-700: #866822;
  --gold-600: #a98430;
  --gold-500: #c39c47;
  --gold-400: #d6b66e;
  --gold-300: #e3cc94;
  --gold-200: #efddb6;
  /* Cool steel / pewter from band logos */
  --silver-700: #5a6678;
  --silver-600: #7d8a9d;
  --silver-500: #a3aebe;
  --silver-400: #c1cad8;
  --blood-700: #4a1212;
  --blood-600: #7a1818;
  --blood-500: #a52121;
  --blood-400: #cc3a3a;
  --ember-500: #b04a18;
  --ember-400: #d36a32;
  --steel-500: #3d5b7c;
  --steel-400: #6585a6;
  --bg: var(--ink-900);
  --border: rgba(195, 156, 71, 0.16);
  --border-hard: rgba(195, 156, 71, 0.36);
  --divider: rgba(148, 163, 189, 0.1);

  --font-display: "Cinzel", serif;
  --font-cond: "Oswald", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --shadow-gold:
    0 0 0 1px rgba(195, 156, 71, 0.42), 0 8px 24px rgba(195, 156, 71, 0.2);
  --shadow-blood:
    0 0 0 1px rgba(165, 33, 33, 0.5), 0 8px 24px rgba(165, 33, 33, 0.28);
  --shadow-2: 0 2px 0 rgba(0, 0, 0, 0.55), 0 14px 32px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg);
  color: var(--ink-050);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.8  0 0 0 0 0.7  0 0 0 0 0.4  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}

/* ======================= NAV ======================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 16px 40px;
  background: rgba(7, 9, 13, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
  transition: background 0.25s;
}
.nav.scrolled {
  background: rgba(7, 9, 13, 0.92);
  border-bottom-color: var(--border);
}
.nav-mark-image {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-100);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--gold-400);
}
.nav-links a.active {
  color: var(--gold-500);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold-500);
}
.nav-cta {
  padding: 10px 18px;
  background: linear-gradient(
    180deg,
    var(--gold-400),
    var(--gold-600) 50%,
    var(--gold-800)
  );
  color: var(--ink-900);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  box-shadow:
    var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.nav-cta:hover {
  filter: brightness(1.08);
}

/* ======================= HERO ======================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: grid;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      70% 50% at 50% 28%,
      rgba(195, 156, 71, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      120% 80% at 50% 95%,
      rgba(61, 91, 124, 0.42) 0%,
      transparent 65%
    ),
    linear-gradient(180deg, #06101e 0%, #0d1d33 32%, #173456 62%, #070d16 100%);
}
/* abstract mountain silhouettes */
.hero-mountains {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 55%;
  pointer-events: none;
}
.hero-mountains svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-fog {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 9, 13, 0.8) 90%);
}
/* floating embers */
.ember {
  position: absolute;
  z-index: -1;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px 2px rgba(217, 169, 63, 0.6);
  opacity: 0;
  animation: ember-rise linear infinite;
}
@keyframes ember-rise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-800px);
    opacity: 0;
  }
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-300);
  text-transform: uppercase;
}
.hero-top b {
  color: var(--gold-400);
  font-weight: 500;
}

.hero-center {
  align-self: center;
  text-align: center;
  padding: 48px 0;
}
.hero-edition {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--ink-200);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hero-edition::before,
.hero-edition::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold-700);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(
    180deg,
    var(--gold-200) 0%,
    var(--gold-500) 45%,
    var(--gold-800) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 30px rgba(217, 169, 63, 0.15);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}
.hero-title-image {
  display: block;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}
.hero-subline {
  font-family: var(--font-cond);
  font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-top: 20px;
}
.hero-subline b {
  color: var(--gold-400);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: end;
}
.hero-countdown {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}
.hero-cd-unit {
  min-width: 72px;
  padding: 12px 8px 10px;
  text-align: center;
  border: 1px solid var(--border);
  background: rgba(14, 18, 24, 0.6);
  backdrop-filter: blur(6px);
  position: relative;
}
.hero-cd-unit::before,
.hero-cd-unit::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold-500);
}
.hero-cd-unit::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}
.hero-cd-unit::after {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}
.hero-cd-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--gold-400);
  line-height: 1;
}
.hero-cd-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-300);
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-scroll {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-300);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
}
.hero-marquee {
  justify-self: center;
  text-align: center;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-200);
  max-width: 480px;
}

/* ======================= BTN ======================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.12s ease,
    filter 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: none;
  transform: none;
}
.btn-primary {
  background: linear-gradient(
    180deg,
    var(--gold-400) 0%,
    var(--gold-600) 50%,
    var(--gold-800) 100%
  );
  color: var(--ink-900);
  box-shadow:
    var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  filter: brightness(1.08);
}
.btn-ghost {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--border-hard);
}
.btn-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
}
.btn-danger {
  background: linear-gradient(
    180deg,
    var(--blood-400),
    var(--blood-600) 60%,
    var(--blood-700)
  );
  color: #fff2f2;
  box-shadow:
    var(--shadow-blood),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-danger:hover {
  transform: scale(1.01);
  box-shadow:
    var(--shadow-blood),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ======================= SECTION CHROME ======================= */
section {
  position: relative;
  padding: 120px 40px;
  z-index: 2;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}

.sec-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 28px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border-hard);
}
.sec-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold-500);
  text-transform: uppercase;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-050);
  margin: 0;
}
.sec-title em {
  font-style: normal;
  background: linear-gradient(
    180deg,
    var(--gold-200),
    var(--gold-500) 50%,
    var(--gold-800)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec-lead {
  max-width: 360px;
  text-align: right;
  font-size: 14px;
  color: var(--ink-200);
  line-height: 1.6;
}

/* ======================= LINEUP ======================= */
#lineup {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(14, 18, 24, 0.6) 100%
  );
}
.lineup-hero {
  text-align: center;
  margin-bottom: 56px;
}
.lineup-hero-headliners {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    #efddb6 0%,
    #d6b66e 35%,
    #866822 75%,
    #5a4719 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lineup-hero-sep {
  display: inline-block;
  color: var(--ink-400);
  margin: 0 16px;
}
.lineup-hero-second {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-top: 16px;
  line-height: 1.4;
}
.lineup-hero-second span {
  color: var(--ink-300);
  margin: 0 10px;
}

/* Selector de horario oculto â€“ no borrar */
.lineup-days {
  display: none !important;
}
.lineup-days-original {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}
.lineup-day-tab {
  flex: 1;
  padding: 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-300);
  border-right: 1px solid var(--border);
  transition:
    background 0.2s,
    color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.lineup-day-tab:last-child {
  border-right: 0;
}
.lineup-day-tab:hover {
  color: var(--ink-100);
}
.lineup-day-tab.active {
  background: linear-gradient(
    180deg,
    rgba(217, 169, 63, 0.14),
    rgba(217, 169, 63, 0.04)
  );
  color: var(--gold-400);
}
.lineup-day-tab .day-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: currentColor;
  opacity: 0.7;
}
.lineup-day-tab .day-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: currentColor;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.band-card {
  position: relative;
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.band-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hard);
  box-shadow: var(--shadow-2);
}
.band-card::before,
.band-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold-500);
  z-index: 3;
  pointer-events: none;
  opacity: 0.9;
}
.band-card::before {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}
.band-card::after {
  bottom: 8px;
  right: 8px;
  border-left: 0;
  border-top: 0;
}
.band-photo {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--ink-500),
    var(--ink-700) 50%,
    var(--ink-900)
  );
}
.band-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -20deg,
    transparent 0 6px,
    rgba(0, 0, 0, 0.18) 6px 7px
  );
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.band-photo .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-400);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}
.band-photo[data-tone="1"] {
  background: linear-gradient(160deg, #2a3f5d, #142339 50%, #070d16);
}
.band-photo[data-tone="2"] {
  background: linear-gradient(160deg, #3a2c0e, #142339 60%, #070d16);
}
.band-photo[data-tone="3"] {
  background: linear-gradient(160deg, #1c2f4a, #2a3f5d 50%, #070d16);
}
.band-photo[data-tone="4"] {
  background: linear-gradient(160deg, #3d5b7c, #1c2f4a 50%, #070d16);
}
.band-photo[data-tone="5"] {
  background: linear-gradient(160deg, #41587a, #142339 50%, #070d16);
}
.band-photo[data-tone="6"] {
  background: linear-gradient(160deg, #4a1212, #1c2f4a 70%, #070d16);
}

.band-flag {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold-400);
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(14, 18, 24, 0.75);
  border: 1px solid var(--border-hard);
}
.band-flag.live {
  color: var(--blood-400);
  border-color: rgba(179, 27, 27, 0.4);
  background: rgba(179, 27, 27, 0.2);
}
.band-body {
  padding: 18px 18px 20px;
}
.band-day {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.band-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-050);
  margin: 0 0 4px;
  line-height: 1;
}
.band-genre {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-300);
}

.lineup-more {
  text-align: center;
  margin-top: 56px;
}

/* ======================= TICKETS ======================= */
#tickets {
  background:
    radial-gradient(
      50% 60% at 50% 0%,
      rgba(217, 169, 63, 0.08),
      transparent 60%
    ),
    var(--ink-900);
}
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ticket-tier {
  position: relative;
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.ticket-tier:hover {
  transform: translateY(-4px);
  border-color: var(--border-hard);
}
.ticket-tier::before,
.ticket-tier::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold-500);
}
.ticket-tier::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}
.ticket-tier::after {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}
.ticket-tier.featured {
  background: linear-gradient(180deg, #1a1508, var(--ink-800) 60%);
  border-color: var(--gold-700);
}
.ticket-tier.featured::before,
.ticket-tier.featured::after {
  border-color: var(--gold-400);
  width: 18px;
  height: 18px;
}
.tier-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tier-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-050);
  margin: 0 0 4px;
  line-height: 1;
}
.ticket-tier.featured .tier-name {
  background: linear-gradient(
    180deg,
    #efddb6 0%,
    #d6b66e 35%,
    #866822 75%,
    #5a4719 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tier-tag {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-300);
  text-transform: uppercase;
}
.tier-price {
  margin: 28px 0 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  color: var(--gold-400);
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.tier-price .cur {
  font-size: 24px;
  color: var(--gold-400);
  font-weight: 500;
}
.tier-price .suf {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--gold-400);
  letter-spacing: 0.2em;
  margin-left: auto;
  font-weight: 400;
  text-transform: uppercase;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tier-features li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-100);
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
}
.tier-features li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.tier-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  background: var(--gold-500);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.tier-features li.out {
  color: var(--ink-400);
  text-decoration: line-through;
}
.tier-features li.out::before {
  background: var(--ink-400);
}

.ticket-tier .btn {
  width: 100%;
}

/* ---- Ribbon agotado ---- */
.ticket-tier.sold-out {
  overflow: hidden;
  opacity: 0.7;
  filter: grayscale(60%);
  pointer-events: none;
}
.ticket-tier.sold-out::after {
  content: "AGOTADO";
  position: absolute;
  bottom: 62px;
  right: -80px;
  width: 350px;
  text-align: center;
  background: var(--blood-600);
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.28em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0;
  transform: rotate(-45deg);
  z-index: 10;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ======================= INFO ======================= */
#info {
  background: var(--ink-900);
}
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
.info-map {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #0e1218 0%, #151d28 100%);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.info-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.info-map-pin {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info-map-pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 0 rgba(217, 169, 63, 0.6);
  animation: pin-pulse 2s infinite;
}
@keyframes pin-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 169, 63, 0.8);
  }
  100% {
    box-shadow: 0 0 0 24px rgba(217, 169, 63, 0);
  }
}
.info-map-pin-label {
  margin-top: 10px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 6px 12px;
  background: rgba(7, 9, 13, 0.85);
  border: 1px solid var(--border-hard);
}
.info-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.info-map-grid line {
  stroke: var(--gold-700);
  stroke-width: 0.5;
}
.info-map-roads line {
  stroke: var(--ink-400);
  stroke-width: 1;
  opacity: 0.35;
}

.info-content h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-050);
  margin: 0 0 8px;
  line-height: 1;
}
.info-content p.venue {
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--ink-200);
  text-transform: uppercase;
  margin: 0 0 28px;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--divider);
  align-items: start;
}
.info-list .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold-500);
  text-transform: uppercase;
  padding-top: 3px;
}
.info-list .v {
  color: var(--ink-100);
  font-size: 14px;
  line-height: 1.55;
}
.info-list .v b {
  color: var(--ink-050);
}

.info-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ======================= STATS ======================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--border);
  margin-top: 64px;
}
.stat-cell {
  padding: 32px 24px;
  background: var(--ink-800);
  text-align: center;
}
.stat-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  color: var(--gold-400);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-lbl {
  margin-top: 10px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--ink-200);
  text-transform: uppercase;
}

/* ======================= SPONSORS ======================= */
#partners {
  background: var(--ink-900);
  padding-bottom: 80px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.partner-box {
  aspect-ratio: 2/1;
  border: 1px solid var(--border);
  background: rgba(14, 18, 24, 0.6);
  display: grid;
  place-items: center;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.partner-box:hover {
  color: var(--gold-400);
  border-color: var(--border-hard);
}

/* ======================= NEWSLETTER ======================= */
.newsletter {
  margin-top: 80px;
  padding: 48px 40px;
  border: 1px solid var(--border-hard);
  background:
    linear-gradient(180deg, rgba(217, 169, 63, 0.06), transparent 60%),
    var(--ink-800);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter::before,
.newsletter::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold-500);
}
.newsletter::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}
.newsletter::after {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}
.newsletter h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-050);
  margin: 0 0 8px;
  line-height: 1.1;
}
.newsletter p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-200);
  line-height: 1.55;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 18px;
  background: var(--ink-900);
  border: 1px solid var(--border);
  color: var(--ink-050);
  font-family: var(--font-body);
  font-size: 14px;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-500);
}
/* Oculto temporalmente â€“ descomentar para reactivar */
.newsletter {
  display: none !important;
}

/* ======================= FOOTER ======================= */
footer {
  padding: 56px 40px 32px;
  border-top: 1px solid var(--border);
  background: var(--ink-900);
  position: relative;
  z-index: 2;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider);
}
.footer-grid h5 {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 16px;
}
.footer-grid a {
  display: block;
  color: var(--ink-200);
  text-decoration: none;
  font-size: 13px;
  padding: 4px 0;
}
.footer-grid a:hover {
  color: var(--gold-400);
}
.footer-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    #efddb6 0%,
    #d6b66e 38%,
    #866822 80%,
    #5a4719 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.footer-bottom {
  max-width: 1280px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-400);
  text-transform: uppercase;
}

/* ======================= MODAL CARTEL ======================= */
.cartel-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 9, 13, 0.92);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.cartel-modal.open {
  display: flex;
}
.cartel-modal-inner {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
}
.cartel-modal-inner img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border: 1px solid var(--border-hard);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}
.cartel-modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  background: var(--gold-600);
  border: 0;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
}
.cartel-modal-close:hover {
  background: var(--gold-400);
}

/* =======  responsive ======= */
@media (max-width: 1080px) {
  .band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ticket-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
  }
  .hero-scroll {
    display: none;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 680px) {
  section {
    padding: 80px 24px;
  }
  .nav {
    padding: 14px 20px;
    grid-template-columns: auto auto;
  }
  .hero {
    padding: 100px 24px 60px;
    overflow-x: hidden;
  }
  .band-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-box {
    text-align: center;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom > * {
    width: 50%;
    box-sizing: border-box;
  }
  .footer-bottom > *:last-child {
    text-align: right;
  }
  .sec-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sec-lead {
    text-align: left;
    max-width: none;
  }
  .hero-top {
    flex-direction: column;
    gap: 8px;
  }
  .hero-title {
    font-size: clamp(38px, 10vw, 56px);
  }
  .hero-subline {
    font-size: 12px;
    letter-spacing: 0.12em;
    word-break: break-word;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .hero-marquee {
    font-size: 11px;
    letter-spacing: 0.16em;
  }
  .hero-countdown {
    justify-content: center;
  }
}

