/* ===========================
   RESET GLOBAL
=========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: url('imagens/fundo.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  line-height: 1.6;
}

/* ===========================
   CABEÇALHO
=========================== */

header {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  padding: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffdd00;
  background: rgba(255, 221, 0, 0.25);
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 0 8px #ffdd00;
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffdd00;
  text-shadow: 0 0 10px #ffdd00, 0 0 20px #ffaa00;
}

nav ul li a.active {
  color: #ffdd00;
  background: rgba(255, 221, 0, 0.25);
  padding: 8px 14px;
  border-radius: 6px;
  box-shadow: 0 0 10px #ffdd00;
  text-shadow: 0 0 10px #ffdd00, 0 0 20px #ffaa00;
}

/* ===========================
   HOME - HERO
=========================== */

.hero {
  background: url('banner.jpg') center/cover no-repeat;
  padding: 140px 40px;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

.hero h1,
.hero p,
.hero .btn {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 30px;
}

.btn {
  background: #ffdd00;
  padding: 14px 30px;
  border-radius: 6px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ffaa00;
}

/* ===========================
   CONTEÚDO INTERNO
=========================== */

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

section {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 35px;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

section h1,
section h2,
section h3 {
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
}

section p,
section ul,
section li {
  color: white;
}

/* ===========================
   FORMULÁRIOS
=========================== */

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

/* ===========================
   RODAPÉ
=========================== */

footer {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  padding: 20px;
  color: white;
  text-align: center;
  border-top: 2px solid #ffdd00;
  box-shadow: 0 -2px 10px #ffdd00;
}

footer p {
  margin: 5px 0;
}

/* ===========================
   PARCEIROS
=========================== */

partner-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  margin-bottom: 30px;
  border-left: 8px solid #ffdd00;
}

.partner-card h2 {
  margin-bottom: 15px;
  color: #0033aa;
  font-size: 28px;
}

.partner-card ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.partner-card li {
  margin-bottom: 8px;
}

/* Correção para botões ficarem separados das seções */
.btn {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* ===========================
   TÍTULO NEON
=========================== */

.neon-title {
  color: #ffdd00;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow:
    0 0 5px #ffdd00,
    0 0 10px #ffdd00,
    0 0 20px #ffaa00,
    0 0 30px #ffaa00;
}

/* ===========================
   INTRO DO VÍDEO
=========================== */

#intro-video {
  position: absolute; /* ← CORREÇÃO IMPORTANTE */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#intro-video video {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
}

/* Botão de som */
#soundBtn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  padding: 12px 20px;
  font-size: 18px;
  background: #ffcc00;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10000;
}

#soundBtn:hover {
  background: #e6b800;
}

/* ===========================
   BOTÃO PULAR VÍDEO — FINAL
=========================== */

#skipBtn {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #ffcc00;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10000;
  font-size: 18px;
  padding: 6px 12px;
  width: auto;
  height: auto;
  line-height: 1;
}

#skipBtn:hover {
  background: #e6b800;
}

/* ===========================
   LINKS NEON VERDE
=========================== */

.link {
  color: #00ff88;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  text-shadow:
    0 0 5px #00ff88,
    0 0 10px #00ff88,
    0 0 20px #00ff88;
}

.link:hover {
  color: #00cc66;
  text-shadow:
    0 0 10px #00ff88,
    0 0 20px #00ff88,
    0 0 30px #00ff88;
}


/* ===========================
   MELHORIA VISUAL DOS CHECKBOXES
=========================== */

form label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px; /* texto maior */
  color: #fff;
  margin-bottom: 12px;
}

form input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #ffdd00; /* cor neon amarela */
  cursor: pointer;
  transform: scale(1.2); /* aumenta o tamanho */
  transition: 0.2s ease;
}

form input[type="checkbox"]:hover {
  filter: drop-shadow(0 0 6px #ffdd00);
}
