/* =====================================================
   BDNB – 5 Anos | style.css  (redesign completo 2026)
   Referências: Rolling Loud, Dreamville, Brooklyn Hip-Hop Fest,
                Awwwards nominees, brutalismo urbano/festival
   ===================================================== */

/* ─── Google Fonts ───────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ─── Fontes customizadas BDNB ───────────────────────── */
@font-face {
  font-family: titulo;
  src: url('./fonts/SPRAY-BRUSH.ttf') format('truetype');
  font-weight: lighter; font-style: normal; font-display: swap;
}
@font-face {
  font-family: subTitulo;
  src: url('./fonts/sprayvetica-33third.ttf') format('truetype');
  font-weight: lighter; font-style: normal; font-display: swap;
}
@font-face {
  font-family: texto;
  src: url('./fonts/FranklinGothic.ttf') format('truetype');
  font-weight: lighter; font-style: normal; font-display: swap;
}

/* ─── Design System: Variáveis ───────────────────────── */
:root {
  /* ── Identidade Visual ────────────────────────────────── */
  --vermelho:      #bc1026;          /* Vermelho ID */
  --vermelho-dk:   #951120;          /* Vermelho escuro (hover/sombra) */
  --azul:          #19138f;          /* Azul ID */
  --azul-dk:       #130e6e;          /* Azul escuro (hover/sombra) */
  --cinza-id:      #272727;          /* Cinza ID – superfície principal */
  --cinza-claro:   #cacaca;          /* Cinza claro ID – textos secundários */

  /* ── Neutros ──────────────────────────────────────────── */
  --preto:         #0a0a0a;          /* Fundo mais escuro */
  --preto-soft:    #111111;          /* Fundo levemente mais claro */
  --cinza-dk:      #1a1a1a;          /* Cards / áreas internas */
  --cinza-mid:     #272727;          /* = cinza-id, superfícies elevadas */
  --cinza:         #cacaca;          /* = cinza-claro, texto secundário */
  --branco:        #ffffff;

  /* ── Superfícies glass ────────────────────────────────── */
  --glass:         rgba(255,255,255,0.04);
  --glass-border:  rgba(202,202,202,0.10);  /* cinza-claro com alpha */
  --glass-hover:   rgba(255,255,255,0.07);
  --overlay:       rgba(10,10,10,0.82);

  /* Tipografia */
  --font-display:  'Poppins', sans-serif;
  --font-sub:      'Poppins', sans-serif;
  --font-body:     'Poppins', sans-serif;

  /* Layout */
  --container:     75%;
  --container-max: 1120px;
  --sec-pad:       96px;
  --sec-pad-sm:    60px;

  /* Transições */
  --t-fast:  0.15s ease;
  --t-base:  0.3s ease;
  --t-slow:  0.55s cubic-bezier(0.16,1,0.3,1);

  /* Raios */
  --r-sm:    6px;
  --r-md:    12px;
  --r-lg:    24px;
  --r-pill:  100px;

  /* Legado – mantido para compatibilidade com JS existente */
  --destaque:         var(--cinza-claro);
  --fundo-card:       rgba(0,0,0,0.6);
  --lineup-width:     810px;
  --menu-width:       800px;
  --lineup-tab:       100px;
  --transition-base:  var(--t-base);
  --transition-slide: var(--t-slow);
  --radius-pill:      var(--r-pill);
  --radius-sm:        var(--r-sm);
}

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

/* ─── Base ───────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--preto);
  color: var(--branco);
  font-size: 17px;
  font-family: var(--font-body);
  position: relative;
  overflow-x: hidden;
}

/* Noise overlay – atmosfera granulada de festival */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

h1 { font-family: var(--font-display); }
h2 { font-family: var(--font-sub); }
a  { text-decoration: none; color: inherit; }
img { display: block; }

/* ─── Utilitários ────────────────────────────────────── */
.container {
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ─── Heading de seção ───────────────────────────────── */
.sec-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--branco);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 48px;
}

