/* ===== CSS - UPDATED ===== */
/* ===== DESIGN TOKENS (DARK, CLEAN & BRANCO) ===== */
:root {
  /* Branco Minimalista */
  --accent: #ffffff; 
  --accent-light: #f9fafb;
  --accent-dark: #d1d5db;
  --accent-gradient: linear-gradient(135deg, #ffffff, #e5e7eb);
  
  /* Dark Theme Colors */
  --bg-main: #0c0d11;
  --bg-card: #15171d;
  --bg-glass: rgba(21, 23, 29, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  
  --white: #ffffff;
  
  --text-main: #d1d5db; /* Light gray for readability */
  --text-muted: #9ca3af;
  --text-heading: #f3f4f6;

  /* Rounded fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Round aesthetic */
  --radius: 12px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.2);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.3);

  --container: 1140px;
  --header-h: 80px;
}

/* ===== SPLASH SCREEN ===== */
body.splash-active { overflow: hidden; }
.splash-screen {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  /* Fundo translúcido com forte desfoque */
  background: rgba(12, 13, 17, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transition: backdrop-filter 1s ease, -webkit-backdrop-filter 1s ease, background-color 1s ease;
}
.splash-screen.hidden { display: none; }
.splash-screen.shrink { 
  background-color: rgba(12, 13, 17, 0); 
  backdrop-filter: blur(0px); 
  -webkit-backdrop-filter: blur(0px); 
  pointer-events: none; 
}

@keyframes ledNeon {
  0% { filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(255,255,255,0.2)) drop-shadow(0 0 8px rgba(255,255,255,0.1)); }
  100% { filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,0.4)) drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
}

@keyframes glitchOut {
  0% { filter: brightness(0) invert(1) blur(0px); transform: skew(0deg) translate(0,0); opacity: 1; }
  20% { filter: brightness(0) invert(0.8) blur(3px); transform: skew(-15deg) translate(-5px, 3px); opacity: 0.8; }
  40% { filter: brightness(0) invert(1) blur(2px) drop-shadow(5px 0 0 rgba(255,0,0,0.5)) drop-shadow(-5px 0 0 rgba(0,255,255,0.5)); transform: skew(10deg) translate(5px, -3px); opacity: 0.9; }
  60% { filter: brightness(0) invert(0.7) blur(5px); transform: skew(-5deg) translate(-3px, 5px) scale(1.05); opacity: 0.5; }
  80% { filter: brightness(0) invert(1) blur(1px) drop-shadow(-5px 0 0 rgba(255,0,0,0.5)) drop-shadow(5px 0 0 rgba(0,255,255,0.5)); transform: skew(5deg) translate(3px, -5px); opacity: 1; }
  100% { filter: brightness(0) invert(1) blur(10px) drop-shadow(0 0 20px rgba(255,255,255,0.8)); transform: skew(0deg) translate(0,0); opacity: 0; }
}

.splash-logo-wrap {
  width: clamp(200px, 40vw, 400px);
}
.splash-logo-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  animation: ledNeon 1.5s infinite alternate ease-in-out;
}
.glitch-out img {
  animation: glitchOut 0.5s ease forwards !important;
}
body.splash-done .splash-logo-wrap img {
  animation: none;
  filter: brightness(0) invert(1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; border-radius: var(--radius); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2.5rem; }
.section { padding: 60px 0; } /* Padding menor para as seções ficarem mais unidas */
.bg-card { background-color: var(--bg-card); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold { 
  background: var(--accent-gradient);
  color: #000000; /* Letra preta */
  font-weight: 700;
  border: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2); /* Sombra de luxo branca */
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--bg-main);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 42px; font-size: 1rem; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

.btn-sponsor {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin-top: 20px;
}
.btn-sponsor:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  position: relative;
}
.section-label.center {
  display: flex;
  justify-content: center;
  margin: 0 auto 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 32px;
  color: var(--text-heading);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
  margin-top: 8px;
}
.section-title.white { color: var(--white); }
.section-title.center { text-align: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative; /* Contexto para o menu centralizado abs. */
}
.site-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 0.5s ease;
  opacity: 0;
}
body.splash-done .site-logo { opacity: 0.9; }

