/* ========================================================================
   HYPE.CSS — visual mais limpo, focado nos assets da marca Porão
   ======================================================================== */

:root {
  --yellow: #FED514;
  --yellow-bright: #FFE640;
  --blue: #061FFF;
  --blue-electric: #3D52FF;
  --blue-deep: #0414B8;
  --black: #0A0A0A;
  --off-white: #F5F5F0;
  --font-display: 'MeltowSan Handmade', 'Bebas Neue', 'Impact', sans-serif;
}

/* ===== Aplica Meltow Marker Rust em todos os títulos ===== */
h1, h2, h3, h4,
.hero-title,
.section-title,
.section-title span,
.lineup-card-name,
.headliner-name,
.event-card-name,
.post-title,
.newsletter-title,
.combo-title,
.poster-festival-name,
.poster-artist,
.ticket-card-name,
.timeline-title,
.step-title,
.info-card-title,
.edition-detail-title,
.transport-title,
.pillar-title,
.player-track,
.navbar-logo-text {
  font-family: 'MeltowSan Handmade', 'Bebas Neue', 'Impact', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em;
}

/* Números (contadores, anos) ficam mais cleanos com Bebas */
.counter-number,
.hero-stat-number,
.about-badge-number,
.edition-year,
.edition-detail-year,
.headliner-number,
.step-number,
.ticket-card-price {
  font-family: 'Bebas Neue', 'Impact', sans-serif !important;
}

/* ===== SELECTION ===== */
::selection { background: var(--yellow); color: var(--black); }

/* ===== GLOBAL — clean background ===== */
body {
  background: #0A0A0A;
}

/* Pattern de "porao" como textura sutil em algumas seções (NÃO global) */
.porao-pattern-bg {
  position: relative;
}
.porao-pattern-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/porao-pattern.png');
  background-repeat: repeat;
  background-size: 480px auto;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
.porao-pattern-bg > * { position: relative; z-index: 1; }

/* ===== NAVBAR — clean ===== */
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(254, 213, 20, 0.15);
  box-shadow: none;
}

.navbar-logo-icon {
  background: var(--yellow);
  box-shadow: none;
  animation: none;
  transform: none;
  font-style: normal;
  border-radius: 0;
}

.navbar-logo-text {
  text-shadow: none;
}
.navbar-logo-text span { color: var(--yellow); }

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
  box-shadow: none;
}

/* ===== HERO — limpo, brand-first ===== */
.hero {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background: #0A0A0A;
}

.hero-bg-texture {
  background: none;
}

.hero::before, .hero::after { display: none; }

/* Burst amarelo grande de fundo no hero */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  background: transparent;
  border: 1px solid rgba(254, 213, 20, 0.4);
  backdrop-filter: none;
  border-radius: 0;
}
.hero-eyebrow::before { display: none; }

/* TÍTULO - limpo, sem glitch ou shadows duplas */
.hero-title {
  font-size: clamp(5rem, 16vw, 14rem) !important;
  line-height: 0.85 !important;
  letter-spacing: -0.02em !important;
  font-weight: 400;
  position: relative;
}

.hero-title .yellow {
  color: var(--yellow);
  text-shadow: none;
  display: inline-block;
  animation: none;
}
.hero-title .outline {
  -webkit-text-stroke: 2px var(--yellow) !important;
  color: transparent !important;
  font-style: normal;
}
.hero-title .blue {
  color: var(--off-white);
  text-shadow: none;
  display: inline-block;
  transform: none;
}

/* Marquee amarelo simples */
.hero-band-strip {
  background: var(--yellow);
  padding: 14px 0;
  border: none;
  transform: none;
  margin: 0;
  box-shadow: none;
}
.band-strip-inner {
  animation-duration: 30s !important;
}
.band-strip-inner span {
  font-size: 1.1rem !important;
  font-weight: 700;
  font-style: normal;
  color: var(--black);
}

/* Stats cards — limpo */
.hero-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  border-radius: 0;
}
.hero-stat-card::before { display: none; }
.hero-stat-card:hover {
  background: rgba(254, 213, 20, 0.06);
  border-color: rgba(254, 213, 20, 0.3);
}
.hero-stat-number {
  background: none;
  -webkit-text-fill-color: var(--yellow);
  color: var(--yellow);
}

/* ===== SECTION TITLES — limpo ===== */
.section-title {
  position: relative;
  font-weight: 400;
  letter-spacing: -0.01em !important;
  line-height: 0.95 !important;
}
.section-title span {
  color: var(--yellow);
  font-style: normal;
  position: relative;
  display: inline-block;
}
.section-title span::after { display: none; }

.section-label::before {
  background: var(--yellow);
  height: 2px;
  width: 40px;
}

/* ===== BUTTONS — clean ===== */
.btn {
  position: relative;
  overflow: hidden;
  padding: 14px 32px !important;
  text-transform: uppercase;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  border-radius: 0;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: none;
  border: 2px solid var(--yellow);
  transition: all 0.2s !important;
}
.btn-primary:hover {
  background: transparent !important;
  color: var(--yellow) !important;
  box-shadow: none !important;
  transform: none !important;
}

.btn-outline {
  border: 2px solid var(--off-white) !important;
  color: var(--off-white) !important;
  background: transparent !important;
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--off-white) !important;
  color: var(--black) !important;
  box-shadow: none !important;
  transform: none !important;
}