.sec-heading::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--vermelho);
  border-radius: 2px;
}

.sec-heading--blue::after { background: var(--azul); }

/* ─── Top Bar ────────────────────────────────────────── */
.topBar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 700;
  padding: 18px 30px 18px calc(var(--lineup-tab) + 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t-base), backdrop-filter var(--t-base);
  pointer-events: none;
}

.topBar.scrolled {
  background: rgba(8,8,8,0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topBar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--branco);
  pointer-events: auto;
  line-height: 1;
}


/* ─── Overlay (sombra) ───────────────────────────────── */
.sombra {
  width: 100%;
  height: 100dvh;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--overlay);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: none;
  cursor: pointer;
}

.sombra.active { display: block; }

/* ─── LineUp – aba lateral ───────────────────────────── */
.lineUp {
  height: 100dvh;
  width: var(--lineup-tab);
  background: var(--preto-soft);
  transition: width var(--transition-slide);
  cursor: pointer;
  position: fixed;
  left: 0; top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.lineUp img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity var(--t-base);
}

.lineUp:hover img { opacity: 0.85; }

.lineUp .textoLine {
  position: absolute;
  background: var(--vermelho);
  transform: rotate(270deg);
  padding: 10px 0;
  text-align: center;
  border-radius: var(--r-pill);
  width: 140px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  transition: background var(--t-base);
  pointer-events: none;
  color: var(--branco);
}

.lineUp:hover .textoLine,
.lineUp:focus .textoLine { background: var(--vermelho); color: var(--branco); }
.lineUp:focus { outline: 2px solid var(--vermelho); outline-offset: -2px; }

/* ─── LineUp – painel deslizante ─────────────────────── */
.lineUpOption {
  height: 100dvh;
  width: var(--lineup-width);
  max-width: 86%;
  position: fixed;
  top: 0;
  z-index: 750;
  transition: left var(--transition-slide);
  left: -900px;
}

.lineUpOption.active { left: 0; }

.lineUpOptionBloco {
  width: 100%; height: 100%;
  background: var(--preto-soft);
  overflow-y: scroll;
  position: relative;
  scrollbar-width: none;
  border-right: 1px solid var(--glass-border);
}

.lineUpOptionBloco::-webkit-scrollbar { width: 0; }

/* Grid de thumbnails: sempre 3 colunas */
.lineupCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

/* Container dos detalhes — não ocupa espaço no flow */
.lineupDetails { display: contents; }

/* ─── Card artista ───────────────────────────────────── */
.lineupCards .card {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #7A2C00 0%, #C4570C 38%, #8B3800 68%, #2E1000 100%);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.lineupCards .card .nome {
  width: 100%; height: 100%;
  position: absolute;
  top: 0; left: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
  opacity: 1;               /* nome sempre visível */
  transition: opacity var(--t-base);
}

.lineupCards .card:hover .nome { background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.1) 60%); }