.main-nav { 
  display: flex; gap: 40px; 
  /* Centraliza matematicamente o menu no topo do site */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.main-nav a:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 13, 17, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85svh; /* Ajustado para deixar o botão respirar */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-main) center top / cover no-repeat;
  padding-top: var(--header-h); /* Impede do texto ficar sob o header */
  padding-bottom: 40px; /* Garante espaço real abaixo do botão */
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(12,13,17,0.7) 0%,
    rgba(12,13,17,0.3) 50%,
    rgba(12,13,17,0.05) 100%
  );
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 40px;
  padding-left: clamp(20px, 5vw, 60px); /* Mais encostado à esquerda */
  width: 100%;
  max-width: 650px; /* Limita estritamente o lado esquerdo para não tocar no rosto do centro */
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: var(--header-h);
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem); /* Tamanho bem menor */
  font-weight: 400; 
  line-height: 1.4;
  text-transform: uppercase; /* Tudo Maiúsculo */
  letter-spacing: 0.15em; /* Espaçamento luxuoso para textos maiúsculos */
  color: var(--white);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: normal;
  font-weight: 400;
  color: var(--accent-light);
  display: block;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-main);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 550px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 12px;
}
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--white); transform: scale(1.2); }

/* ===== HERO ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 64px; text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 600; color: var(--white); line-height: 1;
}
.stat-item .stat-suffix {
  font-family: var(--font-heading);
  font-size: 2rem; color: var(--accent); font-weight: 600;
}
.stat-item p {
  font-family: var(--font-heading);
  font-size: 0.85rem; color: var(--text-muted);
  letter-spacing: 0.05em; text-transform: uppercase; margin-top: 12px;
}
.stat-sep { width: 1px; background: var(--border-color); }

/* ===== CUSTOM SLIDERS CSS (VERTICAL VIDEOS) ===== */

/* Estilo Netflix Vertical */
.video-carousel-container {
  display: flex;
  align-items: center;
  max-width: 100%; /* Permite ocupar a página toda para transbordar a galeria! */
  margin: 20px auto 40px;
  position: relative;
  overflow: hidden; /* Remove barrinhas na janela global */
}
.video-carousel-track {
  display: flex;
  width: 100%;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* (50% container) - (metade dos 220px) = garante centralização do 1º item e sobra p/ arrastar */
  padding: 60px calc(50% - 110px);
  scrollbar-width: none;
  cursor: grab;
}
.video-carousel-track:active {
  cursor: grabbing;
}
.video-carousel-track::-webkit-scrollbar { display: none; }

/* Slide Vertical Luxuoso (Foco Central) */
.video-slide {
  width: 220px;
  min-width: 220px; /* Tamanho ligeiramente maior */
  aspect-ratio: 9/16; 
  scroll-snap-align: center; /* Alinha perfeitamente ao centro quando o arraste parar */
  flex-shrink: 0;
  position: relative;
  border-radius: 12px;
  background: var(--bg-card);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease, opacity 0.5s ease;
  z-index: 1;
  /* Estado Padrão (Desfocado/Menor) nas laterais */
  filter: blur(5px);
  opacity: 0.5;
  transform: scale(0.85);
  pointer-events: none; /* Evita cliques acidentais nos borrados */
}
/* O item Focado via JS */
.video-slide.focused {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.15); /* Aumenta bastante no centro */
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
  pointer-events: auto; /* Permite interagir apenas com o do meio */
}
.video-slide.playing.focused {
  border: 1px solid var(--accent);
}

.video-slide video { 
  width: 100%; height: 100%; object-fit: cover; 
  border-radius: 12px; display: block; 
}

/* Camada da Sombra Interna + Botão Play */
.video-overlay {
  position: absolute; inset: 0; 
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  transition: opacity 0.4s ease;
}
.video-overlay i {
  font-size: 3.5rem; color: var(--white);
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.6));
}
.video-slide:hover .video-overlay i {
  transform: scale(1.1);
  color: var(--accent);
}
.video-slide.playing .video-overlay { opacity: 0; pointer-events: none; }