.btn-blue {
  background: var(--blue) !important;
  box-shadow: none;
  border: 2px solid var(--blue);
  color: white;
}
.btn-blue:hover {
  background: transparent !important;
  color: var(--blue-electric) !important;
  border-color: var(--blue-electric) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ===== COUNTER SECTION — yellow clean ===== */
.counter-section {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
  padding: 70px 0 !important;
  transform: none;
  margin: 0;
  box-shadow: none;
  border: none;
}
.counter-section::before { display: none; }
.counter-grid { transform: none; }
.counter-item {
  background: transparent;
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.counter-item:last-child { border-right: none; }
.counter-number {
  font-size: clamp(3.5rem, 6vw, 5.5rem) !important;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
}
.counter-label {
  font-weight: 700;
  color: var(--black) !important;
  opacity: 0.7;
}

/* ===== LINEUP CARDS — limpos ===== */
.lineup-grid { gap: 2px; }
.lineup-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.35s;
}
.lineup-card:hover {
  border-color: var(--yellow);
  box-shadow: none;
  transform: translateY(-4px);
  z-index: 5;
}
.lineup-card-placeholder {
  background:
    linear-gradient(135deg, #141414 0%, #0a0a0a 100%) !important;
  font-size: 0 !important;
  position: relative;
}
.lineup-card-placeholder::after { display: none; }
.lineup-card-placeholder[data-band]::before {
  content: attr(data-band);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  color: rgba(254, 213, 20, 0.08);
  text-align: center;
  padding: 16px;
  text-transform: uppercase;
}

/* ===== Lineup card com FOTO real da banda ===== */
.lineup-card-placeholder.has-photo {
  background: #0A0A0A !important;
  padding: 0 !important;
  overflow: hidden;
}
.lineup-card-placeholder.has-photo::before {
  display: none !important;
}
.lineup-band-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(0.7) saturate(1.1);
  transition: filter 0.5s, transform 0.6s;
}
.lineup-card:hover .lineup-band-photo {
  filter: grayscale(0%) brightness(0.9) saturate(1.2);
  transform: scale(1.05);
}

/* ===== Event card com foto real — SEM BORDA, preenche tudo ===== */
.event-card-img.has-photo {
  overflow: hidden;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.event-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  filter: brightness(0.78) saturate(1.1);
  transition: filter 0.4s, transform 0.5s;
  border: none;
  border-radius: 0;
}
.event-card:hover .event-card-photo {
  filter: brightness(0.92) saturate(1.2);
  transform: scale(1.05);
}
.event-card-img.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,10,10,0.65) 0%,
    transparent 55%,
    rgba(10,10,10,0.2) 100%);
  z-index: 1;
  pointer-events: none;
}
.event-card-img.has-photo[data-label]::after { content: ''; }
.event-card-img.has-photo::before { content: none !important; display: none !important; }
.event-card-img.has-photo .event-card-status {
  z-index: 2;
  position: absolute;
}

/* Garante que o card pai não corte com radius nem padding */
.event-card:has(.has-photo) {
  border-radius: 0 !important;
  padding: 0 !important;
}
.event-card:has(.has-photo) .event-card-img {
  margin: 0 !important;
  padding: 0 !important;
}
.about-image-block:has(.about-image-photo) {
  padding: 0 !important;
  margin: 0 !important;
}
/* Anula o radius do about-image-main quando virar foto */
.about-image-main.about-image-photo {
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
}

/* ===== About bloco com foto real — moldura gradiente DIVERTIDA ===== */
.about-image-photo {
  background: linear-gradient(135deg,
    var(--yellow) 0%,
    var(--yellow-bright) 30%,
    var(--blue-electric) 70%,
    var(--blue) 100%) !important;
  background-size: 200% 200%;
  animation: gradient-shift 6s ease-in-out infinite;
  font-size: 0 !important;
  overflow: visible !important;
  position: relative;
  border: none !important;
  border-radius: 0 !important;
  padding: 10px !important;
  margin: 0 !important;
  box-shadow:
    -8px 8px 0 var(--blue),
    8px -8px 0 var(--yellow),
    0 0 60px rgba(254, 213, 20, 0.25),
    0 0 80px rgba(6, 31, 255, 0.2);
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Cantos decorativos da moldura */
.about-image-photo::before {
  content: '+' !important;
  display: block !important;
  position: absolute;
  top: -18px;
  left: -18px;
  width: 28px;
  height: 28px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-align: center;
  line-height: 28px;
  z-index: 4;
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--blue);
  animation: corner-spin 8s linear infinite;
}
@keyframes corner-spin {
  to { transform: rotate(360deg); }
}

.about-image-block {
  position: relative;
}
.about-image-block::after {
  content: '✦';
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  line-height: 36px;
  z-index: 4;
  border: 2px solid var(--black);
  box-shadow: -3px -3px 0 var(--yellow);
  animation: corner-spin 10s linear infinite reverse;
  pointer-events: none;
}
.about-image-photo::before { content: none !important; display: none !important; }
.about-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
  filter: brightness(0.9) saturate(1.1);
  transition: filter 0.4s, transform 0.6s;
  border: none;
  border-radius: 0;
}
.about-image-photo:hover img {
  filter: brightness(1.05) saturate(1.2);
  transform: scale(1.03);
}
.about-image-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    transparent 60%,
    rgba(254, 213, 20, 0.06) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ===== Event card placeholders (sem emoji) ===== */
.event-card-img {
  position: relative;
}
.event-card-img[data-label]::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  letter-spacing: 0.04em;
  color: rgba(254, 213, 20, 0.1);
  text-align: center;
  padding: 16px;
  text-transform: uppercase;
  pointer-events: none;
}
.lineup-card-overlay {
  background: linear-gradient(to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    transparent 80%) !important;
}
.lineup-card-name {
  font-style: normal;
  text-shadow: none;
  font-size: 1.8rem !important;
}
.lineup-card--featured .lineup-card-name {
  font-size: 3.2rem !important;
  text-shadow: none;
}
.lineup-card-day {
  background: var(--yellow);
  color: var(--black) !important;
  display: inline-block;
  padding: 4px 10px;
  font-weight: 700;
  width: fit-content;
}
.lineup-card-tag {
  background: var(--yellow);
  color: var(--black);
  box-shadow: none;
  font-weight: 700;
  transform: none;
}

/* ===== ABOUT SECTION ===== */
.about-image-main {
  background: #141414;
  border: none;
  font-size: 6rem !important;
  position: relative;
  overflow: hidden;
}
.about-image-main::before { display: none; }
.about-image-accent {
  background: var(--yellow) !important;
  box-shadow: none;
}
.about-badge {
  background: var(--yellow) !important;
  color: var(--black);
  transform: none;
  box-shadow: none;
  border: none;
}
.about-badge-number, .about-badge-text { color: var(--black) !important; }

