@font-face {
  font-family: 'Degular';
  src: url('../assets/fonts/Degular.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


/* ================================================================
   2. VARIÁVEIS CSS
   Cores e valores extraídos diretamente do Figma.
   Altere aqui para mudanças globais.
================================================================ */
:root {
  /* Cores — extraídas do Figma */
  --azul: #071436;
  /* fundo principal */
  --azul-header: rgba(7, 20, 54, 0.68);
  /* header semitransparente */
  --azul-alt: #0c1b3d;
  /* seções alternadas */
  --laranja: #DD4719;
  /* cor de destaque principal */
  --laranja-nav: rgba(221, 71, 25, 0.90);
  /* separador da navbar */
  --branco: #ffffff;
  --cinza-cliente: #4C4C4C;
  /* bolinhas de clientes */
  --divisor-cinza: #4F5E86;
  /* linha divisória cinza */
  --texto-corpo: rgba(255, 255, 255, 0.82);
  --borda-header: rgba(210, 210, 210, 0.92);
  --borda-sutil: rgba(255, 255, 255, 0.08);

  /* Tipografia — Degular com Inter como fallback */
  --fonte: 'Degular', 'Inter', sans-serif;

  /* Layout */
  --max-largura: 1748px;
  /* largura interna do Figma */
  --padding-h: 86px;
  /* padding horizontal do Figma */

  /* Transição padrão */
  --transicao: 0.25s ease;
}


/* ================================================================
   3. RESET & BASE
================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte);
  background-color: var(--azul);
  color: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.pagina {
  min-height: 100vh;
}


/* ================================================================
   4. UTILITÁRIOS
================================================================ */

/* Botão de vidro (glass) — usado no hero e CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.6rem 3.7rem;
  border-radius: 8px;
  font-family: var(--fonte);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transicao), transform var(--transicao);
  white-space: nowrap;
}

.btn--glass {
  background: linear-gradient(41deg, rgba(255, 255, 255, 0.12) 5%, rgba(152, 152, 152, 0.26) 100%);
  border: 1.17px solid rgba(255, 255, 255, 1);
  color: var(--branco);
  padding: 0.8rem 3rem;
  margin-top: -1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 8px;
  font-family: var(--fonte);
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transicao), transform var(--transicao);
  white-space: nowrap;
  width: auto;
  min-width: 0;
  align-self: flex-start;
}

.btn--glass:hover,
.btn--glass:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* Foco acessível */
:focus-visible {
  outline: 2px solid var(--laranja);
  outline-offset: 3px;
}


/* ================================================================
   5. HEADER / NAVBAR
   Dados do Figma:
   - height: 155px → reduzido para 72px (proporção para web)
   - background: rgba(7, 20, 54, 0.68)
   - border-bottom: 1px rgba(210, 210, 210, 0.92)
   - padding: 40px 86px
================================================================ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 100;
  background: var(--azul-header);
/*   border-bottom: 1px solid var(--borda-header);
 */  transition: box-shadow var(--transicao);
}

.header.rolado {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--padding-h);
  height: 100%;
  max-width: var(--max-largura);
  margin: 0 auto;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  height: 114px;
}

.header__logo-fallback svg {
  height: 44px;
  width: auto;
}

/* Nav links */
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Separador laranja entre os links — exato do Figma */
.header__nav li+li::before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 41px;
  background: var(--laranja-nav);
  margin: 0 14px;
  vertical-align: middle;
}

.header__nav a {
  font-family: var(--fonte);
  font-size: 1rem;
  font-weight: 500;
  /* weight 500 — exato do Figma */
  letter-spacing: 0.08em;
  color: var(--branco);
  padding: 4px 2px;
  transition: color var(--transicao);
  white-space: nowrap;
}

.header__nav a:hover,
.header__nav a.ativo {
  color: var(--laranja);
}

/* Hamburguer — apenas mobile */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: var(--transicao);
}


/* ================================================================
   6. MENU MOBILE
================================================================ */
.menu-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--azul);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-mobile.aberto {
  display: flex;
}

