/* ═══════════════════════════════════════════════════════
   BANDA FIFTEEN — STYLES
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[x-cloak] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #06030F;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
section { scroll-margin-top: 80px; }

/* ── Typography ── */
.font-script { font-family: 'Dancing Script', cursive; }
.font-heading { font-family: 'Raleway', sans-serif; }

/* ── Gradient Utilities ── */
.grad-bg { background: linear-gradient(135deg, #FF1DB0 0%, #7C3AED 50%, #3B82FF 100%); }
.grad-text {
  background: linear-gradient(135deg, #FF1DB0 0%, #7C3AED 50%, #3B82FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Label ── */
.label {
  display: inline-block;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #FF1DB0;
  margin-bottom: 20px;
}
.label::before { content: '— '; color: rgba(255,29,176,0.4); }

.section-title {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* ── Buttons ── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #FF1DB0 0%, #7C3AED 50%, #3B82FF 100%);
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3B82FF 0%, #7C3AED 50%, #FF1DB0 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(255,29,176,0.45); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 38px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover {
  border-color: #FF1DB0;
  color: #FF1DB0;
  transform: translateY(-2px);
}

/* ── Nav ── */
.nav-link {
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
  padding: 4px 0;
  position: relative;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: #FF1DB0;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

#site-header[data-scrolled="true"] .nav-link { color: rgba(0,0,0,0.5); }
#site-header[data-scrolled="true"] .nav-link:hover { color: #111; }

/* ── Hero ── */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--hero-pos, center 30%);
  animation: kenBurns 16s ease-in-out infinite alternate;
  will-change: transform;
}
@media (min-width: 768px) {
  .hero-slide img { object-position: center; }
}
@keyframes kenBurns {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.12); }
}

#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* ── Hero circular waveform ── */
#hero-waveform {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
  mix-blend-mode: screen;
}

/* ── Hero text stagger ── */
.hero-text-reveal {
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
@keyframes heroReveal {
  0% { opacity: 0; transform: translateY(50px) scale(0.97); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.hero-text-reveal:nth-child(2) { animation-delay: 0.15s; }
.hero-text-reveal:nth-child(3) { animation-delay: 0.3s; }
.hero-text-reveal:nth-child(4) { animation-delay: 0.5s; }
.hero-text-reveal:nth-child(5) { animation-delay: 0.7s; }
.hero-text-reveal:nth-child(6) { animation-delay: 0.85s; }

/* ── Glitch text effect on hero H1 ── */
.glitch-text {
  position: relative;
}
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.glitch-text::before {
  color: #FF1DB0;
  z-index: -1;
  animation: glitch1 4s ease-in-out infinite;
}
.glitch-text::after {
  color: #3B82FF;
  z-index: -1;
  animation: glitch2 4s ease-in-out infinite;
}
@keyframes glitch1 {
  0%, 90%, 100% { clip-path: inset(0); transform: translate(0); }
  92% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 1px); }
  94% { clip-path: inset(60% 0 10% 0); transform: translate(3px, -1px); }
  96% { clip-path: inset(0); transform: translate(0); }
}
@keyframes glitch2 {
  0%, 90%, 100% { clip-path: inset(0); transform: translate(0); }
  91% { clip-path: inset(40% 0 30% 0); transform: translate(3px, 2px); }
  93% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, -1px); }
  95% { clip-path: inset(0); transform: translate(0); }
}