.about-feature-icon {
  background: rgba(254, 213, 20, 0.1) !important;
  color: var(--yellow) !important;
  border: 1px solid rgba(254, 213, 20, 0.3);
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* ===== SCHEDULE ===== */
.schedule-tabs {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
.schedule-tab.active {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
}
.schedule-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding: 16px 12px !important;
}
.schedule-row:hover {
  background: rgba(254, 213, 20, 0.03) !important;
  border-left: 2px solid var(--yellow);
  padding-left: 16px !important;
}
.schedule-time {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  background: transparent;
  color: var(--yellow) !important;
  padding: 0;
  text-align: left;
  letter-spacing: 0.05em;
}
.schedule-artist {
  font-style: normal;
  font-size: 1.5rem !important;
}
.stage-name {
  font-size: 1.1rem !important;
  color: var(--yellow);
  border-bottom: 1px solid rgba(254, 213, 20, 0.3) !important;
  padding-bottom: 12px !important;
  text-shadow: none;
}

/* ===== TICKETS ===== */
.ticket-option {
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background: #141414 !important;
  position: relative;
  overflow: hidden;
}
.ticket-option::before { display: none; }
.ticket-option:hover {
  border-color: var(--yellow) !important;
  transform: none;
}
.ticket-option.featured {
  border-color: var(--yellow) !important;
  background: rgba(254, 213, 20, 0.04) !important;
}
.ticket-option-amount {
  font-style: normal;
  text-shadow: none;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: #0F0F0F;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(254, 213, 20, 0.15);
  border-bottom: 1px solid rgba(254, 213, 20, 0.15);
}
.newsletter-section::before { display: none; }
.newsletter-title {
  font-size: 2.5rem !important;
  font-style: normal;
}
.newsletter-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.newsletter-input:focus {
  border-color: var(--yellow) !important;
  box-shadow: none;
}

/* ===== FOOTER ===== */
footer {
  background: #050505;
  border-top: 1px solid rgba(254, 213, 20, 0.15);
  position: relative;
}
footer::before { display: none; }
.social-link {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.2s !important;
}
.social-link:hover {
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--black) !important;
  transform: none;
  box-shadow: none;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: #0A0A0A;
}
.page-hero::after {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent) !important;
}

/* ===== INFO CARDS ===== */
.info-card {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  position: relative;
  overflow: hidden;
}
.info-card::before { display: none; }
.info-card:hover {
  border-color: var(--yellow) !important;
  transform: translateY(-2px);
  box-shadow: none;
}
.info-card-icon {
  background: rgba(254, 213, 20, 0.1) !important;
  border: 1px solid rgba(254, 213, 20, 0.25) !important;
  color: var(--yellow) !important;
  box-shadow: none;
}