/* Botão de Compra no Vídeo Luxuoso */
.video-buy-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-size: 0.75rem; /* Menor e elegante */
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Borda luxuosa */
  box-shadow: 0 5px 15px rgba(0,0,0,0.9), 0 0 10px rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
/* Aparece APENAS quando o vídeo começar a tocar (.playing) */
.video-slide.playing .video-buy-btn {
  opacity: 0.85; /* Visível, mas levemente mesclado para não obstruir todo o vídeo */
  pointer-events: auto;
}

/* Hover Animado Robusto (Somente quando visível) */
.video-slide.playing .video-buy-btn:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px) scale(1.08); /* Sobe e cresce */
  box-shadow: 0 10px 25px rgba(0,0,0,0.9), 0 0 25px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  filter: brightness(1.2);
}

/* Active/Click Animado */
.video-slide.playing .video-buy-btn:active {
  transform: translateX(-50%) translateY(2px) scale(0.95); /* Afunda */
  box-shadow: 0 2px 10px rgba(0,0,0,0.9);
  filter: brightness(0.9);
  transition: all 0.1s ease; /* Responde rápido ao clique */
}



/* ===== PATROCINADORES / LUXURY SLIDER ===== */
.sponsors-carousel-container {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
  position: relative;
}
.sponsors-carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.sponsors-carousel-track::-webkit-scrollbar { display: none; }

.sponsor-slide {
  min-width: calc(25% - 22.5px);
  scroll-snap-align: center;
  flex-shrink: 0;
}
.sponsors-carousel-container .slider-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.sponsors-carousel-container .slider-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.sponsors-carousel-container .prev-btn { left: 0; }
.sponsors-carousel-container .next-btn { right: 0; }

/* ===== SOBRE O MINISTÉRIO ===== */
.about-section { background: var(--bg-main); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-lead {
  font-size: 1.25rem; color: var(--text-heading); margin-bottom: 24px;
  line-height: 1.7; font-weight: 400; font-style: normal;
}
.about-body { font-size: 1.05rem; color: var(--text-main); margin-bottom: 40px; line-height: 1.8; font-weight: 300; }
.about-highlights { display: flex; flex-direction: column; gap: 24px; }
.highlight-item {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-card); padding: 20px 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}
.highlight-icon {
  font-size: 1.5rem; color: #000000; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: var(--accent-gradient);
  border-radius: 50%;
}
.highlight-item strong { color: var(--text-heading); font-size: 1.05rem; font-weight: 500; display: block; margin-bottom: 4px; }
.highlight-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.about-visual { padding-right: 20px; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/5; border-radius: var(--radius-lg); }

/* ===== MÚSICAS (SPOTIFY) ===== */
.musicas-section { background: var(--bg-card); }
.spotify-wrap {
  margin: 40px auto; max-width: 1000px;
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ===== MISSÃO ===== */
.missao-section {
  position: relative; padding: 100px 0; display: flex; align-items: center; justify-content: center;
  background-image: url('img/bg1.jpg');
  background-size: cover; background-position: center;
  overflow: hidden;
  width: 100%;
}
.missao-section .container {
  width: 100%; /* CRUCIAL: impede que o display flex macete o tamanho da section */
  max-width: 100%; 
  padding: 0 clamp(40px, 8vw, 120px);
}
.missao-overlay {
  position: absolute; inset: 0;
  background: rgba(12, 13, 17, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.missao-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* Balanceado (60/40) em tela cheia */
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  width: 100%;
}
.missao-video {
  position: relative;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
  max-width: none; /* Remoção cirúrgica de qqr limitação de crescimento */
  aspect-ratio: 16/9; /* Volta pro formato Tela de Cinema / TV Original */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Borda Luxuosa */
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}
.missao-video:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.9), 0 0 30px rgba(255, 255, 255, 0.15);
}
.missao-bg-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.missao-video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: opacity 0.4s ease;
}
.missao-video-overlay i {
  font-size: 3.5rem; color: var(--white); /* Ícone no tamanho proporcional à arte */
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.missao-video:hover .missao-video-overlay i {
  transform: scale(1.15);
}
.missao-video.playing .missao-video-overlay {
  opacity: 0; pointer-events: none;
}

.missao-content {
  display: flex; flex-direction: column; align-items: flex-end; text-align: right;
  color: var(--white);
}
.missao-text {
  font-size: 1.15rem; color: var(--text-main); line-height: 1.8; margin-bottom: 40px; font-weight: 300;
}
.missao-features {
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px; margin-bottom: 48px;
}
.missao-feat {
  display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-main); font-weight: 400;
  background: rgba(255,255,255,0.05); padding: 12px 20px; border-radius: var(--radius-pill);
}
.missao-feat i { color: var(--accent); }

