@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Space+Mono:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --verde-escuro: #0B2D1A;
  --verde-vibrante: #1FA84A;
  --amarelo: #F7C300;
  --azul: #0A2D6B;
  --dourado: #D9A300;
  --branco: #FFFFFF;
  --preto: #0A0A0A;
  --cinza-1: rgba(255, 255, 255, 0.05);
  --cinza-2: rgba(255, 255, 255, 0.15);
  --cinza-3: rgba(255, 255, 255, 0.4);
  --cinza-4: rgba(255, 255, 255, 0.7);
  --glass: rgba(10, 10, 10, 0.85);
  --radius: 8px;
  --section-padding: 4rem 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--preto);
  color: var(--branco);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 1rem;
}

::selection {
  background: var(--amarelo);
  color: var(--preto);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ===== UTILITY ===== */
.section-label {
  font-family: 'Space Mono', monospace;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.btn-primary {
  background: var(--amarelo);
  color: var(--preto) !important;
  padding: 0.875rem 1.75rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  border: 2px solid var(--amarelo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background: var(--dourado);
  border-color: var(--dourado);
  box-shadow: 0 4px 20px rgba(217, 163, 0, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--branco);
  border: 2px solid var(--amarelo);
  padding: 0.875rem 1.75rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  cursor: pointer;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(247, 195, 0, 0.15);
  box-shadow: 0 4px 15px rgba(247, 195, 0, 0.2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-height: 52px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--preto); }
::-webkit-scrollbar-thumb { background: var(--verde-escuro); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--dourado); }

/* ===== LOADING SCREEN ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: var(--preto);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out;
}

.loader-logo {
  width: 120px;
  margin-bottom: 2rem;
  animation: pulse 2s infinite ease-in-out;
}

.loader-progress {
  width: 160px;
  height: 2px;
  background: var(--cinza-2);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--dourado);
  transition: width 0.3s;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 1.25rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--cinza-1);
}

.nav-logo img {
  height: 36px;
}

/* Hamburger */
.hamburger {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1002;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--branco);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Drawer */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: var(--preto);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid var(--cinza-2);
}

.nav-menu.open {
  right: 0;
}

.nav-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--cinza-1);
}

.nav-menu-logo {
  height: 32px;
}

.nav-close {
  background: none;
  border: none;
  color: var(--branco);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0;
  flex: 1;
}

.nav-links li {
  border-bottom: 1px solid var(--cinza-1);
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  padding: 1rem 0;
  min-height: 48px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a:active {
  color: var(--amarelo);
}

.nav-menu-cta {
  padding: 1.5rem;
  border-top: 1px solid var(--cinza-1);
}

.nav-menu-cta .btn-primary {
  width: 100%;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.6) 60%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 600px;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  max-width: 260px;
  width: 70%;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--cinza-4);
  line-height: 1.5;
  padding: 0 0.5rem;
}

.hero-infos {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.info-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--cinza-2);
  padding: 0.5rem 0.75rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.info-badge i {
  color: var(--amarelo);
  font-size: 0.8rem;
}

.countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.countdown-number {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dourado);
  line-height: 1;
  text-shadow: 0 0 15px rgba(217, 163, 0, 0.3);
}

.countdown-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--cinza-4);
  letter-spacing: 2px;
  margin-top: 0.4rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
  flex: 1;
  min-width: 160px;
  max-width: 240px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
  color: var(--cinza-3);
  font-size: 1.25rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS GLOBAL ===== */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 2rem;
  letter-spacing: 1px;
}

.section-title h2 span {
  color: var(--amarelo);
}

/* ===== SOBRE ===== */
.sobre {
  background: var(--preto);
  position: relative;
  overflow: hidden;
}

.sobre-bg-loop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.sobre-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sobre-content h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.sobre-content h2 span {
  color: var(--amarelo);
}

.sobre-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  color: var(--cinza-4);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.sobre-quote {
  border-left: 3px solid var(--amarelo);
  padding-left: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  margin: 1.5rem 0;
  color: var(--branco);
  line-height: 1.5;
}