.menu-mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.menu-mobile a {
  font-family: var(--fonte);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 24px;
  display: block;
  transition: color var(--transicao);
}

.menu-mobile a:hover {
  color: var(--laranja);
}

.menu-mobile__fechar {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--branco);
  font-size: 26px;
  line-height: 1;
}


/* ================================================================
   7. HERO
   Dados do Figma:
   - min-height: 100vh
   - margin-top: -72px (compensa o header sticky)
   - Título: font-size 116px, weight 600
   - "planejamento." em laranja
   - Subtítulo: font-size 24.95px, weight 300/800
   - Botão: glass com border branca
   - Bola de blur escura à esquerda
================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 var(--padding-h);
  margin-top: -72px;
  padding-top: 72px;
  overflow: hidden;
}

/* Imagem e overlays de fundo */
.hero__fundo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__fundo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  background: #0a1520;
  /* placeholder até ter a imagem */
}

/* Overlay escuro */
.hero__fundo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.60));
}

/* Bola de desfoque — efeito do Figma */
.hero__fundo-blur {
  position: absolute;
  width: 1080px;
  height: 654px;
  left: -16px;
  top: 297px;
  background: rgba(0, 0, 0, 0.80);
  border-radius: 9999px;
  filter: blur(228px);
}

/* Conteúdo */
.hero__conteudo {
  position: relative;
  z-index: 2;
  max-width: 737px;
  padding: 3rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Título — font-size proporcional ao Figma */
.hero__titulo {
  font-family: var(--fonte);
  font-size: clamp(2.8rem, 6vw, 7.3rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--branco);
}

/* "planejamento." em laranja */
.hero__titulo strong {
  color: var(--laranja);
  font-weight: 600;
  display: block;
}

/* Subtítulo */
.hero__subtitulo {
  font-size: 	clamp(1.38rem, 2.24vw, 1.59rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(243, 247, 255, 0.82);
  max-width: 520px;
  text-align: justify;
  text-justify: inter-word;
}

.hero__subtitulo strong {
  font-weight: 800;
  color: var(--branco);
}

/* Indicador de scroll – seta tradicional */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  background: transparent;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.hero__scroll:hover {
  border-color: var(--laranja);
}

/* SVG da seta */
.hero__seta {
  width: 24px;
  height: 24px;
  animation: setaPulsar 1.6s ease-in-out infinite;
}

/* Versão com texto Unicode (caso use) */
.hero__seta-texto {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--branco);
  animation: setaPulsar 1.6s ease-in-out infinite;
}

.hero__scroll span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--branco);
  animation: pulsarScroll 1.6s ease-in-out infinite;
}

/* Animação suave para a seta (sobe e desce) */
@keyframes setaPulsar {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}


/* ================================================================
   8. SOBRE — CORREÇÃO DE TAMANHO E CORTE DA IMAGEM
================================================================ */

.sobre {
  background: var(--azul);
  padding: 4rem 0 3rem 0;
  overflow: hidden;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 3rem;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Coluna da imagem – encosta na borda esquerda */
.sobre__foto-col {
  margin-left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  min-height: 300px;
}

/* Coluna do texto – controle vertical via margin-top */
.sobre__texto-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: var(--padding-h);
  max-width: 800px;
  margin-top: 40px;         /* espaçamento superior do texto */
  transform: translateX(-1.5rem);   /* usei para mover o conteúdo para esquerda */
}

.sobre__titulo {
  font-family: var(--fonte);
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--branco);
  margin-bottom: 1rem; 
}

.sobre__titulo--destaque {
  font-family: var(--fonte);
  font-size: clamp(2rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--branco);
  padding-left: 9rem;
  padding-top: 10rem;
  white-space: nowrap;
  animation: neon-pulse 2s ease-in-out infinite;
}

.sobre__subtitulo {
  font-family: var(--fonte);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.5rem;
}

.sobre__texto {
  font-size: clamp(1.09rem, 1.61vw, 1.32rem);
  font-weight: 400;          
  line-height: 1.5;
  color: var(--texto-corpo);
  text-align: justify;
  margin-bottom: 0.8rem;
}

