/* ==========================================================================
   BOMBTRACK // MANIFESTO SUBTERRÂNEO — V2 OTIMIZADA
   Mantém 100% da identidade visual. Reduz custo de paint/render/composite.
   ========================================================================== */

:root {
  --black:       #000000;
  --sepia-deep:  #1a0700;
  --sepia:       #3d0f00;
  --orange-fire: #ff4500;
  --amber:       #ff7a00;
  --sulfur:      #ffb000;
  --paper:       #f5e6c8;

  --font-display:   'Anton', sans-serif;
  --font-mono:      'Space Mono', ui-monospace, monospace;
  --font-editorial: 'Special Elite', 'Courier New', monospace;
  /* OCULTA — alternativa anterior: EB Garamond
     Para reativar, troque a linha acima por:
       --font-editorial: 'EB Garamond', Georgia, serif;
     E restaure o link no <head> da v2/index.html
     E adicione de volta `font-style: italic` + `font-weight: 700/800`
     nas 9 regras que usam var(--font-editorial) abaixo.
  */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: #fff;
  font-family: var(--font-display);
  line-height: 1;
  overflow-x: hidden;
  position: relative;
}

::selection { background: var(--orange-fire); color: #000; }

/* ==========================================================================
   ATMOSFERA GLOBAL — GRAIN (otimizado) + VIGNETTE
   ========================================================================== */

#grain {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.18;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.vignette {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.7) 100%);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
  pointer-events: none;
  text-transform: uppercase;
}
.topbar-c { text-align: center; }
.topbar-r { text-align: right; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: flicker 8s infinite;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  z-index: 1;
  will-change: transform;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.35) saturate(1.25) brightness(0.7);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.55) 0%,
    transparent 25%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  max-width: 1400px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--sulfur);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 13vw, 13rem);
  font-weight: 400;
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.05em;
}

.hero-title > span:nth-child(1),
.hero-title > span:nth-child(4),
.hero-title > span:nth-child(7) {
  color: var(--orange-fire);
  text-shadow: 0 0 30px rgba(255,69,0,0.4);
}
.hero-title > span:nth-child(2),
.hero-title > span:nth-child(5) {
  color: #fff;
}
.hero-title .sep {
  color: var(--sulfur);
  display: inline-block;
  margin: 0 0.15em;
  transform: translateY(-0.05em);
  font-size: 0.7em;
}
.hero-title em {
  font-family: var(--font-editorial);
  text-transform: lowercase;
  color: var(--amber);
  font-size: 0.95em;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(255,176,0,0.3);
}

.hero-logo-wrap {
  margin: 1rem auto 1.5rem;
  display: flex;
  justify-content: center;
}

.hero-logo {
  max-width: 540px;
  width: 65vw;
  filter: drop-shadow(0 0 30px rgba(255,69,0,0.5));
}

.hero-sub {
  font-family: var(--font-editorial);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}
.hero-sub strong {
  color: var(--orange-fire);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

/* COUNTDOWN --------------------------------------------------------------- */

.countdown {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 1rem 0 2.5rem;
  padding: 1rem 1.6rem 0.8rem;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--orange-fire);
  position: relative;
}
.countdown::before,
.countdown::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--sulfur);
}
.countdown::before { top: -5px; left: -5px; border-right: 0; border-bottom: 0; }
.countdown::after  { bottom: -5px; right: -5px; border-left: 0; border-top: 0; }

.cd-cell {
  display: flex; flex-direction: column;
  align-items: center;
  min-width: 76px;
}

.cd-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  color: var(--sulfur);
  line-height: 0.95;
  text-shadow: 0 0 20px rgba(255,176,0,0.4);
  font-variant-numeric: tabular-nums;
}

.cd-lbl {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--amber);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  color: var(--orange-fire);
  line-height: 0.95;
  align-self: flex-start;
  animation: blink 1.1s infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.25; }
}

/* CTA principal ----------------------------------------------------------- */

.cta {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.cta-main {
  background: var(--orange-fire);
  color: #000;
  padding: 1.2rem 3.2rem 0.9rem;
  border: 2px solid #000;
  transition: transform 0.15s ease, background 0.15s ease;
}
.cta-main::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(0,0,0,0.6);
  pointer-events: none;
}

.cta-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-stub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  margin-top: 0.4rem;
  opacity: 0.85;
}

.cta-main:hover {
  background: var(--sulfur);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.8);
}