/* ===== PATROCINADORES STYLES ===== */
.sponsors-section { background: var(--bg-card); }
.sponsor-card {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 40px 24px;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}
.sponsor-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.sponsor-logo-wrap {
  height: 80px; display: flex; align-items: center; justify-content: center;
}
.sponsor-logo-wrap img {
  max-height: 100%; max-width: 150px; object-fit: contain; border-radius: 0;
}

.parcerias-cta {
  margin-top: 80px; text-align: center; padding: 60px 40px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}
.parcerias-cta h3 {
  font-family: var(--font-heading); font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--text-heading); margin-bottom: 20px; font-weight: 500;
}
.parcerias-cta p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; max-width: 600px; margin-inline: auto; font-weight: 300; }

/* ===== CONTATO & SOCIAL MEDIA ===== */
.contato-section { background: var(--bg-main); }
.contato-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: center;
}
.contato-info { display: flex; flex-direction: column; justify-content: center; }

.social-mega-block {
  text-align: center;
}
.social-mega-block h3 {
  font-family: var(--font-heading);
  font-size: 2rem; color: var(--text-heading); margin-bottom: 16px; font-weight: 600;
}
.social-mega-block p {
  color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; font-weight: 300;
}
.social-mega-icons {
  display: flex; justify-content: center; gap: 32px;
}
.contato-link-box {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--white); transition: var(--transition);
}
.contato-link-box i {
  font-size: 4rem;
  background: var(--bg-card);
  width: 100px; height: 100px;
  display: grid; place-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.contato-link-box span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}
.contato-link-box:hover i {
  color: var(--bg-main);
  background: var(--accent-gradient);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.contato-cta { 
  background: var(--bg-card);
  padding: 60px 40px; border-radius: var(--radius-lg); border: 1px solid var(--border-color);
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.contato-cta h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--text-heading); margin-bottom: 20px; font-weight: 500; }
.contato-cta p { color: var(--text-main); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.6; font-weight: 300; }

/* ===== FOOTER ===== */
.site-footer-main {
  background: #08090a; color: var(--text-muted);
  padding: 40px 0; border-top: 1px solid var(--border-color);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px;
}
.footer-logo { height: 44px; width: auto; object-fit: contain; margin-bottom: 24px; filter: brightness(0) invert(1) opacity(0.7); }
.footer-tagline {
  font-family: var(--font-heading); font-style: italic; font-size: 1.05rem; line-height: 1.6; margin-bottom: 32px; color: var(--text-main); font-weight: 300;
}
.footer-social { display: flex; gap: 16px; }
.social-icon {
  font-size: 1.2rem; color: var(--text-muted); transition: color 0.3s, background 0.3s;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}
.social-icon:hover { color: #000000; background: var(--accent); }
.footer-links h4, .footer-cta-col h4 {
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-heading); margin-bottom: 24px;
}
.footer-links a { display: block; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-cta-col p { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; font-weight: 300; }

.footer-bottom {
  border-top: 1px solid var(--border-color); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom a { color: var(--white); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--accent); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 1000;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white); box-shadow: var(--shadow-sm); transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); }
.whatsapp-tooltip { display: none; }

