body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #222;
}

/* --- Cabeçalho --- */
header {
  background-color: #003d7a; /* azul escuro */
  color: white;
  text-align: center;
  padding: 1rem 0;
}

header .slogan {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.3rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #e63946; /* vermelho */
}

nav li {
  margin: 0.3rem 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(90deg, #003d7a, #e63946);
  color: white;
  text-align: center;
  padding: 5rem 1rem;
  border-radius: 0 0 15px 15px;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: #ff6b6b;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s;
}

.btn:hover {
  transform: scale(1.05);
}

/* --- Seções --- */
section {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: auto;
}

.noticias-home article {
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  padding: 1rem;
  border-left: 4px solid #e63946;
  margin-bottom: 1.5rem;
  background-color: white;
  border-radius: 5px;
}

/* --- Rodapé --- */
footer {
  background-color: #003d7a;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer a {
  color: #ffb3b3;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* --- Responsividade --- */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
  }
}
