/* === RESET E BASE === */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1a1a1a;
  color: #e6e6e6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === HERO HEADER COM IMAGEM E LOGO === */
.hero-header {
  background-image: url('assets/hero4_escuro_base.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center -150px;
  padding: 2px 20px 5px;
  text-align: center;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* === LOGO CENTRALIZADO === */
.logo {
  width: 390px;
  height: auto;
  margin-top: -90px; 
  margin-bottom: -20px;
}

/* === MENU DE NAVEGAÇÃO === */
.top-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin-top: -90px;
  margin-bottom: 5px;
  max-width: 600px;  
}

.top-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.top-nav a:hover {
  color: #ffa500;
}

/* === CONTEÚDO GERAL === */
main {
  max-width: 100%;
  margin-top: 0px;
  margin-bottom: 40px;
  padding: 0 20px;
}

section {
  margin-bottom: 60px;
  text-align: center;
}

h1, h2, h3 {
  color: #ff6600;
  margin-bottom: 15px;
}

p {
  line-height: 1.6;
  font-size: 1rem;
}

/* === RODAPÉ === */
footer {
  background-color: #111;
  color: #888;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* === RESPONSIVO === */
@media screen and (max-width: 768px) {
  .logo {
    width: 240px;
  }

  .top-nav {
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
  }

  .top-nav a {
    margin: 0;
  }

  .hero-header {
    padding: 25px 10px 10px;
    background-position: center -40px;
  }
}