.sobre__texto-scroll {
  height: 420px;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--branco) transparent;
}

/* Badge e credencial */
.sobre__diretor {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sobre__diretor-formacao {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.75rem;
}

.sobre__diretor-icone {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.sobre__diretor-curso {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--branco);
}

/* Divisor com linha branca que será preenchida por laranja */
.sobre__divisor {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
  grid-column: 1 / -1; /* ocupa as duas colunas do grid */
}

.sobre__divisor-linha--branca {
  width: 120px;
  height: 5px;
  background: var(--branco);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.sobre__divisor-linha--laranja {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--laranja);
  transition: width 0.05s linear;
  border-radius: 2px;
}

.cta .cta__conteudo .btn--glass {
  align-self: center;
  margin-top: 2rem;
}

/* Barrinha no CTA — espaçamento ajustado */
.cta__conteudo .sobre__divisor {
  margin-top: 0;
  margin-bottom: 3rem;
}

/* ================================================================
       EFEITO NEON - TÍTULO "SOBRE A LT8 ENGENHARIA"
================================================================ */

@keyframes neon-pulse {
  0%, 100% {
    text-shadow:
      0 0 3px #fff,
      0 0 6px #fff;
  }
  50% {
    text-shadow:
      0 0 1px #fff,
      0 0 3px #fff;
  }
}

/* ================================================================
   LIDERANÇA
================================================================ */

.lideranca {
  background: var(--azul);
  padding: 4rem 0;
  overflow: hidden;
}

.lideranca__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.lideranca__foto-col {
  margin-left: 0;
  width: 100%;
  margin-top: -3rem;
}

.lideranca__imagem {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
}

.lideranca__texto-col {
  padding: 3rem var(--padding-h) 3rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(-2rem);
}

.lideranca__titulo {
  font-family: var(--fonte);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.lideranca__destaque {
  background: var(--laranja);
  color: var(--branco);
  padding: 0 0.3rem;
}

.lideranca__texto {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--texto-corpo);
  line-height: 1.6;
}

.lideranca__pilares-titulo {
  font-family: var(--fonte);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--branco);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lideranca__pilares {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.lideranca__pilar {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.lideranca__pilar-nome {
  font-family: var(--fonte);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 700;
  color: var(--laranja);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lideranca__pilar-desc {
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  color: var(--texto-corpo);
  line-height: 1.5;
}

.lideranca__rodape {
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  color: var(--cinza, #888);
  font-style: italic;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

/* ================================================================
   9. SERVIÇOS — CARDS
   Dados do Figma:
   - 4 cards de 388x696px lado a lado com gap 38px
   - Metade superior: foto
   - Metade inferior: fundo laranja #DD4719
   - Título: font-size 40.91px, weight 600
   - Linha azul escura sob o título
   - Desc: font-size 28.82px, weight 300
================================================================ */

.servicos {
  background: var(--azul);
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.servicos__cabecalho {
  max-width: calc(var(--max-largura) + var(--padding-h) * 2);
  margin: 0 auto;
  padding: 0 var(--padding-h);
  margin-bottom: 3rem;
  text-align: center;
}

.servicos__knowhow {
  font-size: clamp(1.52rem, 2.46vw, 1.75rem);
  font-weight: 400;
  color: var(--branco);
  text-align: justify;
  margin-bottom: 0.5rem;
  text-align: center;
}

.servicos__titulo {
  font-family: var(--fonte);
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--branco);
  line-height: 1.0;
}

/* Grid dos 4 cards */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  max-width: calc(var(--max-largura) + var(--padding-h) * 2);
  margin: 0 auto;
  padding: 0 var(--padding-h);
}

/* Card */
.servico-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 500px;
}

/* Metade superior — foto */
.servico-card__foto {
  flex: 0 0 55%;
  background-color: var(--azul-alt);
  background-size: cover;
  background-position: center;
}

.servico-card__corpo {
  flex: 1;
  background: var(--laranja);
  padding: 2rem 1.5rem 1.5rem 1.8rem;   /* ↑ desce (2rem) e → direita (1.8rem) */
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: -1.8rem;                  /* reduz a subida (antes -2.5rem) */
  position: relative;
  z-index: 1;
  clip-path: polygon(0% 12%, 100% 0%, 100% 100%, 0% 100%);
  text-align: left;                     /* mantém texto alinhado à esquerda */
  align-items: flex-start;              /* alinha os itens à esquerda (padrão) */
}

.servico-card__titulo {
  font-family: var(--fonte);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--branco);
}

/* Linha azul escura sob o título */
.servico-card__linha {
  width: 97px;
  height: 4px;
  background: rgba(7, 20, 54, 0.72);
  flex-shrink: 0;
}

.servico-card__desc {
  font-size: clamp(0.78rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--branco);
}


/* ================================================================
   10. CLIENTES
   Dados do Figma:
   - Título: font-size 114px, weight 600, à esquerda
   - Bolinhas: 98x98px, background #FFFFFF, border #DD4719 2px
   - Layout: título + bolinhas em linha
   - Adicionado: suporte a imagens internas e efeito neon sequencial
================================================================ */
.clientes {
  background: var(--azul);
  padding: 5rem 0;
}

.clientes__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: calc(var(--max-largura) + var(--padding-h) * 2);
  margin: 0 auto;
  padding: 0 var(--padding-h);
}

.clientes__titulo {
  font-family: var(--fonte);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--branco);
}

/* Quebra de linha exclusiva para mobile */
.br-mobile {
  display: none;
}

/* Grid das bolinhas (6 colunas x 2 linhas) */
.clientes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
}