/* ===== AOS SETUP ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  filter: blur(8px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .sponsor-slide { min-width: calc(33.333% - 20px); }
}
@media (max-width: 992px) {
  .about-grid, .contato-grid, .missao-grid { grid-template-columns: 1fr; gap: 48px; }
  .missao-content { align-items: center; text-align: center; }
  .missao-features { align-items: center; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .stat-item { padding: 40px 32px; }
  .hero-figure { right: 0; opacity: 0.4; }
  .missao-features { flex-direction: column; }
}
@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .section { padding: 80px 0; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.5rem); }
  .stats-bar { flex-direction: column; }
  .stat-item { width: 100%; border-bottom: 1px solid var(--border-color); }
  .stat-item:last-child { border-bottom: none; }
  .stat-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .header-inner { padding: 0 24px; }
  .sponsor-slide { min-width: calc(50% - 15px); }
  .contato-cta { padding: 40px 20px; }
}
@media (max-width: 480px) {
  .sponsor-slide { min-width: 100%; }
}

/* ===== MISSÃO MODAL ===== */
.missao-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 40px;
}
.missao-modal::-webkit-scrollbar { width: 8px; }
.missao-modal::-webkit-scrollbar-track { background: transparent; }
.missao-modal::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
.missao-modal::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.4); }

.missao-modal.open {
  opacity: 1; pointer-events: auto;
}
.missao-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(12, 13, 17, 0.85); /* Dark background */
  backdrop-filter: blur(15px); /* Desfocando a página */
  -webkit-backdrop-filter: blur(15px);
}
.missao-modal-content {
  position: relative; z-index: 10;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 1100px;
  width: 100%;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  margin: auto; /* Centraliza vert/hor caso não dê overflow */
}
.missao-modal-bg {
  position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
  background: url('img/comercial1.jpg') center/cover no-repeat;
  z-index: -2;
  animation: bgModalAnim 12s infinite alternate ease-in-out;
}
.parceiro-modal-bg {
  position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
  background: url('img/comercial2.jpg') center/cover no-repeat;
  z-index: -2;
  animation: bgModalAnim 12s infinite alternate ease-in-out;
}
.trabalhos-modal-bg {
  position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
  background: url('img/studio.jpg') center/cover no-repeat;
  z-index: -2;
  animation: bgModalAnim 12s infinite alternate ease-in-out;
}
.missao-modal-content-overlay {
  position: absolute; inset: 0;
  background: rgba(12, 13, 17, 0.75);
  z-index: -1;
}
@keyframes bgModalAnim {
  0% { transform: scale(1) translate(0, 0); filter: blur(0px); }
  50% { transform: scale(1.05) translate(-2%, 2%); filter: blur(6px); }
  100% { transform: scale(1.1) translate(2%, -2%); filter: blur(2px); }
}
.missao-modal.open .missao-modal-content {
  transform: translateY(0) scale(1);
}
.missao-modal-close {
  position: absolute; top: 20px; right: 24px;
  background: transparent; border: none; color: var(--text-muted);
  font-size: 1.8rem; cursor: pointer; transition: color 0.3s;
}
.missao-modal-close:hover { color: var(--white); }

/* Modal Grid */
.missao-modal-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 900px) {
  .missao-modal-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Modal Video */
.missao-modal-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.missao-modal-video video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.missao-modal-video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4); transition: opacity 0.3s;
}
.missao-modal-video-overlay i {
  font-size: 3.5rem; color: var(--white); filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.missao-modal-video:hover .missao-modal-video-overlay i { transform: scale(1.15); }
.missao-modal-video.playing .missao-modal-video-overlay { opacity: 0; pointer-events: none; }

/* Modal Text */
.missao-modal-text {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
}
.missao-modal-text .section-title { font-size: 2.2rem; margin-bottom: 24px; line-height: 1.2; }

/* Sponsor 3D Slide Override para Caber na Tela */
.sponsor-3d-slide {
  width: 260px !important;
  min-width: 260px !important;
  aspect-ratio: 16/9 !important;
  background: var(--bg-main) !important;
  padding: 10px !important;
}

/* Trabalhos Modal Grid */
.trabalhos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .trabalhos-grid { grid-template-columns: 1fr; }
}
.trabalho-btn {
  padding: 30px 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03); text-align: center;
  transition: all 0.3s ease; text-decoration: none;
}
.trabalho-btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
  border-color: var(--gold);
}
.trabalho-btn i { font-size: 2.5rem; color: var(--gold); }
.trabalho-btn span { font-size: 1.15rem; font-weight: 600; color: var(--white); }
