/* modulo09.css */
body {
  margin: 0;
  background: #111;
  color: #ddd;
  font-family: Arial, sans-serif;
}
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}
header .menu-btn {
  font-size: 24px;
  cursor: pointer;
  color: #0f0;
}
nav {
  display: none;
}
nav show {
  display: block;
}
nav ul {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}
nav li {
  margin: 5px 0;
}
nav a {
  color: #0f0;
  text-decoration: none;
  font-size: 18px;
}
#bgvid {
  position: fixed;
  top: 50%; left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: brightness(60%);
}
.content {
  position: relative;
  z-index: 10;
  padding: 100px 20px 20px 20px;
  max-width: 800px;
  margin: auto;
}
.content h1 {
  margin-top: 0;
  color: #0f0;
  font-size: 32px;
}
.content h2 {
  color: #0f0;
  font-size: 24px;
  margin-bottom: 5px;
}
.sumario {
  margin-bottom: 20px;
}
.sumario h2 {
  margin-bottom: 5px;
}
.sumario ul {
  padding-left: 15px;
}
.sumario a {
  color: #0ff;
  text-decoration: none;
}
section {
  margin-bottom: 20px;
}
section p {
  text-align: justify;
  line-height: 1.6;
}
/* Vídeo de fundo - com mais desfoque */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.55) blur(8px);   /* Mais desfoque + escurecido */
}

/* Camada extra de escurecimento (overlay) */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);     /* Aumentei um pouco a opacidade */
    z-index: -1;
    pointer-events: none;
}

/* Seu conteúdo principal (texto, formulário, etc.) */
.content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);   /* Sombra no texto para melhorar legibilidade */
    padding: 2rem;
}

/* Ajustes extras para títulos e textos importantes */
h1, h2, .verdict-label {
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.9);
    font-weight: 800;
}

p, span, button {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}