/* Header — mobile: preto | vermelho sólido | preto (referência) */
:root {
  --hw-black: #000000;
  --hw-tickets-red: #d9101a;
  --hw-header-bg: #0a0a0c;
  --hw-header-border: #1f1f24;
  --hw-orange: #ff6a00;
  --hw-orange-hover: #ff8533;
  --hw-menu-bg: #121218;
  --hw-neon-green: #39ff14;
  --hw-neon-green-glow: rgba(57, 255, 20, 0.45);
  --hw-yellow-link: #fff200;
  --hw-gallery-yellow: #fff200;
  --hw-disclaimer-red: #ff3333;
  --hw-buy-green: #16a34a;
  --hw-buy-green-bright: #22c55e;
  --hw-buy-green-deep: #15803d;
  --hw-buy-green-glow: rgba(34, 197, 94, 0.42);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #111;
  color: #e8e8ea;
  min-height: 100vh;
}

/* Hero em vídeo — largura total, 16:9; logo centralizada sobre o vídeo */
#hero-video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

#hero-video.full-width {
  width: 100%;
  max-width: 100%;
}

#hero-video.ratio video {
  object-fit: cover;
  object-position: center;
}

.hero-video-logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-video-logo img {
  width: min(82vw, 600px);
  max-width: 100%;
  height: auto;
  max-height: min(50vh, 280px);
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.55));
}

@media (min-width: 992px) {
  .hero-video-logo img {
    width: min(44vw, 560px);
    max-height: min(46vh, 320px);
  }
}

/* ---------- Mobile (padrão): três colunas, sem separadores visíveis ---------- */
#site-header {
  background: var(--hw-black);
  border-bottom: none;
  box-shadow: none;
  z-index: 1030;
}

.header-inner {
  min-height: 88px;
  max-height: 100px;
  gap: 0;
}

#site-logo {
  flex: 0 0 18%;
  min-width: 64px;
  max-width: 120px;
  padding: 0.4rem 0.35rem;
  background: var(--hw-black);
}

#site-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 100%;
  height: 100%;
}

.site-logo-img {
  height: clamp(44px, 11vw, 56px);
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

#tickets {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  background: var(--hw-tickets-red);
}

.tickets-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: filter 0.15s ease;
}

.tickets-link:hover {
  color: #fff;
  filter: brightness(1.06);
}

#site-routes {
  flex: 0 0 18%;
  min-width: 52px;
  max-width: 120px;
  background: var(--hw-black);
}

#trucks-ribbon {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--hw-orange) #1a1a20;
}

#trucks-ribbon::-webkit-scrollbar {
  height: 6px;
}

#trucks-ribbon::-webkit-scrollbar-thumb {
  background: var(--hw-orange);
  border-radius: 3px;
}

.trucks-row {
  min-width: min-content;
}

.truck {
  flex: 0 0 auto;
  width: 88px;
  max-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0.35rem 0.25rem 0.25rem;
  text-decoration: none;
  color: #c8c8d0;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s ease, color 0.15s ease;
}

.truck:first-child {
  border-left: none;
}

.truck:hover {
  background: rgba(255, 106, 0, 0.12);
  color: #fff;
}

.truck-title {
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.truck-icon {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 44px;
}

.truck-icon img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

#main-menu {
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 0;
  padding: 0;
  border: none;
}

.menu-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  min-width: 48px;
  padding: 0.5rem;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.menu-toggler:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Offcanvas */
#offcanvasMenu.offcanvas {
  background-color: var(--hw-menu-bg);
  color: #e8e8ea;
}

#offcanvasMenu .offcanvas-title {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

#offcanvasMenu .nav-link {
  color: #e0e0e8;
  padding: 0.65rem 0;
  font-weight: 600;
  border-radius: 4px;
}

#offcanvasMenu .nav-link:hover {
  color: var(--hw-orange);
  background: rgba(255, 106, 0, 0.08);
}

#offcanvasMenu .greentext {
  color: #5cff8a !important;
}

#offcanvasMenu .greentext:hover {
  color: #7dffb0 !important;
}

#main-content {
  max-width: 960px;
}

