body {
  font-family: 'Montserrat', sans-serif;
  background: #eaf4ff;
  color: #111;
  margin: 0;
  padding: 0;
}

header {
  background: #003f7f;
  color: white;
  padding: 25px;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

nav {
  background: #002a57;
  padding: 10px 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

nav a {
  color: #7ec8ff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

nav a:hover {
  background: #7ec8ff;
  color: #002a57;
}

section {
  background: white;
  margin: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

section h2 {
  color: #003f7f;
  border-bottom: 2px solid #7ec8ff;
  padding-bottom: 5px;
}

section p {
  line-height: 2;
}

aside {
  background: #dceeff;
  margin: 0 20px 20px 20px;
  padding: 20px;
  border: 1px solid #7ec8ff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

aside h4 {
  color: #003f7f;
  margin-top: 15px;
}

aside a {
  color: #003f7f;
  text-decoration: none;
  transition: color 0.3s;
}

aside a:hover {
  color: #7ec8ff;
  text-decoration: underline;
}

footer {
  background: #002a57;
  color: white;
  text-align: center;
  padding: 15px;
}

.rodape {
  font-weight: bold !important;
}

.imagem-texto {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  
}

.imagem-texto img {
  width: 250px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.imagem-texto p {
  font-weight: bold;
  line-height: 2;
}

.imagem-texto img:hover {
  transform: scale(1.03);
  transition: transform 0.3s;
  cursor: pointer;
}

.titulo-imagem {
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: #002a57;
  margin-top: 8px;
}


.mais-info {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 5px;
}

.mais-info a {
  color: #003f7f;
  font-weight: bold;
  text-decoration: underline;
}

.mais-info a:hover {
  opacity: 0.7;
}