/* Reset e Correção */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  font-family: "Helvetica", sans-serif;
  overflow-x: hidden; /* Evita barra de rolagem lateral */
}

/* Navbar - Base */
.navbar {
  background-color: #000000;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  border-bottom: 2px solid #8e6d5a;
  position: relative;
  z-index: 10;
}

/* --- NOVO: Agrupador do Logo + Divisor + Assinatura --- */
.logo-wrapper {
  display: flex;
  align-items: center; /* Alinha tudo verticalmente no centro */
}

/* O texto do logo (Ajustado para o wrapper) */
.logo-text {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.1;
  text-align: right; /* Alinha o texto contra a barra bronze */
}

.logo-text span {
  color: #8e6d5a;
  font-size: 0.75rem;
  display: block;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* A Barra Vertical Bronze (o seu '|' do Paint) */
.divider {
  width: 2px;
  height: 35px; /* Altura da barrinha */
  background-color: #8e6d5a;
  margin: 0 20px; /* Espaço entre o texto e a assinatura */
}

/* A Assinatura manuscrita em PNG */
.signature img {
  height: 45px; /* Ajuste o tamanho da sua assinatura aqui */
  display: block;
  margin-bottom: 5px;
}

/* Links do Menu */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #8e6d5a;
}

/* Hero Section */
.hero-section {
  height: calc(100vh - 80px);
  background-image: url("img/heroindexluislima.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* --- CONFIGURAÇÃO PARA TABLETS (Telas até 992px) --- */
@media (max-width: 992px) {
  .navbar {
    padding: 0 3%;
  }
}

/* --- CONFIGURAÇÃO PARA CELULARES (Telas até 600px) --- */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
  }

  .logo-wrapper {
    margin-bottom: 15px;
  }

  /* Esconde o divisor e a assinatura no celular para não amontoar */
  .divider,
  .signature {
    display: none;
  }

  .logo-text {
    text-align: center; /* Centraliza o texto no celular */
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-links li {
    margin: 8px 0;
    margin-left: 0;
  }

  .hero-section {
    height: 60vh;
    background-attachment: scroll;
  }
}