/* ---------- Desktop: logo | botão Tickets (laranja) | faixa de trucks | menu ---------- */
@media (min-width: 992px) {
  #site-header {
    background: linear-gradient(180deg, #14141a 0%, var(--hw-header-bg) 100%);
    border-bottom: 1px solid var(--hw-header-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  }

  .header-inner {
    min-height: 72px;
    max-height: none;
  }

  #site-logo {
    flex: 0 0 auto;
    min-width: 0;
    max-width: none;
    width: auto;
    padding: 0.35rem 0.75rem 0.35rem 1rem;
    background: transparent;
  }

  #site-logo a {
    width: auto;
    height: auto;
  }

  .site-logo-img {
    height: clamp(40px, 5vw, 52px);
  }

  #tickets {
    flex: 1 1 auto;
    background: transparent;
    padding: 0 0.5rem;
    align-items: center;
  }

  .tickets-link {
    width: auto;
    min-height: 0;
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(180deg, var(--hw-orange-hover) 0%, var(--hw-orange) 55%, #c75000 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.35);
  }

  .tickets-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
  }

  #site-routes {
    flex: 1 1 200px;
    min-width: 0;
    max-width: none;
    background: transparent;
  }

  #main-menu {
    flex: 0 0 auto;
    width: auto;
    padding: 0 0.65rem 0 0.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .menu-toggler {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .menu-toggler:hover {
    color: var(--hw-orange);
    background: rgba(255, 255, 255, 0.06);
  }
}

/* Seção “Maximize a diversão” — referência: fundo texturizado, borda neon, títulos verdes */
.section-features {
  color: #fff;
  background-color: #29292e;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.06) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.05) 0px,
      transparent 1px,
      transparent 3px
    ),
    radial-gradient(ellipse 120% 80% at 50% 0%, #35353c 0%, #1c1c20 55%, #141416 100%);
}

.section-features .section-header {
  margin-bottom: 1.25rem;
}

.section-features .slant-title h2 {
  display: inline-block;
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  transform: none;
}

.section-features .slant-title h2 span {
  display: inline-block;
  transform: skewX(-10deg);
  color: var(--hw-neon-green);
  font-family: Impact, "Arial Black", "Franklin Gothic Bold", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 18px var(--hw-neon-green-glow), 0 0 2px rgba(0, 0, 0, 0.9);
}

.feature-card-img-top-container {
  position: relative;
  overflow: hidden;
  background: #000;
}

.feature-card-img-top-container a {
  display: block;
  line-height: 0;
}

.feature-card-img-top {
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  aspect-ratio: 768 / 512;
  transition: transform 0.35s ease;
}

.feature-cards .feature-card-img-top-container a:hover .feature-card-img-top {
  transform: scale(1.02);
}

.feature-cards .card-body {
  background: #000;
  padding: 1.35rem 1.25rem 1.4rem;
}

.feature-card-title {
  color: var(--hw-neon-green);
  font-family: Impact, "Arial Black", "Franklin Gothic Bold", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  transform: skewX(-8deg);
  text-shadow: 0 0 14px var(--hw-neon-green-glow);
}

.feature-card-text {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.feature-card-text a {
  color: var(--hw-yellow-link);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.feature-card-text a:hover {
  color: #ffff88;
}

.feature-card-text-secondary {
  color: var(--hw-disclaimer-red);
  font-size: 0.78rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0;
}

.feature-cards {
  border: 3px solid var(--hw-neon-green);
  border-radius: 2px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.15), 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* Card VIP — proporção da imagem */
#features .col-12:nth-child(2) .feature-card-img-top {
  aspect-ratio: 768 / 409;
}

/* Seção Eventos (Brasil) — entre hero e “Maximize a diversão” */
.section-events {
  color: #fff;
  background-color: #16161a;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.08) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.012) 3px
    ),
    radial-gradient(ellipse 100% 70% at 50% 0%, #222228 0%, #121214 60%, #0c0c0e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-events-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.section-events-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hw-neon-green);
  text-shadow: 0 0 14px var(--hw-neon-green-glow);
}

.section-events-main-title .h2,
.section-events-main-title h1 {
  display: inline-block;
  margin: 0;
  max-width: min(100%, 20rem);
  transform: skewX(-10deg);
  color: var(--hw-gallery-yellow);
  font-family: Impact, "Arial Black", "Franklin Gothic Bold", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.45rem, 4.8vw, 2.35rem);
  letter-spacing: 0.05em;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.section-events-lead {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.55;
  color: #c4c4cc;
}

.section-events .rs-card.event-card {
  display: flex;
  flex-direction: column;
  background: #0a0a0c;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section-events .rs-card.event-card:hover {
  border-color: rgba(57, 255, 20, 0.45);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.65), 0 0 24px rgba(57, 255, 20, 0.12);
}