/* Cada bolinha — fundo branco e borda laranja garantidos */
.cliente-item {
  width: 100%;
  max-width: 98px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff !important;                /* fundo branco forçado */
  border: 2px solid var(--laranja) !important;   /* borda laranja sempre visível */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform var(--transicao);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Efeito de hover (zoom suave) */
.cliente-item:hover {
  transform: scale(1.06);
}

/* Imagem do logo dentro da bolinha */
.cliente-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Efeito neon ativado pelo JavaScript — mantém a borda laranja */
.cliente-item.neon-destaque {
  box-shadow: 0 0 15px #DD4719, 0 0 30px #DD4719;
  border-color: var(--laranja) !important;       /* garante que a borda não suma */
}

.cliente-item.neon-destaque img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Zoom específico para o logo da ASUN Supermercados (imagem 1) */
.cliente-item img[src*="asun-supermercados"] {
  transform: scale(1.25);            /* ajuste conforme necessário */
  transition: transform 0.2s ease;
}

/* Alteramos o zoom quando o neon está ativo */
.cliente-item.neon-destaque img[src*="asun-supermercados"] {
  transform: scale(1.5);
}

/* 2. Clínica do Coração */
.cliente-item img[src*="clinica-do-coracao"] {
  transform: scale(1.9);
  transition: transform 0.2s ease;
}
.cliente-item.neon-destaque img[src*="clinica-do-coracao"] {
  transform: scale(2.2);
}

/* 3. Medplex Eixo Norte */
.cliente-item img[src*="medplex-eixo-norte"] {
  transform: scale(1.7);
  transition: transform 0.2s ease;
}
.cliente-item.neon-destaque img[src*="medplex-eixo-norte"] {
  transform: scale(1.9);
}

/* (imagem 4) */
.cliente-item img[src*="prefeitura-3-coroas"] {
  transform: scale(2);            /* ajuste o valor até ficar bom */
  transition: transform 0.2s ease;
}

/* Alteramos o zoom quando o neon está ativo */
.cliente-item.neon-destaque img[src*="prefeitura-3-coroas"] {
  transform: scale(2.2);            /* valor maior para destacar ainda mais */
}

/* 5. Sebigas Ctica */
.cliente-item img[src*="sebigas-ctica-logo"] {
  transform: scale(1.6);
  transition: transform 0.2s ease;
}
.cliente-item.neon-destaque img[src*="sebigas-ctica-logo"] {
  transform: scale(1.8);
}

/* 6. SindiSaúde */
.cliente-item img[src*="sindi-saude"] {
  transform: scale(1.5);
  transition: transform 0.2s ease;
}
.cliente-item.neon-destaque img[src*="sindi-saude"] {
  transform: scale(1.8);
}

/* 7. STE Serviços de Engenharia */
.cliente-item img[src*="ste-servicos-engenharia"] {
  transform: scale(1.6);
  transition: transform 0.2s ease;
}
.cliente-item.neon-destaque img[src*="ste-servicos-engenharia"] {
  transform: scale(1.8);
}

/* 8. Sinner */
.cliente-item img[src*="sinner"] {
  transform: scale(1.4);
  transition: transform 0.2s ease;
}
.cliente-item.neon-destaque img[src*="sinner"] {
  transform: scale(1.7);
}


/* ================================================================
   11. STATS — BARRA LARANJA COM VÍDEO DE FUNDO
================================================================ */
.stats {
  position: relative;
  overflow: hidden;
  background-color: var(--laranja);
  padding: 5.5rem 0;
  min-height: 280px;
}

/* Camada do vídeo */
.stats__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.stats__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay escuro sobre o vídeo */
.stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

/* Conteúdo que fica por cima de tudo */
.stats__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: calc(var(--max-largura) + var(--padding-h) * 2);
  margin: 0 auto;
  padding: 0 var(--padding-h);
}

