/* ================================================================== */
/* SEÇÃO HERO - BANNER PRINCIPAL AXTRUM */
/* Responsável por: Exibir imagem de impacto e mensagem principal */
/* ================================================================== */

.banner-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Ocupa a altura total da tela */
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/banner_principal.jpg") no-repeat center center/cover;
  overflow: hidden;
}

/* Camada de Overlay: Escurece a foto para destacar o texto */
.banner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradiente do Preto Carvão para transparente */
  background: linear-gradient(
    to right,
    rgba(28, 28, 28, 0.9) 0%,
    rgba(28, 28, 28, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 90%;
  text-align: left; /* Alinhamento à esquerda para um ar corporativo */
}

/* Título de alto impacto */
.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(
    32px,
    8vw,
    70px
  ); /* Fonte fluida conforme o tamanho da tela */
  font-weight: 800;
  color: #f5f5f5; /* Branco Pérola */
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.9;
  margin-bottom: 20px;
  opacity: 0; /* Começa invisível para animação JS */
  transform: translateX(-50px);
}

/* Destaque em Dourado no título */
.hero-content h1 span {
  color: #c8a951; /* Dourado Metálico */
}

/* Subtítulo elegante */
.hero-content p {
  font-family: "Raleway", sans-serif;
  font-size: clamp(14px, 3vw, 20px);
  color: #c8a951;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-30px);
}

/* Botão de Ação (CTA) em Azul Petróleo */
.btn-primary {
  display: inline-block;
  padding: 20px 50px;
  background-color: #003b46; /* Azul Petróleo */
  color: #f5f5f5;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #c8a951;
  text-decoration: none;
  transition: all 0.4s ease;
  opacity: 0;
}

.btn-primary:hover {
  background-color: #c8a951;
  color: #1c1c1c;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(200, 169, 81, 0.3);
}

/* ================================================================== */
/* AJUSTE DE VISIBILIDADE PARA PÁGINAS INTERNAS (CONSULTORIA) */
/* ================================================================== */

.banner-hero {
  /* O menu fixo tem cerca de 100px, então empurramos o conteúdo para baixo */
  padding-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* Garante que h1 e p fiquem um sob o outro */
}

/* Garante que o título não fique colado no menu ao rolar */
.hero-content {
  margin-top: 20px;
}

/* === CORREÇÃO DE ESTOURO E SOBREPOSIÇÃO === */
.banner-hero {
  padding-top: 130px !important; /* Aumentamos para garantir respiro total */
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Impede que o brilho ou imagens saiam da área */
}

.hero-content h1 {
  font-size: clamp(
    24px,
    6vw,
    50px
  ); /* Ajusta o tamanho da fonte para não estourar no mobile */
  line-height: 1.2;
}