.sobre-image img {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(247, 195, 0, 0.15));
}

/* ===== EXPERIÊNCIA ===== */
.experiencia {
  background: linear-gradient(to bottom, #05130A, var(--preto));
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.exp-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  border-radius: var(--radius);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--amarelo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.exp-card:hover::before {
  transform: scaleX(1);
}

.exp-icon {
  font-size: 2rem;
  color: var(--amarelo);
  margin-bottom: 1rem;
}

.exp-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.exp-card p {
  color: var(--cinza-4);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== INFO RÁPIDA ===== */
.info-rapida {
  background: var(--verde-escuro);
  padding: 3rem 1.25rem;
}

.info-rapida-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.info-rapida-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-rapida-item i {
  font-size: 1.5rem;
  color: var(--amarelo);
  min-width: 40px;
  text-align: center;
}

.info-rapida-item strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.15rem;
}

.info-rapida-item span {
  color: var(--cinza-4);
  font-size: 0.95rem;
}

/* ===== LINE-UP ===== */
.lineup {
  background: var(--preto);
}

.lineup-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--cinza-2);
  color: var(--cinza-4);
  padding: 0.625rem 1.25rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  min-height: 48px;
  border-radius: var(--radius);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--amarelo);
  color: var(--preto);
  border-color: var(--amarelo);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.artist-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-placeholder {
  font-family: 'Cinzel', serif;
  color: var(--amarelo);
  text-align: center;
  padding: 1.5rem;
  border: 1px dashed rgba(247, 195, 0, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(247, 195, 0, 0.02);
  gap: 0.5rem;
}

.artist-placeholder i {
  font-size: 1.75rem;
}

.artist-placeholder h3 {
  font-size: 1rem;
}

.artist-placeholder span {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--cinza-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== INGRESSOS ===== */
.ingressos {
  position: relative;
  overflow: hidden;
  background: var(--verde-escuro);
}

.ingressos-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ingressos-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.ingressos-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ingressos-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.ingressos-content h2 span {
  color: var(--amarelo);
}

.ingressos-date {
  font-size: 1.125rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--amarelo);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(247, 195, 0, 0.08);
  border: 1px solid rgba(247, 195, 0, 0.2);
  border-radius: var(--radius);
}

.ingressos-text {
  font-size: 1rem;
  color: var(--cinza-4);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ingressos-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.ingressos-actions .btn-primary,
.ingressos-actions .btn-outline {
  width: 100%;
  max-width: 360px;
}

/* ===== LOCAL ===== */
.local {
  background: var(--preto);
}

.local-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.local-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.local-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.local-icon {
  font-size: 1.5rem;
  color: var(--amarelo);
  min-width: 32px;
  text-align: center;
  margin-top: 0.15rem;
}

.local-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.local-text p {
  color: var(--cinza-4);
  font-size: 0.95rem;
  line-height: 1.5;
}

.local-map {
  border-radius: var(--radius);
  overflow: hidden;
}

.local-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(100%) invert(90%) contrast(1.2);
  display: block;
}

/* ===== GALERIA ===== */
.galeria {
  background: var(--preto);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.galeria-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-item:hover img {
  transform: scale(1.05);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 92%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(247, 195, 0, 0.3);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== FAQ ===== */
.faq {
  background: #05130A;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--cinza-2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--branco);
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 56px;
  line-height: 1.4;
}

.faq-icon {
  color: var(--amarelo);
  transition: transform 0.3s;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--cinza-4);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CONTATO ===== */
.contato {
  background: var(--preto);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contato-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  min-height: 72px;
}

.contato-card:hover {
  background: rgba(247, 195, 0, 0.08);
  border-color: rgba(247, 195, 0, 0.3);
  transform: translateY(-2px);
}

.contato-card i {
  font-size: 1.75rem;
  color: var(--amarelo);
  min-width: 40px;
  text-align: center;
}

.contato-card strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contato-card span {
  color: var(--cinza-4);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  padding: 3rem 1.25rem 1.5rem;
  border-top: 1px solid var(--cinza-2);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-col p {
  color: var(--cinza-4);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--amarelo);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--cinza-4);
  font-size: 0.9rem;
  transition: color 0.3s;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--amarelo);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--amarelo);
  color: var(--preto);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cinza-1);
}

