/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #f4f7fb;
  color: #333;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Cabeçalho */
header {
  background-color: #003366;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  height: 100px;
}
.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}
.menu a {
  color: white;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}
.menu a:hover,
.menu .ativo {
  background-color: #0050b3;
}

/* Principal */
.hero {
  padding: 60px 0 40px;
  background-color: white;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.intro h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.destaque {
  color: #003366;
}
.intro p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.imagens-destaque {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.imagem-destaque {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Rodapé */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  font-size: 0.9rem;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.menu li a {
  color: white;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.menu li a:hover,
.menu li a.ativo {
  background-color: #0050b3;
}