.stats__logo-wrap {
  flex-shrink: 0;
}

.stats__logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255,255,255,0.5));
}

.stats__divisor {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  margin: 0 1rem;
}

.stats__lista {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: auto;
  text-align: right;
}

.stats__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  font-family: var(--fonte);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--branco);
  text-shadow: 0 0 3px rgba(255,255,255,0.4), 0 0 5px rgba(255,255,255,0.2);
}

.stats__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--branco);
  flex-shrink: 0;
  order: 1;
}


/* ================================================================
   12. DETALHE DOS SERVIÇOS
   Dados do Figma:
   - Grid: texto (755px) + foto (838px)
   - Título: font-size 117px, weight 600
   - Palavras em negrito no subtítulo: weight 700
   - Corpo: font-size 34.25px, weight 300
   - Lista: ícones verdes, font-size 17px, weight 300
   - Divisor: 773px, 2px, laranja (ou cinza #4F5E86)
   - Seções alternando: navy e laranja como fundo
================================================================ */

.detalhe {
  background: var(--laranja);
  padding: 5rem 0;
}

/* Seção com fundo laranja (par) */
.detalhe--alt {
  background: var(--azul);
}

.detalhe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: calc(var(--max-largura) + var(--padding-h) * 2);
  margin: 0 auto;
  padding: 0 var(--padding-h);
}

/* Inverte a ordem nas seções com fundo laranja */
.detalhe__grid--invertido .detalhe__foto-col {
  order: -1;
}

/* Foto */
.detalhe__foto {
  width: 100%;
  aspect-ratio: 838 / 782;
  object-fit: cover;
  background: rgba(217, 217, 217, 1);
  /* placeholder D9D9D9 do Figma */
  display: block;
  transform: translateY(-50px);   /* ← subir 15px; ajuste conforme necessário */
}

/* Texto */
.detalhe__label {
  font-family: var(--fonte);
  font-size: clamp(2rem, 4vw, 3.5rem);  /* tamanho grande */
  font-weight: 700;                     /* negrito (opcional) */
  letter-spacing: 0.05em;
  color: var(--branco);
  margin-bottom: 1rem;
  line-height: 1.3;
}



/* Na seção laranja, o label some (já está no fundo laranja) */
.detalhe--alt .detalhe__label {
  opacity: 0.6;
}

.detalhe__titulo {
  font-family: var(--fonte);
  font-weight: 700;
  line-height: 1.05;
  color: var(--branco);
  margin-bottom: 1.5rem;
}

/* Palavras em negrito dentro do título */
.detalhe__titulo strong {
  font-weight: 700;
}