.hero-scrollhint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  pointer-events: none;
}
.scrollhint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  4% { opacity: 0.93; }
  6% { opacity: 1; }
  9% { opacity: 0.96; }
  12% { opacity: 1; }
  60% { opacity: 0.98; }
  62% { opacity: 0.85; }
  64% { opacity: 1; }
  82% { opacity: 0.95; }
  84% { opacity: 1; }
}

/* ==========================================================================
   TICKER HORIZONTAL
   ========================================================================== */

.ticker {
  background: var(--orange-fire);
  color: #000;
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  position: relative;
  z-index: 5;
  transform: rotate(-0.6deg);
  margin: -0.8rem 0 2rem;
  width: 102%;
  margin-left: -1%;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickH 42s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: max-content;
  will-change: transform;
}
.ticker-track span { padding: 0 0.6rem; display: inline-block; }
.ticker-track span:nth-child(odd) { color: #000; }
.ticker-track span:nth-child(even) { color: var(--paper); }

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

/* ==========================================================================
   SEC MARKER
   ========================================================================== */

.sec-marker {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--amber);
  padding: 0 1.5rem;
  margin: 3rem auto 2rem;
  max-width: 1400px;
  text-transform: uppercase;
}
.sec-marker-num { color: var(--orange-fire); font-weight: 700; }
.sec-marker.light { color: var(--sulfur); }
.sec-marker.light .sec-marker-num { color: var(--amber); }

/* ==========================================================================
   LINEUP
   ========================================================================== */

.lineup {
  background: var(--black);
  padding: 1rem 0 5rem;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 1200px;
}

.lineup::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 60%, rgba(255,69,0,0.06) 0%, transparent 60%);
}

.lineup-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  grid-template-areas:
    "lb kn"
    "vb vb";
  gap: 1.5rem;
  padding: 0 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.band-card {
  position: relative;
  border: 1px solid var(--sepia);
  padding: 3rem 2rem 2.5rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #0a0300 0%, #000 100%);
  overflow: hidden;
  transition: border-color 0.3s;
}
.band-card:hover { border-color: var(--orange-fire); }

.band-card.lb { grid-area: lb; }
.band-card.kn { grid-area: kn; }
.band-card.vb {
  grid-area: vb;
  padding: 0;
  border: 0;
  min-height: 720px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.band-tag {
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--orange-fire);
  letter-spacing: 0.2em;
  z-index: 2;
  text-transform: uppercase;
}

.band-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0 1.5rem;
}

.band-logo {
  max-width: 80%;
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(255,69,0,0.4));
}

.kn-logo {
  filter: invert(1) drop-shadow(0 0 20px rgba(255,176,0,0.4));
}

.band-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 1rem;
  text-align: center;
}
.band-card.lb .band-name { color: var(--sulfur); }
.band-card.kn .band-name { color: var(--amber); }

.band-desc {
  font-family: 'Special Elite', cursive;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 100%;
}

/* Voodoo card ----------------------------------------------------------- */

.vb-photo {
  position: relative;
  width: 100%;
  height: 60%;
  min-height: 380px;
  overflow: hidden;
  background: #000;
}
.vb-photo > img:first-child {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}

.vb-logo {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 220px;
  width: 35%;
  min-width: 140px;
  z-index: 2;
}

.vb-text {
  position: relative;
  z-index: 2;
  background: #000;
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  flex: 1;
  border-top: 2px solid var(--orange-fire);
}

.vb-text-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vb-desc {
  color: rgba(255,255,255,0.85);
  text-transform: none;
  font-family: var(--font-editorial);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
  max-width: 700px;
}

.vb-tag {
  position: static;
  font-size: 0.65rem;
  color: var(--sulfur) !important;
  align-self: flex-start;
  white-space: nowrap;
  margin: 0;
}

/* ==========================================================================
   TVS CRT — carcaça + tela + scanlines + knobs
   ========================================================================== */

.tv {
  width: 280px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #232323 0%, #0a0a0a 100%);
  border-radius: 14px;
  padding: 16px 16px 22px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 0 0 2px #2c2c2c,
    0 14px 30px rgba(0,0,0,0.75),
    0 4px 0 #000;
  position: relative;
}

.tv::before {
  content: '';
  position: absolute;
  top: 6px; left: 14px;
  width: 30px; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  border-radius: 2px;
}