.section-events .event-card-media {
  position: relative;
  background: #000;
}

.section-events .event-card-media .ratio {
  --bs-aspect-ratio: 56.25%;
}

.section-events .event-card-overlay-logo {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: min(38%, 140px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.65));
}

.section-events .event-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  transition: transform 0.35s ease;
}

.section-events .event-card-media a:hover .event-thumbnail {
  transform: scale(1.03);
}

.section-events .event-card-dates {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #c8c8d0;
}

.section-events .event-cal-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  opacity: 0.9;
}

.section-events .event-card-body {
  flex: 1 1 auto;
  padding: 0 1rem 1rem;
}

.section-events .event-card-body a {
  text-decoration: none;
  color: inherit;
}

.section-events .event-card-body a:hover h3 {
  color: var(--hw-yellow-link);
}

.section-events .event-card-body h3 {
  color: #fff;
  font-family: Impact, "Arial Black", "Franklin Gothic Bold", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 0.35rem;
  transform: skewX(-6deg);
  transition: color 0.2s ease;
}

.section-events .event-card-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #b8b8c0;
}

.section-events .event-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: auto;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.section-events .event-card-footer > span {
  color: #9a9aa4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-events .event-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--hw-yellow-link);
  font-weight: 800;
  text-decoration: none;
}

.section-events .event-card-footer a:hover {
  color: #ffff88;
  text-decoration: underline;
}

.section-events .event-info-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* Página de evento único (espelho do tema WP — outdoor) */
body.event-page {
  background: #111;
}

.event-page #event-video-header {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.event-page #event-video-header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-page #event-details {
  padding: 1.35rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #1a1a1f 0%, #141416 100%);
}

.event-page #event-details .row {
  row-gap: 1rem;
}

.event-page #event-details-location,
.event-page #event-details-dates {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #e8e8ea;
}

.event-page #event-details-location svg,
.event-page #event-details-dates svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 1.1em;
  height: 1.1em;
  opacity: 0.85;
  color: var(--hw-neon-green);
}

.event-page #event-details-tickets .event-tickets-buy {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  padding: 0.65rem 1.35rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--hw-buy-green-bright) 0%, var(--hw-buy-green) 50%, var(--hw-buy-green-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--hw-buy-green-glow);
  border: 1px solid rgba(255, 255, 255, 0.22);
  min-width: min(100%, 220px);
}
.event-page #event-details-tickets .event-tickets-buy:hover {
  filter: brightness(1.08);
  color: #fff;
}
.event-page #event-details-tickets .event-tickets-buy__row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.event-page #event-details-tickets .event-tickets-buy__row svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.event-page #event-details-tickets .event-tickets-buy__price {
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
@media (min-width: 576px) {
  .event-page #event-details-tickets .event-tickets-buy {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
  }
  .event-page #event-details-tickets .event-tickets-buy__row {
    justify-content: flex-start;
  }
}

.event-page .event-section {
  padding: 2.5rem 0;
}

.event-page .event-section .slant-title h2 {
  color: var(--hw-neon-green);
  font-family: Impact, "Arial Black", "Franklin Gothic Bold", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.25rem, 3.5vw, 1.85rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 14px var(--hw-neon-green-glow);
  transform: skewX(-8deg);
}

.event-page .event-section p {
  color: #d8d8de;
  line-height: 1.65;
}

.event-page .event-section p strong {
  color: #fff;
}

.event-page .event-schedule-wrap {
  background: #25252b;
  border-radius: 4px;
  padding: 1rem 0 1.5rem;
}

.event-page .event-schedule-wrap .table {
  --bs-table-bg: transparent;
  --bs-table-color: #e8e8ea;
  --bs-table-border-color: rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
}

.event-page .event-schedule-wrap .table tbody td {
  vertical-align: middle;
  padding: 0.85rem 0.75rem;
}

.event-page .event-schedule-wrap .date {
  font-weight: 700;
  color: #fff;
}

.event-page .event-schedule-wrap .time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--hw-yellow-link);
}

