/* ================================================================== */
/* SEÇÃO HERO - BANNER PRINCIPAL AXTRUM (AJUSTE DE RESPIRO)           */
/* ================================================================== */

.banner-hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Mantém o impacto ocupando a tela toda */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url("../img/banner_principal.jpg") no-repeat center center/cover;
  overflow: hidden;

  /* --- RESPIRO SUPERIOR (DESKTOP) --- */
  /* Espaço para o menu fixo de 110px */
  padding-top: 120px;
}

/* Camada de Overlay: Contraste para leitura */
.banner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(28, 28, 28, 0.9) 0%,
    rgba(28, 28, 28, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 90%;
  text-align: center; /* Centralizado para melhor fluidez mobile */
}

/* Título de alto impacto */
.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  /* Fonte fluida para evitar estouro lateral */
  font-size: clamp(26px, 7vw, 70px);
  font-weight: 800;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 25px;
  word-wrap: break-word;
}

.hero-content h1 span {
  color: #c8a951;
}

/* Subtítulo (Slogan) */
.hero-content p {
  font-family: "Raleway", sans-serif;
  font-size: clamp(14px, 3vw, 18px);
  color: #c8a951;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
  line-height: 1.4;
}

/* Botão de Ação (Nossos Serviços) */
.btn-primary {
  display: inline-block;
  padding: 18px 45px;
  background-color: #003b46;
  color: #f5f5f5;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #c8a951;
  transition: all 0.4s ease;
}

/* ================================================================== */
/* AJUSTE DE FLUIDEZ E RESPIRO EXTRA (MOBILE)                        */
/* ================================================================== */

@media (max-width: 1100px) {
  .banner-hero {
    /* --- RESPIRO MÁXIMO PARA O MENU EXPANDIDO --- */
    /* Aumentado para empurrar o conteúdo abaixo da linha dos idiomas */
    padding-top: 220px !important;
    justify-content: flex-start; /* Alinha ao topo para controlar melhor o respiro */
  }

  .hero-content {
    /* Espaço adicional de segurança após o cabeçalho */
    margin-top: 30px !important;
  }

  .hero-content h1 {
    font-size: clamp(24px, 8vw, 42px) !important;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .hero-content p {
    letter-spacing: 2px !important;
    max-width: 100%;
  }

  .btn-primary {
    width: 100%;
    max-width: 280px;
    padding: 16px 20px !important; /* Ajuste para o botão caber em telas estreitas */
  }
}

/* Ajuste para telas muito curtas ou celulares pequenos */
@media (max-width: 480px) {
  .banner-hero {
    padding-top: 240px !important; /* Respiro extremo para evitar qualquer corte */
  }
}