.tv-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #000;
  border-radius: 22% / 14%;
  overflow: hidden;
  box-shadow:
    inset 0 0 30px rgba(0,0,0,0.9),
    inset 0 2px 6px rgba(255,255,255,0.05);
  animation: tv-flicker 4s infinite;
}

/* Scanlines */
.tv-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.3) 0,
    rgba(0,0,0,0.3) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 2;
}

/* Vinheta interna + reflexo */
.tv-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.65) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 30%);
  pointer-events: none;
  z-index: 3;
}

.tv-screen video,
.tv-screen canvas,
.tv-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.15) saturate(1.2) brightness(0.92);
}

.tv-overlay-text {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: #ff3030;
  background: rgba(0,0,0,0.65);
  padding: 0.2rem 0.5rem;
  z-index: 4;
  animation: blink 1.1s infinite;
  font-weight: 700;
  text-transform: uppercase;
}

.tv-knobs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.tv-knob {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6a6a6a 0%, #1a1a1a 70%);
  border: 1px solid #000;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.1);
}

.tv-video {
  margin: 1.8rem auto 0;
  width: 260px;
}

@keyframes tv-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.97; }
  52% { opacity: 1; }
  97% { opacity: 0.94; }
  98% { opacity: 1; }
}

/* ==========================================================================
   DJS
   ========================================================================== */

.djs {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.djs-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform;
}
.djs-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.85) contrast(1.1);
}

.djs-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.djs-text {
  position: relative;
}

.djs-text-bg {
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  border-left: 4px solid var(--orange-fire);
}

.djs-text .sec-marker {
  padding: 0;
  margin: 0 0 2rem;
  max-width: none;
}

.djs-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 7.5rem);
  line-height: 0.85;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  text-shadow: 0 0 30px rgba(0,0,0,0.85);
}

.djs-title .djs-1 { color: var(--sulfur); display: block; }
.djs-title .djs-2 { color: #fff; display: block; }
.djs-title .djs-amp {
  display: inline-block;
  color: var(--orange-fire);
  font-family: var(--font-editorial);
  text-transform: lowercase;
  font-size: 0.55em;
  margin: -0.15em 0;
  padding: 0 0.1em;
  vertical-align: middle;
}

.djs-sub {
  font-family: 'Special Elite', cursive;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: var(--amber);
  letter-spacing: 0.18em;
  max-width: 540px;
  line-height: 1.7;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0,0,0,0.9);
}

.djs-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.djs-photo img {
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  filter: drop-shadow(8px 8px 0 rgba(0,0,0,0.65));
}

/* ==========================================================================
   INFO
   ========================================================================== */

.info {
  background: var(--sepia-deep);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
    transparent 0, transparent 39px,
    rgba(0,0,0,0.18) 39px, rgba(0,0,0,0.18) 40px);
  pointer-events: none;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

.info-left { text-align: center; }

.gargula-logo {
  max-width: 300px;
  width: 100%;
}

.info-tag {
  font-family: var(--font-editorial);
  color: var(--amber);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

/* TICKET ------------------------------------------------------------------ */

.ticket {
  background: var(--paper);
  color: #000;
  padding: 2.2rem 2.4rem 1.8rem;
  border: 2px solid #000;
  box-shadow: 16px 16px 0 var(--orange-fire);
  position: relative;
  transform: rotate(-0.6deg);
  transition: transform 0.3s ease;
  will-change: transform;
}

.ticket::before {
  content: '';
  position: absolute;
  top: 50%; left: -2px;
  width: 16px; height: 16px;
  background: var(--sepia-deep);
  border: 2px solid #000;
  border-radius: 50%;
  transform: translateY(-50%);
}
.ticket::after {
  content: '';
  position: absolute;
  top: 50%; right: -2px;
  width: 16px; height: 16px;
  background: var(--sepia-deep);
  border: 2px solid #000;
  border-radius: 50%;
  transform: translateY(-50%);
}

.ticket-perf {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px dashed #000;
  text-transform: uppercase;
}
.perf-r { color: var(--orange-fire); font-weight: 700; }

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.3);
}
.ticket-row:last-of-type { border-bottom: 0; }

.ticket-lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
}

.ticket-val {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ticket-val.highlight { color: var(--orange-fire); }

.ticket-barcode {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 2px dashed #000;
}

.ticket-barcode svg {
  width: 100%;
  height: 42px;
  color: #000;
  display: block;
}

.barcode-num {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  margin-top: 0.5rem;
  letter-spacing: 0.25em;
}

/* ==========================================================================
   MANIFESTO
   ========================================================================== */

.manifesto {
  background: var(--paper);
  color: #000;
  padding: 7rem 1.5rem;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 1000px;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 50%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}

.manifesto::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(0,0,0,0.15);
  pointer-events: none;
}