/* ===== ARTIST CARDS ===== */
.artist-card {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.artist-card:hover {
  border-color: var(--yellow) !important;
  transform: translateY(-4px);
  box-shadow: none;
}
.artist-card-img {
  background: #1A1A1A !important;
  font-size: 3rem !important;
}
.artist-name {
  font-style: normal;
  font-size: 1.2rem !important;
}
.artist-day {
  background: rgba(254, 213, 20, 0.1);
  color: var(--yellow) !important;
  display: inline-block;
  padding: 2px 8px;
  width: fit-content;
}

/* ===== POST CARDS ===== */
.post-card {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.post-card:hover {
  transform: translateY(-3px) !important;
  border-color: var(--yellow) !important;
  box-shadow: none;
}
.post-image {
  background: #1A1A1A !important;
}
.post-category {
  background: var(--yellow) !important;
  color: var(--black) !important;
  box-shadow: none;
  transform: none;
  font-weight: 700 !important;
}
.post-title { font-style: normal; }
.post-read-more { font-weight: 700 !important; }

/* ===== STEP CARDS ===== */
.step-card {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.step-card:hover {
  border-color: var(--yellow) !important;
  transform: translateY(-3px);
  box-shadow: none;
}
.step-icon {
  background: var(--yellow) !important;
  color: var(--black) !important;
  border: none;
  box-shadow: none;
}
.step-number {
  font-size: 6rem !important;
  color: rgba(254, 213, 20, 0.06) !important;
  font-style: normal;
}
.step-title {
  font-style: normal;
  font-size: 1.4rem !important;
}

/* ===== TICKET FULL CARDS ===== */
.ticket-full-card {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.ticket-full-card:hover {
  border-color: var(--yellow) !important;
  transform: translateY(-6px) !important;
  box-shadow: none;
}
.ticket-full-card.featured {
  border-color: var(--yellow) !important;
  background: rgba(254, 213, 20, 0.04) !important;
  box-shadow: none;
}
.ticket-card-name {
  font-style: normal;
  font-size: 2.2rem !important;
  text-shadow: none;
}
.ticket-card-price {
  font-style: normal;
  font-size: 4rem !important;
}
.featured-badge {
  box-shadow: none;
  border: none;
  transform: translateX(-50%);
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: var(--yellow);
  border-bottom: none;
}
.urgency-bar::before { display: none; }

/* ===== POSTER STYLE LINEUP ===== */
.poster-style-lineup {
  background: #0F0F0F;
}
.poster-inner {
  border: 1px solid rgba(254, 213, 20, 0.25) !important;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: none;
}
.poster-festival-name {
  font-style: normal;
  text-shadow: none;
  font-weight: 400;
}
.poster-artist:hover {
  transform: scale(1.04);
  color: var(--yellow) !important;
}
.poster-artist.tier1 {
  font-style: normal;
  text-shadow: none;
}

/* ===== HEADLINER ROW ===== */
.headliner-img {
  background: #1A1A1A !important;
  border: none;
  box-shadow: none;
}
.headliner-name {
  font-style: normal;
  text-shadow: none;
}
.headliner-day-label {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 4px 12px;
  font-weight: 700;
}

/* ===== TIMELINE ===== */
.timeline-dot {
  box-shadow: 0 0 0 3px var(--black);
}
.timeline-title {
  font-style: normal;
  font-size: 1.4rem !important;
}

/* ===== PRIZE GRID ===== */
.prize-card.highlight {
  background: var(--yellow) !important;
  position: relative;
  z-index: 2;
  transform: none;
  border: none;
  box-shadow: none;
}
.prize-reward {
  font-style: normal;
  font-size: 2rem !important;
}

/* ===== FORM ===== */
.inscricao-form {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--yellow) !important;
  box-shadow: none;
}

/* ===== HEROES (inner pages) ===== */
.seletivas-hero, .blog-hero, .tickets-hero {
  background: #0A0A0A !important;
}
.seletivas-hero::before { display: none; }

/* ===== TRANSPORT CARDS ===== */
.transport-card {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.transport-card:hover {
  border-color: var(--yellow) !important;
  box-shadow: none;
  transform: translateY(-2px);
}
.transport-icon {
  background: rgba(254, 213, 20, 0.1) !important;
  color: var(--yellow) !important;
  border: 1px solid rgba(254, 213, 20, 0.25) !important;
  box-shadow: none;
}

/* ===== PILLAR CARDS ===== */
.pillar-card {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.pillar-card:hover {
  border-color: var(--yellow) !important;
  box-shadow: none;
  transform: translateY(-2px);
}
.pillar-title { font-style: normal; }

/* ===== CONTACT CARDS ===== */
.contact-card {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.contact-card:hover {
  border-color: var(--yellow) !important;
  transform: translateY(-2px);
  box-shadow: none;
}

/* ===== FAQ ===== */
.faq-item.open .faq-icon {
  background: var(--yellow) !important;
  box-shadow: none;
}

/* ===== SIDEBAR WIDGETS ===== */
.sidebar-widget {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.sidebar-widget h4 {
  color: var(--yellow) !important;
  border-bottom: 1px solid rgba(254, 213, 20, 0.2) !important;
}

/* ===== COMBO CARD ===== */
.combo-card {
  background: #141414 !important;
  border: 1px solid var(--yellow) !important;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.combo-card::before { display: none; }
.combo-title { font-style: normal; text-shadow: none; }
.combo-new-price { font-style: normal; text-shadow: none; }

/* ===== TABS NAV ===== */
.tab-nav-btn.active {
  background: var(--yellow);
  color: var(--black) !important;
  border-bottom-color: var(--yellow) !important;
  font-weight: 700;
}

/* ===== FILTER BAR ===== */
.filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-weight: 700 !important;
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--yellow) !important;
  color: var(--black) !important;
  border-color: var(--yellow) !important;
  box-shadow: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  background: #0A0A0A !important;
  border-left: 1px solid var(--yellow) !important;
}
.mobile-menu a {
  font-size: 2rem !important;
  font-style: normal;
}

/* ===== MARQUEE DECOR ===== */
.marquee-decor {
  background: var(--yellow);
  border: none;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.marquee-decor-inner {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-decor span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--black);
  letter-spacing: 0.08em;
  font-style: normal;
}
.marquee-decor span:nth-child(even) { color: var(--black); opacity: 0.4; }

/* ===== BURST ASSETS (decorative shapes) ===== */
.burst-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}
.burst-decor img { width: 100%; height: auto; display: block; }

.burst-decor.top-right {
  top: 60px;
  right: -40px;
  width: 280px;
  transform: rotate(15deg);
}
.burst-decor.bottom-left {
  bottom: 40px;
  left: -60px;
  width: 240px;
  transform: rotate(-20deg);
}
.burst-decor.small {
  width: 120px;
}

/* ===== NAVBAR LOGO IMAGE (ribbon SVG) ===== */
.navbar-logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.25s, filter 0.25s;
  filter: drop-shadow(0 0 8px rgba(254, 213, 20, 0.25));
}
.navbar-logo:hover .navbar-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 14px rgba(254, 213, 20, 0.45));
}

/* hide old text/icon if present */
.navbar-logo .navbar-logo-icon,
.navbar-logo .navbar-logo-text { display: none; }

/* ===== HERO LOGO IMAGE (big ribbon) ===== */
.hero-logo-img {
  display: block;
  max-width: 760px;
  width: 85%;
  margin: 0 auto 32px;
  position: relative;
  animation: logo-drop 1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.hero-logo-img img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 40px rgba(254, 213, 20, 0.45))
    drop-shadow(0 0 80px rgba(254, 213, 20, 0.2));
}

@keyframes logo-drop {
  from { opacity: 0; transform: translateY(-40px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .navbar-logo-img { height: 36px; }
  .hero-logo-img { width: 90%; }
}

/* ===== HERO LOGO MARK (big centered) — old typed version ===== */
.hero-logo {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
}

.hero-content-centered {
  text-align: center;
  padding-top: 180px;
  padding-bottom: 140px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero-content-centered .hero-eyebrow {
  margin: 0 auto 64px;
  display: inline-flex;
}

@media (max-width: 768px) {
  .hero-content-centered {
    padding-top: 130px;
    padding-bottom: 80px;
  }
  .hero-content-centered .hero-eyebrow {
    margin-bottom: 36px;
  }
}

.hero-logo-mark {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 20rem);
  color: var(--yellow);
  line-height: 0.85;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: center;
  gap: clamp(2px, 0.5vw, 8px);
  margin-bottom: 24px;
  position: relative;
  text-shadow:
    0 0 60px rgba(254, 213, 20, 0.3),
    0 0 120px rgba(254, 213, 20, 0.15);
}

.hero-logo-mark .logo-letter {
  display: inline-block;
  animation: letter-drop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  transition: transform 0.3s, color 0.3s;
}
.hero-logo-mark .logo-letter:nth-child(1) { animation-delay: 0.1s; }
.hero-logo-mark .logo-letter:nth-child(2) { animation-delay: 0.2s; }
.hero-logo-mark .logo-letter:nth-child(3) { animation-delay: 0.3s; }
.hero-logo-mark .logo-letter:nth-child(4) { animation-delay: 0.4s; }
.hero-logo-mark .logo-letter:nth-child(5) { animation-delay: 0.5s; }

.hero-logo-mark .logo-letter:hover {
  color: var(--off-white);
  transform: translateY(-12px) rotate(-3deg);
}

@keyframes letter-drop {
  from {
    opacity: 0;
    transform: translateY(-100px) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.8rem);
  color: var(--off-white);
  letter-spacing: 0.6em;
  margin-bottom: 12px;
  padding-left: 0.6em;
  position: relative;
  animation: hero-rise 0.8s ease-out 0.7s backwards;
}
.hero-tagline::before,
.hero-tagline::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--yellow);
  vertical-align: middle;
  margin: 0 16px;
}

.hero-sub {
  max-width: 580px;
  margin: 40px auto 36px;
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.7;
  animation: hero-rise 0.8s ease-out 0.85s backwards;
}

.hero-content-centered .hero-actions {
  justify-content: center;
  animation: hero-rise 0.8s ease-out 1s backwards;
}

.hero-content-centered .hero-scroll {
  margin: 60px auto 0;
  justify-content: center;
  animation: hero-rise 0.8s ease-out 1.15s backwards;
}

/* ===== BURST CORNERS — animated decoration ===== */
.burst-corner {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.burst-corner img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 30px rgba(254, 213, 20, 0.25));
}

.burst-top-left {
  top: -40px;
  left: -160px;
  width: 420px;
  transform: rotate(-25deg);
  animation: float-burst-1 8s ease-in-out infinite, burst-in 1s ease-out 0.3s backwards;
}
.burst-top-right {
  top: -80px;
  right: -200px;
  width: 480px;
  transform: rotate(150deg);
  animation: float-burst-2 9s ease-in-out infinite, burst-in 1s ease-out 0.5s backwards;
}
.burst-bottom-right {
  bottom: -220px;
  right: -220px;
  width: 560px;
  transform: scaleX(-1) rotate(40deg);
  opacity: 0.75;
  animation: float-burst-3 7s ease-in-out infinite, burst-in 1s ease-out 0.7s backwards;
}