.lineupCards .card .nome h3 {
  font-family: var(--font-display);
  color: var(--branco);
  font-weight: 600;
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.lineupCards .card .imgCard {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.lineupCards .card:hover .imgCard {
  transform: scale(1.06);
  filter: grayscale(0%);
}

/* ─── Fechar LineUp (xmark) ──────────────────────────── */
.lineUpOption .xmark {
  width: 52px;
  position: absolute;
  left: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: var(--branco);
  padding: 10px 14px;
  border-radius: 50%;
  fill: var(--preto);
  transition: background var(--t-fast), transform var(--t-fast);
}

.lineUpOption .xmark:hover {
  background: var(--vermelho);
  transform: translateY(-50%) scale(1.08);
}

.lineUpOption .xmark:focus { outline: 2px solid var(--vermelho); }

/* ─── Card aberto (detalhe do MC) ────────────────────── */
.cardOpen {
  position: fixed;
  left: 0; top: 0;
  width: 0; height: 100dvh;
  background: #0e0e0e;
  z-index: 760;         /* acima do lineUpOption (750) */
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  opacity: 0;
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.2s ease, visibility 0.2s ease;
  color: var(--branco);
  scrollbar-width: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}

.cardOpen::-webkit-scrollbar { width: 0; }

.cardOpen.visivel,
.cardOpen.active {
  visibility: visible;
  opacity: 1;
  /* mesma largura máxima do painel lineup */
  width: min(var(--lineup-width), 86vw);
}

/* ── Foto hero ─────────────────────────────────────────── */
.cardOpen .imgCardOpen-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
  background: linear-gradient(160deg, #7A2C00 0%, #C4570C 38%, #8B3800 68%, #2E1000 100%);
  position: relative;
  overflow: hidden;
}

.cardOpen .imgCardOpen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: absolute;
  inset: 0;
}

/* ── Conteúdo abaixo da foto ───────────────────────────── */
.cardOpen-body {
  padding: 28px 28px 48px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Linha vermelha de acento acima do nome */
.cardOpen-body::before {
  content: '';
  display: block;
  width: 40px; height: 3px;
  background: var(--vermelho);
  border-radius: 2px;
  margin-bottom: 16px;
}

.cardOpen h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--branco);
}

.cardOpen p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  flex: 1;
}

/* ── Botão Instagram ───────────────────────────────────── */
.cardOpen-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--branco);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
  align-self: flex-start;
}

.cardOpen-ig:hover {
  background: var(--vermelho);
  border-color: var(--vermelho);
}

.cardOpen-ig svg {
  width: 18px; height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ─── Header do painel de detalhe ────────────────────── */
.cardOpen-header {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background: #0e0e0e;
  z-index: 10;
}

/* ─── Botão "voltar" ──────────────────────────────────── */
.cardClose {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--branco);
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-pill);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: var(--font-body);
}

.cardClose:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

.cardClose svg {
  width: 14px; height: 14px;
  fill: var(--branco);
  flex-shrink: 0;
}

/* ─── Foto clicável no detalhe do artista ────────────── */
.imgCardOpen {
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}
.imgCardOpen:hover { opacity: 0.88; }

