/* === BANNER === */
.banner-sobre img {
  width: 100%;
  height: auto;
  display: block;
}

/* === MENU HORIZONTAL === */
nav {
  display: flex;
  justify-content: center; /* Alinha os itens no centro */
  background-color: #333;  /* Cor de fundo do menu */
  padding: 10px 0;
}

nav a {
  color: white; /* Cor do texto dos links */
  text-decoration: none; /* Remove o sublinhado */
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 16px;
  text-align: center;
}

nav a:hover {
  background-color: #555; /* Cor de fundo ao passar o mouse */
}

/* === SEÇÃO DE TEXTO E IMAGEM === */
.conteudo-sobre {
  display: flex;
  flex-wrap: wrap; /* Responsivo para telas pequenas */
  justify-content: center;
  align-items: center;
  
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 10px; /* Corrigido o erro de espaço extra */
}

.texto-sobre {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.texto-sobre h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.texto-sobre p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Estilo para a imagem */
.imagem-sobre {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
}

.imagem-sobre img {
  max-width: 100%;
  height: 300px;
  border-radius: 10px; 
  object-fit: cover; /* Cantos arredondados opcionais */
}
/* Centraliza todo o conteúdo do header */
header {
  text-align: center;
}

/* Ajusta o próprio título */
header h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #333;
  margin: 20px 0;      /* Espaço acima e abaixo */
  /* text-align: center;  Opcional aqui, mas geralmente suficiente em header */
}