/* Máscara nas bordas pra esconder os contornos retos do PNG */
.burst-corner img {
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    rgba(0, 0, 0, 0.7) 55%,
    transparent 90%
  );
  mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    rgba(0, 0, 0, 0.7) 55%,
    transparent 90%
  );
}

/* Máscara CIRCULAR APERTADA só pro bottom-right — esconde TODAS as bordas retas */
.burst-bottom-right img {
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 0%,
    black 18%,
    rgba(0, 0, 0, 0.4) 35%,
    transparent 55%
  );
  mask-image: radial-gradient(
    circle at center,
    black 0%,
    black 18%,
    rgba(0, 0, 0, 0.4) 35%,
    transparent 55%
  );
}

@keyframes float-burst-1 {
  0%, 100% { transform: rotate(-25deg) translate(0, 0); }
  50% { transform: rotate(-22deg) translate(10px, -8px); }
}
@keyframes float-burst-2 {
  0%, 100% { transform: rotate(150deg) translate(0, 0); }
  50% { transform: rotate(155deg) translate(-12px, 10px); }
}
@keyframes float-burst-3 {
  0%, 100% { transform: scaleX(-1) rotate(40deg) translate(0, 0); }
  50% { transform: scaleX(-1) rotate(43deg) translate(-8px, -10px); }
}
@keyframes burst-in {
  from { opacity: 0; transform-origin: center; }
}

/* ===== HERO CENTER GLOW (subtle neon) ===== */
.hero-glow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vh;
  height: 90vh;
  max-width: 1000px;
  max-height: 1000px;
  background: radial-gradient(circle,
    rgba(254, 213, 20, 0.12) 0%,
    rgba(254, 213, 20, 0.06) 20%,
    transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* ===== Subtle neon back on yellow accents ===== */
.section-title span {
  text-shadow: 0 0 40px rgba(254, 213, 20, 0.25);
}

/* ===== AZUL ELÉTRICO como cor secundária ===== */

/* Section labels com sombra azul sutil */
.section-label {
  position: relative;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  margin-left: 12px;
  vertical-align: middle;
  box-shadow: 0 0 12px var(--blue);
}

/* Breadcrumb accent */
.breadcrumb a:hover { color: var(--blue-electric); }

/* Hero eyebrow agora com bordinha azul também */
.hero-eyebrow {
  border-color: rgba(254, 213, 20, 0.4);
  box-shadow:
    inset 0 0 0 0 var(--blue),
    0 0 30px rgba(6, 31, 255, 0.15);
}

/* Counter section — números com tracinho azul embaixo */
.counter-item {
  position: relative;
}
.counter-item::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--blue);
}

/* Stats cards no hero — accent azul */
.hero-stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.hero-stat-card { position: relative; overflow: hidden; }
.hero-stat-card:hover::after { transform: scaleX(1); }

/* Event cards — borda inferior azul no hover */
.event-card {
  position: relative;
  border-bottom: 3px solid transparent !important;
}
.event-card:hover {
  border-bottom-color: var(--blue) !important;
  box-shadow: 0 0 30px rgba(254, 213, 20, 0.12), 0 0 30px rgba(6, 31, 255, 0.18);
}
.event-card-status.upcoming {
  background: var(--yellow);
  color: var(--black);
}
.event-card-status:not(.upcoming) {
  background: var(--blue);
  color: var(--off-white);
}

/* ===== Event card teaser (em breve, sem info) ===== */
.event-card-teaser {
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s !important;
}
.event-card-teaser:hover {
  opacity: 1;
}
.event-card-teaser .event-card-date,
.event-card-teaser .event-card-city {
  color: rgba(254, 213, 20, 0.4) !important;
  letter-spacing: 0.4em;
  font-family: var(--font-display);
}
.event-card-teaser .event-card-name {
  color: rgba(245, 245, 240, 0.6);
}
.event-card-teaser:hover .event-card-name {
  color: var(--off-white);
}
.event-card-teaser .event-card-cta {
  color: rgba(254, 213, 20, 0.5);
}
.event-card-teaser .event-card-status {
  background: rgba(255, 255, 255, 0.05) !important;
  color: rgba(245, 245, 240, 0.4) !important;
  border: 1px solid rgba(254, 213, 20, 0.15);
}
.event-card-teaser .event-card-img::after {
  color: rgba(254, 213, 20, 0.04) !important;
}

/* Tags dos cards de lineup com azul */
.lineup-card-tag {
  background: var(--blue) !important;
  color: var(--off-white) !important;
}

/* Links do nav active com underline azul + amarelo */
.nav-links a:hover::after, .nav-links a.active::after {
  background: linear-gradient(90deg, var(--yellow) 0%, var(--blue-electric) 100%);
}

/* Botão outline ganha hover azul */
.btn-outline:hover {
  background: var(--blue) !important;
  color: var(--off-white) !important;
  border-color: var(--blue) !important;
}

/* Botão primary com sombra azul sutil */
.btn-primary {
  box-shadow:
    0 0 30px rgba(254, 213, 20, 0.2),
    4px 4px 0 var(--blue);
}
.btn-primary:hover {
  box-shadow:
    0 0 40px rgba(254, 213, 20, 0.35),
    2px 2px 0 var(--blue) !important;
  transform: translate(2px, 2px) !important;
}

/* Sticker NOVO! com sombra azul */
.floating-sticker.deco-new {
  box-shadow: 4px 4px 0 var(--blue);
}

/* Underline da tagline com gradiente */
.hero-tagline::before { background: var(--yellow); }
.hero-tagline::after { background: var(--blue); }

/* Glow central do hero — agora com mistura sutil amarelo+azul */
.hero-glow-center {
  background: radial-gradient(circle,
    rgba(254, 213, 20, 0.12) 0%,
    rgba(6, 31, 255, 0.08) 30%,
    rgba(254, 213, 20, 0.04) 50%,
    transparent 70%);
}

/* Page hero linha inferior bicolor */
.page-hero::after {
  background: linear-gradient(90deg, transparent, var(--yellow) 30%, var(--blue-electric) 50%, var(--yellow) 70%, transparent) !important;
}

/* Cards (lineup, post, step) — hover ganha sombra dupla amarela+azul */
.lineup-card:hover,
.post-card:hover,
.step-card:hover,
.info-card:hover,
.transport-card:hover,
.pillar-card:hover,
.contact-card:hover,
.artist-card:hover,
.ticket-full-card:hover {
  box-shadow:
    0 0 40px rgba(254, 213, 20, 0.12),
    0 8px 30px rgba(6, 31, 255, 0.15) !important;
}