.detalhe__corpo {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 350;  
  line-height: 1.85;
  color: var(--texto-corpo);
  margin-bottom: 1rem;
}

.detalhe--alt .detalhe__corpo {
  color: rgba(255, 255, 255, 0.88);
}

/* Divisor padronizado em cinza para todas as seções de detalhe */
.detalhe__divisor {
  width: 100%;
  max-width: 773px;
  height: 2px;
  background: var(--divisor-cinza);   /* agora todas as seções usam o mesmo cinza */
  margin: 1.5rem 0;
}

/* Classe mantida apenas por compatibilidade, sem efeito adicional */
.detalhe__divisor--cinza {
  background: var(--divisor-cinza);
}

/* Lista de tópicos — ícone verde do Figma */
.detalhe__lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.detalhe__lista li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);   /* cresce um pouco mais */
  font-weight: 400;                             /* de 300 para 400 (Regular) */
  color: var(--texto-corpo);
  line-height: 1.5;
}

.detalhe--alt .detalhe__lista li {
  color: rgba(255, 255, 255, 0.88);
}

/* Ícone verde gradiente — exato do Figma */
.detalhe__lista li::before {
  content: "✓";
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0CAA0C 0%, #4BD14B 60%, #60E260 100%);
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  font-weight: bold;
  line-height: 1;
}


/* ================================================================
   13. CTA FINAL
   Dados do Figma:
   - Fundo: foto de obra com overlay
   - Título: font-size 114px, weight 600, centralizado
   - Subtítulo: font-size 28.52px, weight 300
   - Badge laranja sobre o título
================================================================ */
.cta {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}

.cta__fundo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__fundo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0a1520;
}

.cta__fundo-overlay {
  background: rgba(0, 0, 0, 0.5);  /* escurece levemente sem alterar a cor */
  position: absolute; /* cobre toda a área do CTA */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* permite clicar nos elementos acima do overlay */
}

.cta__conteudo {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 var(--padding-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta__titulo {
  font-family: var(--fonte);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--branco);
  text-align: center;
}

.cta__subtitulo {
  font-size: clamp(1.09rem, 1.61vw, 1.32rem);
  font-weight: 500;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  max-width: 810px;
  text-align: center;
}

.destaque-laranja {
  background-color: var(--laranja);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
  color: var(--branco);
  line-height: 1.4;
}


.cta__subtitulo strong {
  font-weight: 700;
}


/* ================================================================
   14. FOOTER
================================================================ */
.footer {
  background: var(--azul-header);
  border-top: 1px solid var(--borda-sutil);
}

.footer__topo {
  display: grid;
  grid-template-columns: auto 1fr auto;  /* logo | colunas | tagline */
  align-items: center;                   /* alinhamento vertical central */
  gap: 2rem;
  max-width: calc(var(--max-largura) + var(--padding-h) * 2);
  margin: 0 auto;
  padding: 3.5rem var(--padding-h);
}

.footer__brand {
  justify-self: start;   /* alinhado à esquerda */
  max-width: 300px;
  flex-shrink: 0;
}

.footer__logo {
  height: 240px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 4px rgba(221,71,25,0.5)) drop-shadow(0 0 2px rgba(255,255,255,0.4));
  transition: filter 0.3s ease;
}

.footer__logo-fallback {
  font-family: var(--fonte);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--branco);
}

