/* ==========================================================================
   UP SERVICES WEB - ESTRUTURA DE LAYOUT & GRID CLEAN (2026)
   ========================================================================== */

/* --- CABEÇALHO / HEADER FIXO --- */
.layout-cabecalho {
  min-height: 80px;
  background-color: #031F36 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  width: 100%;
}

.layout-cabecalho--home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navegacao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* --- HERO SECTION / CHAMADA PRINCIPAL --- */
.layout-chamada {
  position: relative;
  background-image: url("../Imagens/Fundo3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 180px 0 120px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Camada de Gradiente Dark/Overlay para garantir legibilidade máxima e contraste Premium */
.layout-chamada::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(1, 22, 39, 0.92) 0%, rgba(3, 31, 54, 0.85) 60%, rgba(1, 22, 39, 0.90) 100%);
}

.layout-chamada .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.chamada {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.chamada__titulo {
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.chamada__subtitulo {
  font-size: 1.85rem;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 36px;
  font-weight: 400;
}

.chamada__subtitulo strong {
  color: #FFFFFF;
  font-weight: 600;
}

.chamada__acao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- IMAGENS DE DESTAQUE --- */
.img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* --- SEÇÕES PRINCIPAIS SPACING --- */
main > section {
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   RESPONSIVIDADE E ADAPTAÇÃO PARA DISPOSITIVOS MÓVEIS
   ========================================================================== */

/* --- TABLETS E NOTEBOOKS COMPACTOS (ATÉ 991px) --- */
@media (max-width: 991px) {
  .layout-chamada {
    padding: 140px 0 90px 0;
    min-height: auto;
  }

  .chamada__titulo {
    font-size: 3.6rem;
  }

  .chamada__subtitulo {
    font-size: 1.65rem;
  }
}

/* --- CELULARES E SMARTPHONES (ATÉ 768px) --- */
@media (max-width: 768px) {
  .layout-cabecalho {
    height: 70px;
  }

  .logo-img {
    width: 150px;
  }

  .layout-chamada {
    padding: 120px 20px 140px 20px;
  }

  .chamada__titulo {
    font-size: 3.2rem;
    letter-spacing: -0.5px;
  }

  .chamada__subtitulo {
    font-size: 1.55rem;
    margin-bottom: 28px;
  }

  .chamada__acao {
    flex-direction: column;
    width: 100%;
  }

  .chamada__acao .botao {
    width: 100%;
  }

  .secao-oferta {
    padding: 50px 0;
    margin-top: -40px;
  }
}

/* --- CELULARES PEQUENOS (ATÉ 480px) --- */
@media (max-width: 480px) {
  .chamada__titulo {
    font-size: 2.7rem;
  }

  .chamada__subtitulo {
    font-size: 1.45rem;
  }
}