.manifesto-stamp {
  position: absolute;
  top: 7%;
  right: 6%;
  width: 200px; height: 200px;
  border: 4px solid var(--orange-fire);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-14deg);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.05;
  color: var(--orange-fire);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.manifesto-stamp span {
  font-family: var(--font-editorial);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  text-transform: lowercase;
}
.manifesto-stamp::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--orange-fire);
  border-radius: 50%;
}

.manifesto-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--orange-fire);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 700;
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.manifesto-title em {
  font-family: var(--font-editorial);
  text-transform: lowercase;
  color: var(--orange-fire);
  letter-spacing: -0.02em;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-family: var(--font-editorial);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.65;
  color: #1a1a1a;
  max-width: 700px;
}

.manifesto-body .lead {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.manifesto-body .lead::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  float: left;
  line-height: 0.85;
  margin: 0.1em 0.12em 0 -0.05em;
  color: var(--orange-fire);
}

.manifesto-cta {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase;
  color: var(--orange-fire);
  letter-spacing: 0.03em;
  margin-top: 1rem;
  border-left: 4px solid var(--orange-fire);
  padding: 0.8rem 1.5rem;
  text-align: left;
}

.manifesto-sig {
  font-family: var(--font-editorial);
  margin-top: 2.5rem;
  font-size: 1.1rem;
  color: #444;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: #000;
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  border-top: 1px solid var(--sepia);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

.footer-logo {
  max-width: 220px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 20px rgba(255,69,0,0.4));
  display: block;
}

.footer p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--amber);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.footer-sub {
  color: rgba(255,122,0,0.55) !important;
  font-family: var(--font-editorial) !important;
  text-transform: lowercase !important;
  letter-spacing: 0.05em !important;
  font-size: 0.95rem !important;
  margin-top: 1rem !important;
}