/* Colunas - centralizadas */
.footer__colunas {
  justify-self: center;   /* centralizado horizontalmente */
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer__coluna {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 140px;
}

.footer__coluna-titulo {
  font-family: var(--fonte);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  color: var(--branco);
  line-height: 1.0;
}

.footer__link {
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 400;
  color: var(--branco);
  display: block;
  transition: color var(--transicao);
}

.footer__link:hover {
  color: var(--laranja);
}

.footer__link--tel {
  margin-top: -1.3rem;
}

/* Endereço na coluna Visite-nos */
.footer__endereco {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 450;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Link do endereço */
.footer__endereco-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: color var(--transicao);
}

.footer__endereco-link:hover .footer__endereco {
  color: var(--laranja);
}

/* Ícones de redes sociais */
.footer__redes {
  display: flex;
  gap: 1rem;
}

.footer__rede {
  width: 37px;
  height: 37px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  transition: opacity var(--transicao);
}

.footer__rede:hover {
  opacity: 0.8;
}

.footer__rede--linkedin {
  background: #0A66C2;
}

.footer__rede--instagram {
  background: radial-gradient(ellipse 99% 92% at 27% 108%, #FFDD55 0%, #FFDD55 10%, #FF543E 50%, #C837AB 100%);
}

.footer__tagline {
  justify-self: end;
  text-align: right;
  max-width: 350px;
  flex-shrink: 0;
  font-family: var(--fonte);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--branco);
}

.footer__tagline em {
  font-style: normal;
  color: var(--laranja);
}

/* Rodapé inferior */
.footer__rodape {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  border-top: 1px solid var(--borda-sutil);
  padding: 1.5rem var(--padding-h);
  max-width: calc(var(--max-largura) + var(--padding-h) * 2);
  margin: 0 auto;
}

.footer__cnpj {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* Mobile grid do footer — oculto no PC */
.footer__mobile-grid {
  display: none;
} 


/* Animações dos cards de serviços */
.servico-card {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent; /* borda transparente para não pular ao aplicar */
}

.servico-card:hover {
  border-color: var(--laranja);
  box-shadow: 0 0 12px 2px rgba(221, 71, 25, 0.9),   /* brilho médio */
              0 0 25px 5px rgba(221, 71, 25, 0.5);    /* brilho externo mais suave */
}

.servico-card__foto {
  transition: transform 0.3s ease;
}

.servico-card:hover .servico-card__foto {
  transform: scale(1.02);
}

/* Efeito neon branco mais destacado nas letras do título */
.clientes__titulo.animacao span {
  display: inline-block;
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: text-shadow 0.2s ease;
}

/* Animação de brilho pulsante - mais forte */
@keyframes neonPisca {
  0% { text-shadow: 0 0 0px rgba(255, 255, 255, 0); }
  50% { text-shadow: 0 0 5px rgba(255, 255, 255, 1), 0 0 3px rgba(255, 255, 255, 0.9); }
  100% { text-shadow: 0 0 0px rgba(255, 255, 255, 0); }
}

.clientes__titulo.animacao span {
  animation: neonPisca 2s ease-in-out infinite;
}

/* Vídeo de fundo na seção stats */
.stats {
  position: relative;
  overflow: hidden;
  background: var(--laranja);
  padding: 3.5rem 0;
  height: 260px;
}

.stats__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.stats__video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* Overlay escuro para legibilidade do texto */
.stats::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);  /* preto com 40% de opacidade do background para melhor leituras das fontes */
  z-index: 1;
  pointer-events: none;
}

/* Garante que o conteúdo fique acima do vídeo e do overlay */
.stats__inner {
  position: relative;
  z-index: 2;
}

/* Efeito neon mais forte no ícone do capelo */
.sobre__diretor-icone {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9));
  animation: neonIconePiscaForte 1.2s ease-in-out infinite;
}

@keyframes neonIconePiscaForte {
  0%, 100% {
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1), 0 0 25px rgba(255, 255, 255, 0.9));
  }
}

/* Seta laranja da seção clientes */
.clientes__seta {
  display: block;
  width: 40px;
  height: 40px;
  margin: 5rem auto 0;    /* centraliza horizontalmente e desce 5rem */
  background: transparent;
  border: none;
  cursor: pointer;
  animation: setaClientesPulsar 1.6s ease-in-out infinite;
  
}

.clientes__seta-svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--laranja);
  transition: stroke 0.3s ease, transform 0.2s ease;
}

.clientes__seta:hover .clientes__seta-svg {
  stroke: #c03d12;
  transform: scale(1.1);
}

@keyframes setaClientesPulsar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Neon delicado no logo da seção stats */
.stats__logo {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
  transition: filter 0.3s ease;
}