/* Ticket option featured — borda gradiente */
.ticket-option.featured {
  border-color: var(--yellow) !important;
  background:
    linear-gradient(135deg, rgba(254, 213, 20, 0.06), rgba(6, 31, 255, 0.04)) !important;
}
.ticket-top-bar.gradient {
  background: linear-gradient(90deg, var(--yellow), var(--blue)) !important;
}

/* Newsletter section — borda gradiente */
.newsletter-section {
  border-top: 1px solid rgba(254, 213, 20, 0.15);
  border-bottom: 1px solid rgba(6, 31, 255, 0.25);
  background: linear-gradient(135deg, #0A0A0A 0%, #060B2E 50%, #0A0A0A 100%);
}
.newsletter-title span { color: var(--yellow); }
.newsletter-title { text-shadow: 0 0 30px rgba(6, 31, 255, 0.3); }

/* Tag-blue (já existia) — usa nosso azul agora */
.tag-blue {
  background: rgba(6, 31, 255, 0.18) !important;
  color: var(--blue-electric) !important;
  border: 1px solid rgba(6, 31, 255, 0.4) !important;
}
.headliner-tag.tag-blue { color: var(--blue-electric) !important; }

/* Schedule time — azul como background */
.schedule-time {
  color: var(--blue-electric) !important;
}

/* About badge — mistura amarela e azul */
.about-image-accent {
  background: var(--blue) !important;
}

/* Burst com tinta azul sutil no glow */
.burst-corner img {
  filter:
    drop-shadow(0 0 30px rgba(254, 213, 20, 0.25))
    drop-shadow(0 0 60px rgba(6, 31, 255, 0.1));
}

/* Marquee bordas (faixa principal) com sombra azul */
.hero-band-strip.strip-standalone {
  box-shadow:
    0 0 60px rgba(254, 213, 20, 0.25),
    0 0 100px rgba(6, 31, 255, 0.15);
}

/* Pulse rings também ganham um azul */
.pulse-rings::after {
  border-color: var(--blue-electric);
}

/* Sponsors regua — divisor azul */
.sponsors-wall::before {
  background: linear-gradient(90deg, var(--yellow), var(--blue));
  width: 160px;
}

/* Logo da navbar — glow misto */
.navbar-logo-img {
  filter:
    drop-shadow(0 0 8px rgba(254, 213, 20, 0.25))
    drop-shadow(0 0 4px rgba(6, 31, 255, 0.15));
}
.navbar-logo:hover .navbar-logo-img {
  filter:
    drop-shadow(0 0 14px rgba(254, 213, 20, 0.45))
    drop-shadow(0 0 8px rgba(6, 31, 255, 0.25));
}

/* Hero logo grande — mesmo tratamento */
.hero-logo-img img {
  filter:
    drop-shadow(0 0 40px rgba(254, 213, 20, 0.45))
    drop-shadow(0 0 80px rgba(254, 213, 20, 0.2))
    drop-shadow(0 0 120px rgba(6, 31, 255, 0.15));
}

/* Sticker AO VIVO — usa azul também */
.floating-sticker.deco-live {
  box-shadow: 4px 4px 0 var(--blue);
  border-color: var(--blue);
}

/* Edição rows na home — accent azul */
.edition-row:hover {
  background: rgba(6, 31, 255, 0.05);
  border-left: 2px solid var(--blue);
}
.edition-year {
  text-shadow: 0 0 30px rgba(6, 31, 255, 0.2);
}

.navbar-logo-icon {
  box-shadow: 0 0 16px rgba(254, 213, 20, 0.4);
}

.btn-primary {
  box-shadow: 0 0 30px rgba(254, 213, 20, 0.2);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(254, 213, 20, 0.35) !important;
}

.counter-number {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===== Marquee — slight glow ===== */
.hero-band-strip {
  box-shadow: 0 0 40px rgba(254, 213, 20, 0.2);
}

/* ===== Event cards — subtle neon on hover ===== */
.event-card:hover {
  box-shadow: 0 0 30px rgba(254, 213, 20, 0.12);
}

/* ===== Lineup cards — small glow ===== */
.lineup-card:hover {
  box-shadow: 0 0 40px rgba(254, 213, 20, 0.15);
}

/* ===== Hide hero stats sidebar on logo hero (use new layout) ===== */
.hero-logo .hero-stats {
  display: none;
}

/* ===== Reposition band-strip in logo hero ===== */
.hero-logo .hero-band-strip {
  position: relative;
  bottom: auto;
  margin-top: 80px;
}

/* ===== STANDALONE BAND STRIP (full width entre hero e sponsors) ===== */
.hero-band-strip.strip-standalone {
  position: relative;
  bottom: auto;
  left: 0;
  right: 0;
  width: 100%;
  padding: 18px 0;
  background: var(--yellow);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  box-shadow: 0 0 60px rgba(254, 213, 20, 0.25);
  z-index: 5;
}
.hero-band-strip.strip-standalone .band-strip-inner {
  animation-duration: 35s !important;
  gap: 56px;
}
.hero-band-strip.strip-standalone .band-strip-inner span {
  font-family: var(--font-display);
  font-size: 1.5rem !important;
  color: var(--black);
  letter-spacing: 0.08em;
  font-style: italic;
  font-weight: 700;
}
.hero-band-strip.strip-standalone .band-strip-separator {
  color: rgba(0,0,0,0.4) !important;
  font-style: normal !important;
}

@media (max-width: 768px) {
  .hero-band-strip.strip-standalone { padding: 12px 0; }
  .hero-band-strip.strip-standalone .band-strip-inner span {
    font-size: 1.1rem !important;
  }
}

/* ========================================================================
   ELEMENTOS ANIMADOS — "GIFs" feitos em CSS
   ======================================================================== */

/* ----- Sticker giratório (canto superior direito) ----- */
.spin-sticker {
  position: absolute;
  top: 120px;
  right: 80px;
  width: 130px;
  height: 130px;
  z-index: 10;
  pointer-events: none;
  animation: spin-slow 12s linear infinite;
}
.spin-sticker-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 4px var(--black),
    0 0 0 5px var(--yellow),
    0 0 40px rgba(254, 213, 20, 0.4);
}
.spin-sticker-text {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--black);
}
.spin-sticker-text span {
  position: absolute;
  left: 50%;
  top: 8px;
  transform-origin: 0 57px;
}
.spin-sticker-center {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--black);
  line-height: 0.85;
  text-align: center;
}
.spin-sticker-center .small {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 2px;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ----- Pulse rings (centralizado em um ponto) ----- */
.pulse-rings {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 3;
}
.pulse-rings::before,
.pulse-rings::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  opacity: 0;
  animation: pulse-ring 2.5s ease-out infinite;
}
.pulse-rings::after { animation-delay: 1.25s; }
@keyframes pulse-ring {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ----- Floating stickers (rock! / new! etc) ----- */
.floating-sticker {
  position: absolute;
  font-family: var(--font-display);
  background: var(--yellow);
  color: var(--black);
  padding: 8px 16px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  z-index: 4;
  pointer-events: none;
  box-shadow: 4px 4px 0 var(--black);
  border: 2px solid var(--black);
}
.floating-sticker.bounce {
  animation: bounce-sticker 3s ease-in-out infinite;
}
@keyframes bounce-sticker {
  0%, 100% { transform: rotate(var(--rot, -8deg)) translateY(0); }
  50% { transform: rotate(var(--rot, -8deg)) translateY(-12px); }
}

/* ----- Audio waveform bars ----- */
.waveform {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  vertical-align: middle;
}
.waveform .bar {
  width: 3px;
  background: var(--yellow);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}
.waveform .bar:nth-child(1) { animation-delay: 0s; height: 30%; }
.waveform .bar:nth-child(2) { animation-delay: 0.1s; height: 60%; }
.waveform .bar:nth-child(3) { animation-delay: 0.2s; height: 100%; }
.waveform .bar:nth-child(4) { animation-delay: 0.3s; height: 70%; }
.waveform .bar:nth-child(5) { animation-delay: 0.4s; height: 40%; }
.waveform .bar:nth-child(6) { animation-delay: 0.5s; height: 80%; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* ----- Lightning bolt floater ----- */
.lightning {
  position: absolute;
  font-size: 3rem;
  z-index: 3;
  pointer-events: none;
  color: var(--yellow);
  filter: drop-shadow(0 0 20px rgba(254, 213, 20, 0.5));
  animation: lightning-flash 4s ease-in-out infinite;
}
@keyframes lightning-flash {
  0%, 90%, 100% { opacity: 0.3; transform: rotate(0deg) scale(1); }
  92%, 95% { opacity: 1; transform: rotate(-5deg) scale(1.15); }
}

/* ----- Marching ants border ----- */
.marching-border {
  position: relative;
  overflow: hidden;
}
.marching-border::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--yellow) 50%, transparent 50%) top/20px 2px repeat-x,
    linear-gradient(90deg, var(--yellow) 50%, transparent 50%) bottom/20px 2px repeat-x,
    linear-gradient(0deg, var(--yellow) 50%, transparent 50%) left/2px 20px repeat-y,
    linear-gradient(0deg, var(--yellow) 50%, transparent 50%) right/2px 20px repeat-y;
  animation: marching 1s linear infinite;
}
@keyframes marching {
  to { background-position: 20px top, -20px bottom, left -20px, right 20px; }
}