/* ─── Lightbox ───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0,0,0,0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: zoom-out;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90dvh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
}

.lightbox.active img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  color: var(--branco);
  font-size: 1.3rem;
  line-height: 1;
}

.lightbox-close:hover { background: var(--vermelho); border-color: var(--vermelho); }

/* ─── Menu lateral direito ───────────────────────────── */
.menu {
  width: var(--menu-width);
  height: 100dvh;
  background: var(--preto-soft);
  position: fixed;
  right: calc(-1 * var(--menu-width));
  top: 0;
  transition: right var(--transition-slide);
  z-index: 100;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.menu.active { right: 0; }

.menu .navigation {
  position: relative; width: 100%;
  padding: 40px 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.menu .navigation ul {
  list-style: none;
  padding-top: 60px;
}

.menu .navigation ul li {
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.menu .navigation ul li:first-child { border-top: 1px solid rgba(255,255,255,0.05); }

.navItem {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  color: var(--branco);
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 0;
  display: block;
  text-transform: uppercase;
  transition: color var(--t-fast), padding-left var(--t-fast);
  line-height: 1.1;
}

.navItem:hover,
.navItem:focus {
  color: var(--cinza-claro);
  padding-left: 8px;
  outline: none;
}

.menu .navigation .redes {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.menu .navigation .redes img { height: 44px; object-fit: contain; opacity: 0.9; }
.menu .navigation .redes svg { fill: var(--branco); transition: fill var(--t-fast); }
.menu .navigation .redes a:hover svg { fill: var(--vermelho); }

/* ─── Ícone Instagram ────────────────────────────────── */
.insta { width: 26px; display: inline-block; }
.insta:hover { fill: var(--vermelho); }

/* ─── Hambúrguer ──────────────────────────────────────── */
.menuBg {
  width: 50px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  background: transparent;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  z-index: 801;
}

input[type="checkbox"] {
  appearance: none; display: none; visibility: hidden;
}

.bar {
  display: block;
  position: relative;
  cursor: pointer;
  width: 38px; height: 30px;
  pointer-events: auto;
  z-index: 801;
}

.bar span {
  position: absolute;
  width: 38px; height: 5px;
  background: var(--branco);
  border-radius: 100px;
  display: inline-block;
  transition: var(--t-base);
  left: 0;
}

.bar span.top    { top: 0; }
.bar span.middle { top: 12px; }
.bar span.bottom { bottom: 0; }

input[type]:checked ~ span.top {
  transform: rotate(35deg);
  transform-origin: top left;
  width: 42px; left: 5px;
}

input[type]:checked ~ span.bottom {
  transform: rotate(-35deg);
  transform-origin: top left;
  width: 42px; bottom: -1px;
}

input[type]:checked ~ span.middle {
  transform: translateX(-20px);
  opacity: 0;
}

/* ─── Hero / Swiper ──────────────────────────────────── */
header {
  width: 100%;
  height: 100dvh;
  min-height: -webkit-fill-available; /* iOS Safari */
  background: var(--preto);
  position: relative;
  overflow: hidden;
}

header .swiper { width: 100%; height: 100%; }

header .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--preto);
}

header .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Suave para o rosto das fotos aparecer, escurece com o gradient CSS */
  filter: brightness(0.55) saturate(0.85);
}

/*
 * Gradiente principal — estilo pôster cinematográfico.
 * Topo transparente (foto respira), base muito escura (texto legível).
 */
header::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0)    0%,
      rgba(8,8,8,0.05) 20%,
      rgba(8,8,8,0.55) 55%,
      rgba(8,8,8,0.93) 82%,
      var(--preto)     100%
    ),
    linear-gradient(to right,
      rgba(8,8,8,0.5) 0%,
      transparent 50%
    );
  z-index: 2;
  pointer-events: none;
}

/* ─── Conteúdo hero ──────────────────────────────────── */
.heroContent {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* padding-left considera a largura da aba de LineUp (--lineup-tab = 100px) + folga */
  padding: 72px 6% 48px calc(var(--lineup-tab) + 28px);
  pointer-events: none;
}

/* Logo: ocupa o espaço central — ancora visual da regra dos terços */
.heroLogoWrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroLogo {
  width: 420px;
  max-width: 58vw;
  object-fit: contain;
  user-select: none;
  filter: drop-shadow(0 6px 36px rgba(0,0,0,0.65));
  animation: heroFadeDown 1.1s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Barra inferior: info + CTA (Z-pattern: bottom-left → bottom-right) */
.heroBottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
  animation: heroFadeUp 1.1s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}

/* ─── Info lateral esquerda ──────────────────────────── */
.heroInfo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.heroLabel {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vermelho);
  display: block;
  margin-bottom: 2px;
}

.heroEdition {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 5.5vw, 4rem);
  font-weight: 800;
  margin: 0;
  padding: 0;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--branco);
  text-transform: uppercase;
  margin: 0;
}

.heroMeta {
  display: flex;
  align-items: center;
  gap: 6px 0;
  margin-top: 10px;
  flex-wrap: nowrap;
}

.heroMeta span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Separador gerado via CSS — nunca fica orphão numa linha */
.heroMeta span + span::before {
  content: '·';
  margin: 0 10px;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 600px) {
  /* Centraliza tudo em coluna no mobile */
  .heroBottom {
    flex-direction: column;
    align-items: center !important;
    gap: 18px;
    text-align: center;
  }
  .heroInfo {
    align-items: center;
    width: 100%;
  }
  .heroLabel {
    text-align: center;
  }
  .heroEdition {
    text-align: center;
  }

  /* Data e local em linhas separadas, centralizadas, sem separador */
  .heroMeta {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
  }
  .heroMeta span + span::before {
    display: none;
  }
  .heroMeta span {
    white-space: normal;
    text-align: center;
  }
}