/* ── Horizontal marquee ── */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.hero-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* ── Equalizer Bars ── */
.eq-bar {
  display: inline-block;
  width: 3px;
  background: linear-gradient(to top, #FF1DB0, #7C3AED);
  border-radius: 2px;
  margin: 0 2px;
  transform-origin: bottom;
}
@keyframes eq1 { 0%,100%{height:25%} 50%{height:85%} }
@keyframes eq2 { 0%,100%{height:55%} 50%{height:100%} }
@keyframes eq3 { 0%,100%{height:40%} 50%{height:75%} }
@keyframes eq4 { 0%,100%{height:70%} 50%{height:30%} }
@keyframes eq5 { 0%,100%{height:20%} 50%{height:90%} }
@keyframes eq6 { 0%,100%{height:80%} 50%{height:45%} }
@keyframes eq7 { 0%,100%{height:35%} 50%{height:95%} }
@keyframes eq8 { 0%,100%{height:60%} 50%{height:20%} }
.eq-bar:nth-child(1) { animation: eq1 1.1s ease-in-out infinite; }
.eq-bar:nth-child(2) { animation: eq2 0.85s ease-in-out infinite; }
.eq-bar:nth-child(3) { animation: eq3 1.25s ease-in-out infinite; }
.eq-bar:nth-child(4) { animation: eq4 0.75s ease-in-out infinite; }
.eq-bar:nth-child(5) { animation: eq5 1.4s ease-in-out infinite; }
.eq-bar:nth-child(6) { animation: eq6 0.95s ease-in-out infinite; }
.eq-bar:nth-child(7) { animation: eq7 1.05s ease-in-out infinite; }
.eq-bar:nth-child(8) { animation: eq8 1.3s ease-in-out infinite; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-l {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.reveal-r {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.reveal-l.active, .reveal-r.active { opacity: 1; transform: translateX(0); }
@media (max-width: 767px) {
  .reveal-l, .reveal-r { transform: translateY(30px); }
  .reveal-l.active, .reveal-r.active { transform: translateY(0); }
}

/* ── Musician Cards ── */
.musician-card { transition: all 0.4s ease; }
.musician-card:hover { transform: translateY(-8px); }
.musician-img-wrap {
  overflow: hidden;
  position: relative;
}
.musician-img-wrap img { transition: transform 0.6s ease; }
.musician-card:hover .musician-img-wrap img { transform: scale(1.06); }
.musician-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,3,15,0.95) 0%, rgba(6,3,15,0.3) 40%, transparent 70%);
}
.musician-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 20px;
}

/* ── Gallery ── */
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
}
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,29,176,0.4) 0%, rgba(124,58,237,0.2) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Lightbox ── */
.lightbox {
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(16px);
}

/* ── Testimonials ── */
.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: all 0.4s ease;
}
.testimonial-card:hover {
  border-color: rgba(255,29,176,0.2);
  background: rgba(255,29,176,0.04);
}

/* ── Contact ── */
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus {
  border-color: #FF1DB0;
  background: rgba(255,29,176,0.04);
  box-shadow: 0 0 0 3px rgba(255,29,176,0.1);
}

/* ── Stats Counter ── */
.stat-number {
  font-weight: 900;
  background: linear-gradient(135deg, #FF1DB0, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── WhatsApp Button ── */
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-btn { animation: waPulse 2.5s infinite; }

/* ── Sparkles ── */
@keyframes sparkleFloat {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg) translateY(0); }
  25% { opacity: 1; transform: scale(1) rotate(90deg) translateY(-10px); }
  50% { opacity: 0.8; transform: scale(0.8) rotate(180deg) translateY(-20px); }
  75% { opacity: 0.4; transform: scale(0.5) rotate(270deg) translateY(-30px); }
}
.sparkle {
  position: absolute;
  width: 6px; height: 6px;
  background: #FF1DB0;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  animation: sparkleFloat 4s ease-in-out infinite;
  pointer-events: none;
}

/* ── Grain ── */
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #06030F; }
::-webkit-scrollbar-thumb { background: #FF1DB0; }

/* ── Animated gradient border ── */
@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.glow-border {
  position: relative;
}
.glow-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(270deg, #FF1DB0, #7C3AED, #3B82FF, #7C3AED, #FF1DB0);
  background-size: 300% 300%;
  animation: borderGlow 4s ease infinite;
  z-index: -1;
}

/* ── Footer link hover ── */
.footer-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.875rem;
}
.footer-link:hover { color: #FF1DB0; }

/* ── Magnetic hover on social icons ── */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}
.social-icon:hover {
  border-color: #FF1DB0;
  color: #FF1DB0;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,29,176,0.2);
}

/* ── Stars rating ── */
.star-filled { color: #FF1DB0; }

/* ── Video overlay effect ── */
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
.hero-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,29,176,0.15), transparent);
  z-index: 6;
  animation: scanline 5s linear infinite;
  pointer-events: none;
}

/* ── Interativa Web credit ── */
.interativa-credit {
  transition: all 0.3s ease;
}
.interativa-credit:hover {
  color: #FF1DB0 !important;
}