/* ----- Hand horns (rock!) emoji bouncing ----- */
.rock-hand {
  position: absolute;
  font-size: 4rem;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(254, 213, 20, 0.3));
  animation: rock-shake 1.2s ease-in-out infinite;
}
@keyframes rock-shake {
  0%, 100% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg) scale(1.1); }
}

/* ----- Floating note ----- */
.floating-note {
  position: absolute;
  font-size: 2rem;
  pointer-events: none;
  z-index: 3;
  color: var(--yellow);
  opacity: 0.5;
  animation: float-note 6s ease-in-out infinite;
}
@keyframes float-note {
  0%, 100% { transform: translateY(0) rotate(-10deg); opacity: 0.3; }
  50% { transform: translateY(-30px) rotate(10deg); opacity: 0.7; }
}

/* ----- Glitch text accent ----- */
.glitch-accent {
  position: relative;
  display: inline-block;
}
.glitch-accent::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue-electric);
  z-index: -1;
  opacity: 0.7;
  animation: glitch-shift 3s infinite;
}
@keyframes glitch-shift {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 2px); }
  94% { transform: translate(3px, -2px); }
}

/* ----- Scrolling tape (vertical) ----- */
.tape-vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  background: var(--yellow);
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
}
.tape-vertical-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px 0;
  animation: tape-scroll 25s linear infinite;
}
.tape-vertical-inner span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--black);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
@keyframes tape-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

/* ----- Blinking cursor accent ----- */
.blink-cursor::after {
  content: '_';
  color: var(--yellow);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ----- Scanning line over hero ----- */
.hero-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  z-index: 4;
  pointer-events: none;
  opacity: 0.4;
  animation: scan 4s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { top: 0; }
  50% { top: 100%; }
}

/* ----- Animated stars (sparkles) ----- */
.sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 3;
}
.sparkle::before, .sparkle::after {
  content: '';
  position: absolute;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
}
.sparkle::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.sparkle::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}
.sparkle { animation: sparkle-twinkle 2s ease-in-out infinite; }
@keyframes sparkle-twinkle {
  0%, 100% { transform: scale(0.5) rotate(0deg); opacity: 0.4; }
  50% { transform: scale(1.2) rotate(45deg); opacity: 1; }
}

/* ----- Marquee diagonal (banner) ----- */
.diagonal-banner {
  position: absolute;
  background: var(--yellow);
  padding: 8px 80px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  z-index: 5;
  pointer-events: none;
}

/* ===== POSITIONING — Hero decorations ===== */
.hero-deco-lightning { top: 28%; left: 6%; animation-delay: 0s; }
.hero-deco-note-1 { top: 70%; right: 18%; }
.hero-deco-note-2 { top: 35%; right: 5%; animation-delay: 2s; }
.hero-deco-rock { bottom: 30%; left: 8%; }
.hero-deco-sparkle-1 { top: 25%; right: 30%; }
.hero-deco-sparkle-2 { bottom: 35%; left: 25%; animation-delay: 0.5s; }
.hero-deco-sparkle-3 { top: 60%; left: 12%; animation-delay: 1s; }

.floating-sticker.deco-new {
  top: 25%;
  left: 8%;
  --rot: -12deg;
  animation-delay: 0.5s;
}
.floating-sticker.deco-live {
  bottom: 30%;
  right: 8%;
  --rot: 8deg;
  background: var(--off-white);
  animation-delay: 1s;
}
.floating-sticker.deco-live::before {
  content: '● ';
  color: #ff3333;
  animation: blink 1s infinite;
}