/* ─── CTA ────────────────────────────────────────────── */
.heroCta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vermelho);
  color: var(--branco);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 4px 20px rgba(228,29,33,0.4);
}

.heroCta:hover {
  background: #c9181c;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(228,29,33,0.55);
}

/* ─── Scroll indicator ───────────────────────────────── */
.heroScroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  animation: heroFadeUp 1s 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

.heroScrollLine {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1)   translateY(0); }
  50%       { opacity: 0.9; transform: scaleY(1.1) translateY(4px); }
}

/* ─── Header data do evento (legado – mantido) ───────── */
.heroBadge { display: none; }
.headerData { display: none; }

/* ─── Marquee Strip ──────────────────────────────────── */
.marqueeStrip {
  width: 100%;
  background: var(--vermelho);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marqueeTrack {
  display: flex;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  animation: marqueeScroll 26s linear infinite;
}

.marqueeTrack:hover { animation-play-state: paused; }

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

.marqueeItem {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--branco);
  padding: 0 24px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marqueeItem--sep {
  color: rgba(255,255,255,0.4);
  padding: 0 4px;
}

/* ─── Main wrapper ───────────────────────────────────── */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: var(--preto);
}

/* ─── Seção genérica ─────────────────────────────────── */
.sec {
  width: 100%;
  padding: var(--sec-pad) 0;
}

.sec-inner {
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ─── Alternância de fundo ───────────────────────────── */
.sec--dark  { background: var(--preto); }
.sec--soft  { background: var(--preto-soft); }
.sec--red   { background: var(--vermelho); }
.sec--blue  { background: var(--azul); }

/* ─── Divider diagonal ───────────────────────────────── */
.sec-divider {
  width: 100%;
  height: 60px;
  background: var(--vermelho);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  margin-top: -1px;
}

/* ─── Seção: Info Evento ─────────────────────────────── */
.resumoBloco {
  width: 100%;
  background: var(--preto-soft);
  padding: var(--sec-pad) 0;
  position: relative;
  overflow: hidden;
}

.resumoBloco::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./imagens/fundo-textura.png') center;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}

.resumoBloco .resumo {
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: var(--branco);
}

.resumoBloco .resumo > h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  text-transform: uppercase;
}

.resumoBloco .resumo > h3::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 0;
  width: 48px; height: 3px;
  background: var(--vermelho); border-radius: 2px;
}

/* ─── Stats bar (Info Evento) ────────────────────────── */
.eventStats {
  display: flex;
  margin-bottom: 44px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
}

.statItem {
  flex: 1;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  border-right: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
  transition: background var(--t-fast);
}

.statItem:last-child { border-right: none; }
.statItem:hover { background: rgba(255,255,255,0.055); }

.statNum {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--branco);
  line-height: 1;
  text-transform: uppercase;
}

.statLabel {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.resumoProjeto {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  max-width: 680px;
  text-transform: none;
}

.resumoDatas {
  width: 100%;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}

.resumoDatas h2 { font-size: 1.6rem; font-family: var(--font-body); }
.resumoDatas h3 { font-size: 1.2rem; font-family: var(--font-body); }

.resumoDias {
  width: 300px; max-width: 100%;
  display: flex;
  justify-content: space-between;
}

.resumoDias h2, .resumoDias h3, .resumoDias p {
  margin: 0; padding: 0; font-weight: 100;
}
.resumoDias h2 { font-size: 2rem; }
.resumoDias h3 { padding: 5px 0 10px; }

/* ─── Confira / YouTube ──────────────────────────────── */
.confira {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding-top: 32px;
  padding-bottom: 0;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--branco);
  text-transform: uppercase;
}

.confiraVideo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--r-md);
  overflow: hidden;
}

.confiraVideo iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--r-md);
}

/* ─── Barra separadora pontilhada ────────────────────── */
.barra {
  display: inline-block;
  width: 2px; height: 140px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.35) 4px,
    transparent 4px, transparent 12px
  );
}