.event-page .event-schedule-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.event-page .event-schedule-time {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.event-page .event-schedule-time--preshow {
  color: #7dd3fc;
}

.event-page .event-schedule-time--vip {
  color: #facc15;
}

.event-page .event-schedule-buy {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  padding: 0.65rem 1.35rem;
  margin-top: 0.15rem;
  width: 100%;
  max-width: 320px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--hw-buy-green-bright) 0%, var(--hw-buy-green) 50%, var(--hw-buy-green-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 18px var(--hw-buy-green-glow);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.event-page .event-schedule-buy:hover {
  filter: brightness(1.08);
  color: #fff;
}

.event-page .event-schedule-buy__main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.event-page .event-schedule-buy__main svg {
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
}

.event-page .event-schedule-buy__price {
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

@media (min-width: 576px) {
  .event-page .event-schedule-buy {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    text-align: left;
    width: auto;
    min-width: 280px;
  }

  .event-page .event-schedule-buy__main {
    justify-content: flex-start;
    flex: 1;
  }

  .event-page .event-schedule-buy__price {
    font-size: 1.25rem;
  }
}

.event-page .event-schedule-note {
  font-size: 0.88rem;
  color: #b0b0b8;
  margin-top: 1rem;
  margin-bottom: 0;
}

.event-page .event-schedule-addons-note {
  font-size: 0.85rem;
  color: #a8a8b0;
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.event-page .event-early-access {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.event-page .event-early-access a {
  color: var(--hw-yellow-link);
  font-weight: 800;
}

.event-page #event-a-to-z .event-a-to-z-img {
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.event-page #event-a-to-z .event-learn-more {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  color: #111;
  background: var(--hw-yellow-link);
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.event-page #event-a-to-z .event-learn-more:hover {
  filter: brightness(1.05);
  color: #111;
}

.event-page #schedule-more-info {
  scroll-margin-top: 96px;
}

@media (min-width: 992px) {
  .event-page #schedule-more-info {
    scroll-margin-top: 104px;
  }
}

.event-page .event-schedule-section .section-header .slant-title h2 {
  display: inline-block;
  transform: skewX(-8deg);
}

/* Galeria de fotos — referência: título amarelo + verde, 2 fotos, borda branca, setas em círculo */
.photo-slider-section {
  background-color: #1c1c20;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.07) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.05) 0px,
      transparent 2px
    ),
    radial-gradient(ellipse 120% 90% at 50% 0%, #2e2e36 0%, #121214 55%, #0a0a0c 100%);
}

.photo-slider-header {
  margin-bottom: 2rem;
  padding-top: 0.5rem;
  text-align: center;
}

.photo-slider-heading-main {
  color: var(--hw-gallery-yellow);
  font-family: Impact, "Arial Black", "Franklin Gothic Bold", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.35rem, 5.2vw, 2.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 0.65rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.photo-slider-heading-line {
  display: inline-block;
}

.photo-slider-heading-sub {
  color: var(--hw-neon-green);
  font-family: Impact, "Arial Black", "Franklin Gothic Bold", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(0.95rem, 3.8vw, 1.55rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 0 18px var(--hw-neon-green-glow);
}

.gallery-slider {
  position: relative;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}

.gallery-carousel-inner {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.gallery-slide-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  justify-content: center;
}

@media (min-width: 576px) {
  .gallery-slide-row {
    flex-direction: row;
    gap: 0.85rem;
  }
}

.gallery-slider .image-wrapper {
  flex: 1 1 0;
  min-width: 0;
  border: 2px solid #fff;
  border-radius: 0;
  background: #000;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.gallery-slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slider .gallery-indicators {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  margin: 1rem 0 0;
  padding: 0;
  justify-content: center;
}

.gallery-slider .gallery-indicators [data-bs-target] {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background-color: transparent;
  opacity: 1;
}

.gallery-slider .gallery-indicators .active {
  background-color: rgba(255, 255, 255, 0.95);
}

.gallery-slider .gallery-control {
  width: 2.75rem;
  height: 2.75rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  border-radius: 50%;
  background-color: rgba(35, 35, 40, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-slider .carousel-control-prev {
  left: 0;
}

.gallery-slider .carousel-control-next {
  right: 0;
  left: auto;
}

.gallery-slider .carousel-control-prev-icon,
.gallery-slider .carousel-control-next-icon {
  width: 1.35rem;
  height: 1.35rem;
  filter: none;
}

/* Depoimentos */
.testimonials-section {
  background-color: #141418;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.06) 0px,
      transparent 2px
    ),
    radial-gradient(ellipse 100% 80% at 50% 100%, #1f1f26 0%, #0c0c0e 100%);
}

.testimonials-header {
  margin-bottom: 2rem;
  text-align: center;
}

.testimonials-heading-main {
  color: var(--hw-gallery-yellow);
  font-family: Impact, "Arial Black", "Franklin Gothic Bold", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.35rem, 5vw, 2.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.testimonials-heading-sub {
  color: var(--hw-neon-green);
  font-family: Impact, "Arial Black", "Franklin Gothic Bold", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(0.95rem, 3.5vw, 1.45rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 0 16px var(--hw-neon-green-glow);
}

.testimonials-grid .testimonial {
  margin: 0;
  padding: 1.35rem 1.15rem 1.25rem;
  border: 2px solid var(--hw-neon-green);
  border-radius: 2px;
  background: #000;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.1);
  height: 100%;
  min-height: 100%;
}

.testimonial-stars {
  float: none;
  width: auto;
  padding: 0 0.35rem;
  margin: 0 auto 0.75rem;
  text-align: center;
}

.testimonial-stars img {
  display: inline-block;
  height: 1.35rem;
  width: auto;
  max-width: 100%;
}

.testimonial-text {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
  text-align: center;
}

.testimonial-name {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8b8c8;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Faixa de patrocinadores — rolagem contínua (substitui Slick) */
.footer-sponsors-section {
  background: #0a0a0c;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.35rem 0;
  overflow: hidden;
}

.sponsors-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.sponsors-track {
  display: flex;
  width: max-content;
  animation: sponsors-marquee 32s linear infinite;
}

.sponsors-track:hover {
  animation-play-state: paused;
}

.sponsors-set {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 7vw, 4rem);
  padding: 0 1.25rem;
}

@keyframes sponsors-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sponsor-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.25rem 0.5rem;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

a.sponsor-slide:hover {
  opacity: 1;
}

.sponsor-slide img {
  display: block;
  max-height: 48px;
  width: auto;
  max-width: min(220px, 28vw);
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .sponsors-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .sponsors-set[aria-hidden="true"] {
    display: none;
  }
}

/* Rodapé — fundo #000, ícones brancos, botão Ingressos vermelho em paralelogramo */
.footer-section {
  background: #000;
  border-top: none;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.9rem;
}

.logo-holder {
  line-height: 0;
}

.footer-logo-img {
  width: auto;
  height: auto;
  max-width: min(260px, 100%);
  max-height: 118px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.social-tickets-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .social-tickets-footer {
    align-items: flex-end;
  }
}

.social-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.social-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.social-nav a:hover {
  opacity: 0.75;
}

.tickets-wrap {
  width: 100%;
}

.footer-tickets-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 0.15rem;
  text-decoration: none;
  background: #e30613;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transform: skewX(-14deg);
}

.event-page .footer-tickets-btn {
  background: linear-gradient(180deg, var(--hw-buy-green-bright) 0%, var(--hw-buy-green) 50%, var(--hw-buy-green-deep) 100%);
  box-shadow: 0 3px 14px var(--hw-buy-green-glow);
}

.event-page .footer-tickets-btn:hover {
  background: linear-gradient(180deg, #4ade80 0%, var(--hw-buy-green-bright) 45%, var(--hw-buy-green) 100%);
}

.footer-tickets-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.85rem;
  transform: skewX(14deg);
  color: #fff;
  font-weight: 800;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-tickets-inner .footer-tickets-price {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  opacity: 0.95;
  text-transform: none;
  font-style: normal;
}

.footer-tickets-btn:hover {
  background: #ff1a28;
  color: #fff;
}

.footer-tickets-btn:hover .footer-tickets-inner {
  color: #fff;
}

.footer-colophon {
  padding-top: 0.35rem;
  margin-top: 0.15rem;
  border-top: none;
}

.colophon-text {
  margin-bottom: 0.85rem;
}

.colophon-text p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #fff;
}

.colophon-text--italic p {
  font-style: italic;
  font-weight: 400;
}

.site-title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.colophon-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
}

@media (min-width: 768px) {
  .footer-colophon .colophon-links {
    justify-content: flex-end;
  }
}

.colophon-links a {
  color: #fff;
  text-decoration: none;
}

.colophon-links a:hover {
  text-decoration: underline;
}

.colophon-links .spacer {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

.colophon-legal p {
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 52rem;
  margin-left: auto;
}

@media (min-width: 768px) {
  .colophon-legal p {
    margin-right: 0;
  }
}

.cookie-consent-fab {
  position: fixed;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 1055;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  transition: transform 0.15s ease;
}

.cookie-consent-fab:hover {
  transform: scale(1.06);
}

.cookie-consent-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
