/* Manifesto Musical — Official Tour Landing Styles (#D5A928 Textured 3D Cards & Sheen) */

.event-page-container {
  background-color: #090A0B;
  color: #F7F4EA;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Full-Bleed Hero Background Cover Container */
.hero-cover-wrapper {
  position: relative;
  width: 100%;
  min-height: 540px;
  background-image: url('https://s3.guicheweb.com.br/imagenseventos/10-01-2026_15-53-38.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(213, 169, 40, 0.2);
}

@media (min-width: 768px) {
  .hero-cover-wrapper {
    min-height: 620px;
  }
}

.hero-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 11, 0.3) 0%, rgba(9, 10, 11, 0.75) 55%, #090A0B 100%);
}

/* Clean Dark Card (Stage Texture & 3D Tilt Motion) */
.clean-card {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(213, 169, 40, 0.08) 0%, transparent 75%), #111214;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.75rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Gold Sheen Light Sweep Effect */
.clean-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(213, 169, 40, 0.15), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
  pointer-events: none;
  z-index: 1;
}

.clean-card:hover::before {
  left: 150%;
}

.clean-card:hover {
  border-color: rgba(213, 169, 40, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(213, 169, 40, 0.15);
  transform: translateY(-6px) rotateX(1.5deg) scale(1.015);
}

.clean-card-vip {
  background: radial-gradient(circle at 50% 0%, rgba(213, 169, 40, 0.15) 0%, transparent 80%), linear-gradient(180deg, #18191B 0%, #111214 100%);
  border: 1.5px solid #D5A928;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
}

.clean-card-vip:hover {
  border-color: #F3D76B;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(213, 169, 40, 0.25);
}

/* Primary Manifesto Gold CTA Button (Matte Zero Glow High Contrast) */
.btn-gold-accent,
.btn-gold-accent *,
.btn-gold-accent span,
.btn-gold-accent i,
.btn-gold-accent svg {
  background-color: transparent;
  color: #000000 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

.btn-gold-accent {
  background-color: #D5A928 !important;
  border-radius: 16px;
  transition: all 0.2s ease;
  box-shadow: none !important;
  border: 1px solid rgba(243, 215, 107, 0.6);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.btn-gold-accent:hover,
.btn-gold-accent:hover * {
  background-color: #F3D76B !important;
  color: #000000 !important;
  box-shadow: none !important;
  transform: translateY(-1px);
}

/* Scarcity Bar */
.scarcity-bar-bg {
  width: 100%;
  height: 10px;
  background: #18191B;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scarcity-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #D5A928 0%, #F3D76B 100%);
  border-radius: 9999px;
}

/* Scroll-Driven Marquee Ticker Banners (Faixas Rolantes Henrique & Juliano) */
.marquee-ticker-wrapper {
  width: 100%;
  overflow: hidden;
  background: #111214;
  border-top: 1px solid rgba(213, 169, 40, 0.25);
  border-bottom: 1px solid rgba(213, 169, 40, 0.25);
  padding: 1rem 0;
  white-space: nowrap;
  user-select: none;
}

.marquee-ticker-track {
  display: inline-flex;
  gap: 2rem;
  animation: marqueeScroll 25s linear infinite;
  will-change: transform;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F7F4EA;
}

.marquee-item .highlight {
  color: #D5A928;
}

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