/* ─── Seção: Programação ─────────────────────────────── */
.programacaoBloco {
  width: 100%;
  background: var(--cinza-dk);
  padding: var(--sec-pad) 0;
  position: relative;
  overflow: hidden;
}

.programacaoBloco::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./imagens/fundo-textura.png') center;
  background-size: contain;
  opacity: 0.07;
  pointer-events: none;
}

/* Faixa lateral vermelha decorativa */
.programacaoBloco::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--vermelho), transparent);
}

.programacao {
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.programacao > h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--branco);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 56px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
}

.programacao > h3::after {
  content: '';
  position: absolute;
  bottom: -14px; left: 0;
  width: 52px; height: 3px;
  background: var(--vermelho); border-radius: 2px;
}

/* ─── Programação: header row ────────────────────────── */
.programacaoHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* Quando h3 está dentro do header, o margin-bottom vem do pai */
.programacaoHeader > h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--branco);
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  margin-bottom: 0;
}

.programacaoHeader > h3::after {
  content: '';
  position: absolute;
  bottom: -14px; left: 0;
  width: 52px; height: 3px;
  background: var(--vermelho); border-radius: 2px;
}

.programacaoBadge {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  align-self: center;
  margin-bottom: 14px;
}

/* ─── Timeline ───────────────────────────────────────── */
.scheduleTimeline {
  width: 100%;
  padding: 4px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timelineItem {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: stretch;
  gap: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}

/* Coluna do horário */
.timelineTime {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}

/* Remove o dot — layout novo não usa */
.timelineDot { display: none; }

/* Card do artista */
.timelineCard {
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: none;
  transition: background var(--t-fast), border-color var(--t-fast);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
}

.timelineItem:hover .timelineCard {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}

/* Borda esquerda vermelha na coluna de horário no hover */
.timelineItem:hover .timelineTime {
  border-right-color: var(--vermelho);
  color: rgba(255,255,255,0.75);
}

.timelineArtist {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--branco);
  line-height: 1.2;
  display: block;
  flex: 1;
}

.timelineBadge {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── Seção: Parceiros ───────────────────────────────── */
.parceirosBloco {
  width: 100%;
  background: var(--preto);
  padding: var(--sec-pad) 0;
  position: relative;
}

.parceirosBloco .parceiros {
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;  /* centraliza tudo */
  text-transform: uppercase;
}

.parceiros-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}

.parceirosBloco .parceiros > h3,
.parceiros-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  color: var(--branco);
}

.parceirosBloco .parceiros > h3::after,
.parceiros-header h3::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 0;
  width: 48px; height: 3px;
  background: var(--vermelho); border-radius: 2px;
}

/* Descrição abaixo do título */
.parceiros-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 22px;
}

.secaoTitulo { width: 100%; margin-bottom: 0; }

/* ─── Grid de logos — colunas configuráveis via --partner-cols ── */
.parceiroLogos {
  display: grid;
  grid-template-columns: repeat(var(--partner-cols, 4), 1fr);
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-top: 52px;
}

.parceiroItem {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  position: relative;
  transition: background 0.2s ease;
  cursor: default;
}

.parceiroItem:hover { background: rgba(255,255,255,0.03); }

/* Separador vertical sutil entre logos */
.parceiroItem::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
.parceiroItem:first-child::before { display: none; }

.parceiroItem img {
  max-height: 48px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
  user-select: none;
}

.parceiroItem:hover img {
  transform: scale(1.2);
}

/* Logo largo (is_wide) pode ser mais largo */
.parceiroItem--wide img {
  max-width: 180px;
  max-height: 40px;
}

/* ─── Seção: Instagram ───────────────────────────────── */
.faqBloco {
  width: 100%;
  background: var(--preto-soft);
  padding: var(--sec-pad) 0;
}

.faqBloco .faq {
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
  text-transform: uppercase;
}

.faqBloco .faq > h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  color: var(--branco);
}