/* Neon delicado nos textos das conquistas */
.stats__item {
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.4), 0 0 5px rgba(255, 255, 255, 0.2);
  transition: text-shadow 0.3s ease;
}

/* ================================================================
   HOTFIX: Negrito forçado para títulos de seções alternadas
   (mantém apenas propriedades críticas)
================================================================ */
#detalhe-condominio .detalhe__label,
#detalhe-preconstrucao .detalhe__label {
  font-weight: 900 !important;
  font-synthesis: weight !important;
  -webkit-font-smoothing: antialiased !important;
  opacity: 1 !important;                     /* anula o opacity: 0.6 da classe .detalhe--alt */
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor !important;
}

/* ================================================================
   16. RESPONSIVO
================================================================ */

/* Telas grandes (acima de 1440px) — sem centralização forçada,
   layout permanece igual ao 1440px */
@media (min-width: 1441px) {
  :root {
    --padding-h: 80px; /* aumenta padding lateral suavemente */
  }
}

/* Telas muito grandes (2560px+) — leve aumento de padding */
@media (min-width: 2560px) {
  :root {
    --padding-h: 120px;
  }
}

/* Tablets e telas médias */
@media (max-width: 1200px) {
  :root {
    --padding-h: 48px;
  }

  .clientes__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__tagline {
    display: none;
  }
}

/* Mobile landscape / tablets pequenos */
@media (max-width: 900px) {
  :root {
    --padding-h: 32px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sobre__texto-col {
    transform: none;
    margin-top: 5rem;
    padding-left: var(--padding-h);
    padding-right: var(--padding-h);
    max-width: 100%;
  }

  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clientes__inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .clientes__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .stats__divisor {
    width: 80px;
    height: 1px;
  }

  .detalhe__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .detalhe__grid--invertido .detalhe__foto-col {
    order: unset;
  }

  .detalhe__lista {
    grid-template-columns: 1fr;
  }

  .footer__topo {
    flex-direction: column;
  }

  .footer__colunas {
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  :root {
    --padding-h: 20px;
  }

  .servicos__grid {
    grid-template-columns: 1fr;
  }

  .clientes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .cliente-item {
    max-width: 82px;
  }

  .clientes__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
  }

.clientes__titulo {
  font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  text-align: center;
  text-align-last: auto;
  max-width: 100%;
  word-spacing: normal;
}

  .br-mobile {
  display: inline;
}

  .hero {
    padding-left: var(--padding-h);
    padding-right: var(--padding-h);
  }

  .hero__subtitulo {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: -0.15rem;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: justify;
    max-width: 100%;
  }

  .hero .btn--glass {
    font-size: 1rem;
    padding: 0.6rem 2rem;
  }

  /* Detalhe — imagem sempre primeiro no mobile */
#detalhe-pleitos .detalhe__foto-col,
#detalhe-gestao .detalhe__foto-col {
  order: -1;
}

/* Footer mobile */
.footer__topo > .footer__brand,
.footer__topo > .footer__colunas,
.footer__topo > .footer__tagline {
  display: none;
}

.footer__mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem var(--padding-h);
  align-items: start;
}

.footer__mobile-col-esq {
  display: flex;
  flex-direction: column;
  gap: 0rem;   /* antes: 1.5rem */
}

.footer__mobile-col-dir {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3rem;
}

.footer__logo-mobile {
  height: 150px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(221,71,25,0.5)) drop-shadow(0 0 2px rgba(255,255,255,0.4));
  margin-left: -16px;
}

.footer__link {
  font-size: 0.7rem;
  word-break: break-all;
}

/* Efeito neon na borda das bolinhas (clientes) */
.cliente-item.neon-destaque {
  border: 2px solid var(--laranja);
  box-shadow: 0 0 8px 2px rgba(5, 5, 5, 0.8), 0 0 15px 4px rgba(221, 71, 25, 0.5);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

/* Centraliza o botão do CTA */
.cta .btn--glass {
  align-self: center;
  margin-top: 2rem; 
}
}