/* ===== VÍDEO DE FUNDO ===== */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ===== TÍTULO CENTRAL ===== */
#centered-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(211, 29, 16);
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  z-index: 10;
  font-family: 'Science Gothic', sans-serif;
}

/* Body corrigido */
body {
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

/* Espaço antes da seção */
.scrool-space {
  height: 120vh;
}

/* ===== GRID PRINCIPAL ===== */
.info-section {
  transform: translateX(-10px); /* ajuste fino */
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px;
  gap: 40px;
  align-items: start;
  text-align: center;
}

/* Colunas vazias da linha de cima */
.empty {
  height: 0px; /* só ocupa a grid */
}

/* ===== CAIXAS ===== */
.info-box h2 {
  font-family: 'Science Gothic', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 100px;
  border-bottom: none;
  padding-bottom: none;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  margin: 10px 0;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Hover */
.info-box li:hover {
  color: #d0d0d0;
}

.social-link {
  font-family: 'Science Gothic', sans-serif;
  font-size: 20px;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.social-link:hover {
  transform: translateX(5px);
  color: #ff5f5f;
}

/* ===== TEXTO CENTRAL ===== */
.linha-texto {
  font-family: 'Science Gothic', sans-serif;
  font-size: 48px;
  color: #ff003c;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-top: 20px;

  text-shadow: 
      0 0 10px #ff7b00,
      0 0 20px #ff7b00,
      0 0 40px #ff7b00,
      0 0 80px #ff7b00;

  animation: neonPulse 2.2s infinite alternate ease-in-out;
}

/* ===== VÍDEO CENTRAL ===== */
.video-box h2 {
  font-family: 'Science Gothic', sans-serif;
  font-size: 26px;
  color: white;
  margin-bottom: 50px;
  border-bottom: none;
  padding-bottom: none;
  grid-column: 2 / span 1;
  display: inline-block;
  margin-top: -100px; /* 🔥 SOBE O TÍTULO */
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 700px;
  margin: 0 auto;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* ===== BOTÃO FIXO ===== */
.btn-topo-fixo {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-family: 'Science Gothic', sans-serif;
  font-size: 18px;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
  z-index: 9999;
}

.btn-topo-fixo:hover {
  background: white;
  color: black;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  /* Título */
  #centered-title {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    text-align: center;
    margin-top: 60px;
    font-size: 32px;
  }

  /* Remove aquele padding gigante que empurra tudo pra direita */
  .info-section {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 10px; /* 🔥 AGORA FICA CENTRALIZADO */
  }

  .linha-texto {
    font-size: 28px;
    margin: 0 auto;
    text-align: center;
  }

  .video-box h2 {
    grid-column: 1 !important;
    margin-top: 0 !important;
}

  .video-container {
    max-width: 100%;
  }

  .scrool-space {
    height: 50vh;
  }

  .btn-topo-fixo {
    bottom: 16px;
    left: 16px;
    font-size: 16px;
    padding: 8px 12px;
  }
}