.faqBloco .faq > h3::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 0;
  width: 48px; height: 3px;
  background: var(--azul); border-radius: 2px;
}

.destaqueInsta {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 16px;
}

.destaqueInsta blockquote {
  max-width: 100% !important;
  aspect-ratio: 1/1;
}

/* ─── Overlay de Manutenção ─────────────────────────── */
.maintenanceOverlay {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--preto);
  gap: 20px;
}
.maintenanceOverlay .maint-icon {
  font-size: 3rem;
  opacity: 0.5;
}
.maintenanceOverlay .maint-msg {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--branco);
  letter-spacing: -0.01em;
  max-width: 500px;
}
.maintenanceOverlay .maint-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  max-width: 400px;
}

/* ─── Seção: Contato ─────────────────────────────────── */
.contatoBloco {
  width: 100%;
  background: var(--cinza-dk);
  padding: var(--sec-pad) 0;
  position: relative;
}

.contatoBloco .contato {
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-bottom: 20px;
}

.contatoBloco .contato > h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  color: var(--branco);
  text-transform: uppercase;
}

.contatoBloco .contato > h3::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 0;
  width: 48px; height: 3px;
  background: var(--vermelho); border-radius: 2px;
}

.contatoBloco hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contatoBoxTexto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
}

.contatoBoxTexto p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}

.dados {
  background: var(--vermelho);
  color: var(--branco);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}

.dados--branco { background: transparent; color: var(--branco); padding: 0; }

/* ─── Seção: Registros ───────────────────────────────── */
.registroBloco {
  width: 100%;
  background: var(--preto);
  padding: var(--sec-pad) 0;
}

.registroBloco .registro {
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.registroBloco .registro > h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  color: var(--branco);
}

.registroBloco .registro > h3::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 0;
  width: 48px; height: 3px;
  background: var(--azul); border-radius: 2px;
}

.registroBloco .registro p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.registroBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.registroBox a { color: var(--branco); }

.registroBox a .linkRegistro {
  width: 100%; height: 58px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: var(--r-md);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-fast);
}

.registroBox a:hover .linkRegistro {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateX(4px);
}

.registroBox a .linkRegistro img {
  width: 22px;
  margin: 0 20px;
  opacity: 0.7;
}

.registroBox a .linkRegistro p {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}

/* ─── Footer ─────────────────────────────────────────── */
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--preto);
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 6% 40px;
  gap: 40px;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--vermelho), var(--azul));
}