.footer-credit {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--sulfur);
  margin-top: 1.5rem;
  text-transform: uppercase;
}
.footer-credit a {
  color: var(--sulfur);
  text-decoration: none;
  border-bottom: 1px dashed var(--orange-fire);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-credit a:hover {
  color: var(--orange-fire);
  border-bottom-color: var(--amber);
}

/* ==========================================================================
   VMARQUEE
   ========================================================================== */

.vmarquee {
  position: fixed;
  right: 0; top: 0;
  width: 46px;
  height: 100vh;
  background: var(--amber);
  color: #000;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  border-left: 2px solid #000;
}

.vmarquee-track {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  animation: tickV 48s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  will-change: transform;
}

.vmarquee-track span {
  padding: 1.4rem 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

@keyframes tickV {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

/* ==========================================================================
   STICKY CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  right: 60px;
  bottom: 1.5rem;
  z-index: 200;
  background: var(--orange-fire);
  color: #000;
  text-decoration: none;
  padding: 0.9rem 1.5rem 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  border: 2px solid #000;
  box-shadow: 5px 5px 0 var(--sulfur);
  transition: background 0.15s ease, transform 0.15s ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.sticky-cta span { font-size: 0.8rem; margin-bottom: 0.2rem; }
.sticky-cta strong { font-size: 1.7rem; font-weight: 400; }

.sticky-cta:hover {
  background: var(--sulfur);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--orange-fire);
}

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   GLITCH HOVER
   ========================================================================== */

.cta-main:hover {
  animation: glitchShake 0.4s ease;
}
@keyframes glitchShake {
  0%   { transform: translate(-3px, -3px); }
  20%  { transform: translate(-5px, -2px); }
  40%  { transform: translate(-2px, -4px); }
  60%  { transform: translate(-4px, -3px); }
  80%  { transform: translate(-3px, -5px); }
  100% { transform: translate(-3px, -3px); }
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 1366px) {
  /* Topbar mais compacto */
  .topbar {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    padding: 0.7rem 1rem;
  }

  /* Hero logo menor */
  .hero-logo { max-width: 460px; }

  /* Countdown mais compacto */
  .countdown { gap: 0.3rem; padding: 0.9rem 1.3rem 0.7rem; }
  .cd-cell { min-width: 62px; }

  /* Sec-marker (// LINEUP / TRÊS ATOS etc) */
  .sec-marker {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    padding: 0 1rem;
  }

  /* Lineup mais compacto */
  .lineup-grid {
    max-width: 1200px;
    gap: 1rem;
  }
  .band-card {
    padding: 2.2rem 1.5rem;
    min-height: 360px;
  }
  .band-logo { max-height: 150px; }

  /* vb-text mais compacto + TVs menores */
  .vb-text {
    padding: 1.5rem 1.8rem;
    gap: 1.4rem;
  }
  .tv { width: 240px; }
  .tv-video {
    width: 220px;
    margin-top: 1.4rem;
  }

  /* DJS mais compacto */
  .djs-grid { padding: 4rem 2rem; gap: 2rem; }
  .djs-photo img { max-width: 440px; max-height: 70vh; }
  .djs-title { font-size: clamp(2.6rem, 6vw, 6rem); }

  /* Info mais compacto */
  .info { padding: 4rem 1.5rem; }
  .info-grid {
    max-width: 1180px;
    gap: 2.5rem;
  }
  .gargula-logo { max-width: 240px; }
  .info-tag {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    letter-spacing: 0;
  }

  /* Manifesto um pouco mais compacto */
  .manifesto { padding: 5rem 1.5rem; }
  .manifesto-stamp {
    width: 160px;
    height: 160px;
    font-size: 1.2rem;
  }
  .manifesto-stamp span { font-size: 0.8rem; }
  .manifesto-title { font-size: clamp(2.6rem, 7.5vw, 5.5rem); }

  /* vmarquee mais fina */
  .vmarquee { width: 36px; }
  .vmarquee-track { font-size: 1rem; }

  /* Sticky CTA mais discreto */
  .sticky-cta {
    right: 48px;
    bottom: 1rem;
    padding: 0.7rem 1.1rem 0.6rem;
  }
  .sticky-cta strong { font-size: 1.4rem; }
}

@media (max-width: 1024px) {
  .lineup-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "lb" "kn" "vb";
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .djs-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 2rem;
  }
  .djs-text-bg { padding: 2rem; }
  .djs-photo img { max-height: 60vh; }
}

@media (max-width: 700px) {
  .topbar { grid-template-columns: 1fr 1fr; font-size: 0.6rem; }
  .topbar-c { display: none; }
  .hero-title { font-size: 3.5rem; gap: 0; }
  .hero-title em { font-size: 0.95em; }
  .countdown { padding: 0.7rem 0.9rem 0.5rem; gap: 0.15rem; }
  .cd-cell { min-width: 56px; }
  .cd-lbl { font-size: 0.55rem; }
  .band-card.vb { min-height: 600px; }
  .vb-photo { min-height: 320px; }
  .vb-photo > img:first-child { object-fit: contain; }
  .vb-text { flex-direction: column; align-items: stretch; padding: 1.5rem; gap: 1.2rem; }
  .vb-logo { max-width: 160px; left: 1rem; bottom: 1rem; }
  .vb-desc { font-size: 0.95rem; }
  .tv { width: 220px; margin: 0 auto; }
  .tv-video { width: 220px; }
  .manifesto-stamp {
    width: 130px; height: 130px;
    font-size: 0.95rem;
    top: 4%; right: 4%;
  }
  .manifesto-stamp span { font-size: 0.7rem; }
  .manifesto { padding: 5rem 1rem; }
  .manifesto-body .lead::first-letter { font-size: 4em; }
  .ticket { transform: rotate(0); box-shadow: 10px 10px 0 var(--orange-fire); }
  .vmarquee { width: 30px; }
  .vmarquee-track { font-size: 0.8rem; }
  .sticky-cta { right: 40px; bottom: 1rem; padding: 0.6rem 1rem; }
  .sticky-cta strong { font-size: 1.3rem; }
  .info-grid { gap: 2.5rem; }
  .djs-grid { padding: 3rem 1.5rem; }
  .djs-text-bg { padding: 1.5rem; border-left-width: 3px; }
  .djs-title { font-size: 3rem; }
  .djs-photo img { max-width: 80vw; }
}

@media (max-width: 480px) {
  .vmarquee { display: none; }
  .sticky-cta { right: 1rem; bottom: 1rem; }
  .hero-content { padding-top: 6rem; }
  .hero-eyebrow { font-size: 0.6rem; }
  .hero-logo { width: 80vw; }
  .footer p { font-size: 0.6rem; letter-spacing: 0.15em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
