:root {
  --cor-fundo: #111;
  --cor-texto: #eee;
  --cor-detalhe: #e50914; /* Vermelho forte lembrando força e energia */
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  line-height: 1.6;
}

header {
  background-color: var(--cor-detalhe);
  padding: 1rem;
  text-align: center;
}

header h1 {
  margin: 0;
  color: white;
}

.logo {
  max-width: 200px;
  display: block;
  margin: 0 auto 1rem;
}

.banner {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2rem;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 2rem;
}

footer {
  background-color: #222;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  color: #bbb;
}

/* Acessibilidade */
#botao-acessibilidade {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--cor-detalhe);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

#opcoes-acessibilidade {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #333;
  padding: 0.5rem;
  border-radius: 10px;
}

#opcoes-acessibilidade button {
  display: block;
  margin: 0.3rem 0;
  width: 100%;
  background: var(--cor-detalhe);
  color: white;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.apresenta-lista {
  display: block !important;
}

.alto-contraste {
  background: black !important;
  color: yellow !important;
}