/* ===== Sticker giratório responsive ===== */
@media (max-width: 1024px) {
  .spin-sticker { width: 100px; height: 100px; right: 40px; top: 100px; }
  .spin-sticker-center { font-size: 1.2rem; }
}
@media (max-width: 768px) {
  .spin-sticker { width: 80px; height: 80px; right: 20px; top: 100px; }
  .spin-sticker-center { font-size: 1rem; }
  .floating-sticker { font-size: 0.7rem; padding: 6px 12px; }
  .floating-sticker.deco-new, .floating-sticker.deco-live { display: none; }
  .hero-deco-lightning, .hero-deco-note-1, .hero-deco-note-2,
  .hero-deco-rock, .hero-deco-sparkle-1, .hero-deco-sparkle-2,
  .hero-deco-sparkle-3 { display: none; }
}

/* ===== RESPONSIVE for hero logo ===== */
@media (max-width: 1024px) {
  .burst-top-left { width: 220px; left: -60px; top: 60px; }
  .burst-top-right { width: 240px; right: -70px; top: 50px; }
  .burst-bottom-right { width: 130px; bottom: 60px; right: 30px; }
}

@media (max-width: 768px) {
  .hero-logo-mark { gap: 0; }
  .hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.4em;
  }
  .hero-tagline::before, .hero-tagline::after {
    width: 24px;
    margin: 0 10px;
  }
  .burst-top-left { width: 140px; left: -50px; top: 80px; opacity: 0.7; }
  .burst-top-right { width: 150px; right: -50px; top: 70px; opacity: 0.7; }
  .burst-bottom-right { display: none; }
  .hero-content-centered .hero-actions { flex-direction: column; align-items: center; }
  .hero-content-centered .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ===== ANIMATION RESET ===== */
.hero-eyebrow, .hero-title, .hero-date-bar, .hero-actions, .hero-scroll {
  animation: hero-rise 0.7s ease-out backwards;
}
.hero-title { animation-delay: 0.1s; }
.hero-date-bar { animation-delay: 0.2s; }
.hero-actions { animation-delay: 0.3s; }
.hero-scroll { animation-delay: 0.4s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== EVENTS GRID (marca Porão) ===== */
.events-section { padding: 100px 0; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.event-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.event-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.event-card-img {
  aspect-ratio: 4/3;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(254, 213, 20, 0.12);
  position: relative;
  overflow: hidden;
}
.event-card-status {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--yellow);
  color: var(--black);
}
.event-card-status.upcoming { background: var(--yellow); }
.event-card-status.past { background: #2A2A2A; color: var(--gray-light); }
.event-card-body { padding: 24px; }
.event-card-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.event-card-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.event-card-city {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 16px;
}
.event-card-cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.event-card:hover .event-card-cta { gap: 10px; }

/* ===== EDITIONS / HISTORY ===== */
.edition-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.2s;
  cursor: pointer;
}
.edition-row:hover { padding-left: 12px; background: rgba(254, 213, 20, 0.02); }
.edition-year {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
}
.edition-info-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.edition-info-meta {
  font-size: 0.85rem;
  color: var(--gray-light);
}
.edition-info-meta span { color: var(--yellow); }
.edition-arrow {
  font-size: 1.5rem;
  color: var(--gray);
  transition: color 0.2s;
}
.edition-row:hover .edition-arrow { color: var(--yellow); }

/* ===== SPONSORS ROW (legacy single line) ===== */
.sponsors-section {
  padding: 60px 0;
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.sponsors-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}
.sponsors-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.sponsor-logo {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.sponsor-logo:hover { opacity: 1; }

/* ===== SPONSORS WALL — régua horizontal única ===== */
.sponsors-wall {
  padding: 60px 0;
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}
.sponsors-regua {
  display: block;
  width: 100%;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.sponsors-regua:hover { opacity: 1; }

/* ===== SPONSORS WALL LEGACY (mantido só por compatibilidade) ===== */
.sponsors-wall-legacy {
  padding: 80px 0 60px;
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}
.sponsors-wall::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: var(--yellow);
}
.sponsor-tier {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.sponsor-tier:last-child { border-bottom: none; }
.sponsor-tier.tier-realizacao {
  padding-top: 36px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.sponsor-block {
  text-align: center;
  min-width: 140px;
}
.sponsor-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.sponsor-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  min-height: 50px;
}
.sponsor-logos .sponsor-logo {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.sponsor-logos .sponsor-logo.size-lg { height: 44px; }
.sponsor-logos .sponsor-logo:hover { opacity: 1; transform: translateY(-2px); }

.sponsor-text-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--off-white);
  opacity: 0.85;
  white-space: nowrap;
  text-align: center;
  line-height: 1.1;
  transition: opacity 0.2s;
  cursor: default;
}
.sponsor-text-logo:hover { opacity: 1; }
.sponsor-text-logo sub { font-size: 0.55em; letter-spacing: 0.15em; }
.sponsor-text-logo sup { font-size: 0.45em; vertical-align: super; }
.sponsor-text-logo strong { font-weight: 800; }
.sponsor-text-logo.italic { font-family: var(--font-body); font-style: italic; font-weight: 800; }
.sponsor-text-logo.small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .sponsor-tier { gap: 32px; padding: 20px 0; }
  .sponsor-block { min-width: 110px; }
  .sponsor-text-logo { font-size: 1.1rem; }
}
@media (max-width: 768px) {
  .sponsors-wall { padding: 50px 0 40px; }
  .sponsor-tier { gap: 24px; padding: 16px 0; }
  .sponsor-text-logo { font-size: 1rem; }
  .sponsor-logos { gap: 18px; }
  .sponsor-cat { font-size: 0.55rem; margin-bottom: 10px; }
}

/* ===== HERO LOGO LOCKUP (uso ribbon) ===== */
.hero-ribbon {
  display: inline-block;
  width: 280px;
  margin-bottom: 24px;
}
.hero-ribbon img { width: 100%; height: auto; display: block; }

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 1024px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
  .burst-decor.top-right { width: 180px; right: -30px; }
  .burst-decor.bottom-left { width: 160px; left: -40px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: clamp(3.5rem, 16vw, 7rem) !important; }
  .btn { padding: 12px 22px !important; font-size: 0.8rem !important; }
  .events-grid { grid-template-columns: 1fr; }
  .edition-row { grid-template-columns: 70px 1fr; gap: 16px; padding: 20px 0; }
  .edition-year { font-size: 2rem; }
  .edition-arrow { display: none; }
  .burst-decor { display: none; }
  .sponsors-row { gap: 32px; }
  .sponsor-logo { height: 36px; }
}