/* ─── Linha superior: logo + social ────────────── */
.footerTop {
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footerContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

footer .footerContent img {
  width: 320px;
  max-width: 56vw;
  object-fit: contain;
  opacity: 0.9;
}

.footerMeta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footerData {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.footerLocal {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footerSocial {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.footerSocial:hover {
  color: var(--branco);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}

footer .footerCredits {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  width: 100%;
  max-width: var(--container-max);
  text-align: center;
}

footer .footerCredits a:hover { color: rgba(255,255,255,0.55); }

/* ─── Scroll Reveal ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger container */
[data-stagger] .stagger-item {
  opacity: 0;
  transform: translateY(28px) scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--stagger-index, 0) * 80ms);
}

[data-stagger].stagger-active .stagger-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ─── Header: data do evento (legado – mantido) ───────── */
.headerData {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  background: rgba(0,0,0,0.45);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ─── Media Queries ──────────────────────────────────── */
@media (max-width: 1100px) {
  .resumoBloco .resumo .resumoDatas h2 { font-size: 1.8em; }
  .resumoBloco .resumo .resumoDatas h3 { font-size: 1.4em; }
  .resumoBloco .resumo .resumoDatas .resumoDias {
    width: 300px; max-width: 100%;
    flex-direction: column; padding-top: 30px;
  }
  .barra {
    margin-top: 20px;
    width: 100%; height: 2px;
    background: repeating-linear-gradient(
      to right, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.35) 4px,
      transparent 4px, transparent 12px
    );
  }
  .destaqueInsta { flex-direction: column; justify-content: center; align-items: center; }
}

/* Lineup: 2 colunas em telas menores onde o painel ocupa 100% */
@media (max-width: 600px) {
  .lineupCards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 930px) {
  footer .footerContent img { width: 60%; }

  .resumoBloco .resumo,
  .programacao,
  .parceirosBloco .parceiros,
  .faqBloco .faq,
  .contatoBloco .contato,
  .registroBloco .registro { width: 90%; }

  .menu { max-width: 78%; z-index: 88; }

  .lineUp { display: none; }
  .topBar { padding-left: 24px; }

  .lineUpOption { width: 100%; max-width: 100%; }
  .lineUpOption .xmark {
    position: fixed;
    left: auto; right: 16px; top: 16px;
    transform: none;
    width: 44px; padding: 8px 10px; z-index: 300;
  }
}

@media (max-width: 765px) {
  .lineupCards { grid-template-columns: repeat(2, 1fr); }

  .resumoBloco .resumo > h3,
  .programacao > h3,
  .parceirosBloco .parceiros > h3,
  .faqBloco .faq > h3,
  .contatoBloco .contato > h3,
  .registroBloco .registro > h3 { font-size: 1.7rem; }

  .contatoBoxTexto { flex-direction: column; align-items: flex-start; }
  .contatoBoxTexto .dados { margin-top: 8px; }
}

@media (max-width: 688px) {
  .resumoBloco .resumo .resumoDatas { justify-content: center; align-items: center; }
}

@media (max-width: 500px) {
  :root { --sec-pad: 60px; }

  .menu { max-width: 100%; z-index: 88; }
  .bar { z-index: 801; }

  .lineUpOption { width: 100%; max-width: 100%; }
  .lineUpOption .xmark {
    width: 40px;
    position: absolute;
    left: 89%; top: 30px;
    transform: translateY(-50%);
    padding: 5px 8px; z-index: 200;
  }

  .parceiroLogos { margin-top: 36px; grid-template-columns: repeat(2, 1fr) !important; }
  .parceiroItem { padding: 22px 16px; }
  .parceiroItem img { max-height: 34px; max-width: 90px; }
  .parceiroItem--wide img { max-width: 130px; max-height: 28px; }

  /* Stats bar mobile: empilha em coluna */
  .eventStats { flex-direction: column; }
  .statItem { flex-direction: row; justify-content: flex-start; gap: 12px; padding: 14px 16px; }
  .statItem { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .statItem:last-child { border-bottom: none; }
  .statNum { font-size: 1.1rem; }
  .statLabel { font-size: 0.65rem; align-self: center; }

  /* Programação header mobile */
  .programacaoHeader { flex-direction: column; align-items: flex-start; gap: 12px; }
  .programacaoBadge { margin-bottom: 0; }

  /* Timeline mobile */
  .timelineItem { grid-template-columns: 72px 1fr; }
  .timelineTime { font-size: 0.6rem; }
  .timelineArtist { font-size: 0.85rem; }
  .timelineBadge { display: none; }
  .timelineCard { padding: 12px 14px; min-height: 52px; }

  /* Footer mobile — centralizado */
  .footerTop { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  .footerContent { align-items: center; }
  footer .footerContent img { max-width: 60vw; }
  footer .footerSocial { justify-content: center; }
  footer .footerBottom { text-align: center; }

  .programacao > h3 { font-size: 1.6rem; }
  .heroContent { padding: 64px 5% 44px 5%; }
  .heroLogo { max-width: 72vw; }
  .heroEdition { font-size: 1.7rem; }
  .heroCta { padding: 12px 20px; font-size: 0.72rem; }
  .heroBottom { gap: 14px; }
  .heroLabel { font-size: 0.6rem; }

  .navItem { font-size: 2rem; padding: 8px 0; }
  .menu .navigation { padding: 40px 28px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
  .marqueeTrack { animation: none; }
}