.footer-bottom p {
  color: var(--cinza-4);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-copy {
  margin-top: 0.5rem;
  font-size: 0.8rem !important;
  color: var(--cinza-3) !important;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  height: 56px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 28px;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
  transition: all 0.3s;
  animation: pulse-wa 2s infinite;
}

.wa-float-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.wa-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* ===== GSAP REVEAL ===== */
.reveal {
  opacity: 0;
  visibility: hidden;
}

/* ============================================
   TABLET (min-width: 600px)
   ============================================ */
@media (min-width: 600px) {
  :root {
    --section-padding: 5rem 2.5rem;
  }

  .hero-logo {
    max-width: 320px;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .countdown-number {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-rapida-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contato-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingressos-actions {
    flex-direction: row;
    justify-content: center;
  }

  .ingressos-actions .btn-primary,
  .ingressos-actions .btn-outline {
    width: auto;
    max-width: none;
  }

  .sobre-inner {
    flex-direction: row;
    align-items: center;
  }

  .sobre-content {
    flex: 1.2;
  }

  .sobre-image {
    flex: 0.8;
  }

  .sobre-image img {
    max-width: 400px;
  }

  .local-map iframe {
    height: 350px;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-col {
    flex: 1;
  }
}

/* ============================================
   DESKTOP (min-width: 992px)
   ============================================ */
@media (min-width: 992px) {
  :root {
    --section-padding: 7rem 5%;
  }

  /* Desktop Navbar */
  .hamburger { display: none; }
  .nav-close { display: none; }
  .nav-overlay { display: none; }

  .nav-menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    border-left: none;
    overflow: visible;
  }

  .nav-menu-header { display: none; }

  .nav-links {
    flex-direction: row;
    padding: 0;
    gap: 2rem;
  }

  .nav-links li {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 0.5rem 0;
    min-height: auto;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--dourado);
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-menu-cta {
    padding: 0;
    border-top: none;
  }

  .nav-menu-cta .btn-primary {
    width: auto;
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }

  .navbar {
    padding: 1.25rem 5%;
  }

  .navbar.scrolled {
    padding: 0.75rem 5%;
  }

  /* Hero Desktop */
  .hero-content {
    max-width: 800px;
  }

  .hero-logo {
    max-width: 400px;
    width: 80%;
    margin-bottom: 2rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .info-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .countdown {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .countdown-number {
    font-size: 3rem;
  }

  /* Sobre Desktop */
  .sobre-content h2 {
    font-size: 2.5rem;
  }

  .sobre-text {
    font-size: 1.2rem;
  }

  .sobre-quote {
    font-size: 1.35rem;
  }

  .sobre-image img {
    max-width: 480px;
  }

  /* Section title */
  .section-title h2 {
    font-size: 3rem;
  }

  /* Experiência */
  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .exp-card {
    padding: 2.5rem;
  }

  .exp-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  /* Info Rápida */
  .info-rapida-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Lineup */
  .lineup-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  /* Ingressos */
  .ingressos-content h2 {
    font-size: 2.5rem;
  }

  .ingressos-date {
    font-size: 1.35rem;
  }

  /* Local */
  .local-container {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }

  .local-info {
    flex: 1;
  }

  .local-map {
    flex: 1.2;
  }

  .local-map iframe {
    height: 400px;
  }

  /* Gallery */
  .galeria-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 1.1rem;
    padding: 1.5rem 0;
  }

  /* Contato */
  .contato-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
  }

  .contato-card {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }

  /* WhatsApp Float */
  .wa-float {
    bottom: 2rem;
    right: 2rem;
  }
}

/* ============================================
   LARGE DESKTOP (min-width: 1200px)
   ============================================ */
@media (min-width: 1200px) {
  .exp-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
