/* ==========================================================================
   TRANS MINEIRINHO: Locação de Equipamentos
   Design system conforme DESIGN.md (Fase 2 da skill site-premium)
   Base #101820 · Apoio #D9DBDD · Ação #FF6A13
   Cabinet Grotesk (display) + Switzer (corpo): Fontshare
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Superfícies */
  --surface-base:    #101820;
  --surface-raised:  #18222c;
  --surface-deep:    #0b1016;
  --surface-light:   #d9dbdd;
  --surface-paper:   #ffffff;

  /* Texto */
  --text-primary:    #ffffff;
  --text-secondary:  #9aa3ab;
  --text-muted:      #6b747c;
  --text-inverse:    #101820;
  --text-inverse-2:  #4a545e;

  /* Ação: usada SOMENTE em elemento acionável */
  --action:          #ff6a13;
  --action-hover:    #ff8236;
  --action-ghost:    rgba(255, 106, 19, .12);

  /* Estados do seletor de guindaste */
  --state-safe:      #4ade80;
  --state-warning:   #fbbf24;
  --state-danger:    #ef4444;

  /* Linhas */
  --hairline:        rgba(255, 255, 255, .10);
  --hairline-strong: rgba(255, 255, 255, .20);
  --hairline-dark:   rgba(16, 24, 32, .14);

  /* Escala de espaçamento, ratio 1.5 */
  --s1: 8px;   --s2: 12px;  --s3: 18px;  --s4: 28px;
  --s5: 42px;  --s6: 64px;  --s7: 96px;  --s8: 144px;

  /* Geometria: canto quase reto. O setor é metálico, não é app de banco. */
  --r-btn: 2px;
  --r-card: 4px;

  --container: 1240px;
  --nav-h: 76px;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET E BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-base);
  color: var(--text-primary);
  font-family: 'Switzer', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; }

::selection { background: var(--action); color: var(--surface-base); }

:focus-visible {
  outline: 2px solid var(--action);
  outline-offset: 3px;
}

/* Grão de filme: pseudo-elemento com data-URI.
   NUNCA filter: no elemento: recalcula por pixel a cada frame e mata o mobile. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   3. TIPOGRAFIA
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Cabinet Grotesk', 'Switzer', system-ui, sans-serif;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(38px, 6vw, 86px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.015em;
}

p { margin: 0 0 var(--s3); }
p:last-child { margin-bottom: 0; }

/* Rótulo de seção: quadrado sólido + texto espaçado.
   Dispositivo emprestado da T1 Energy, faz o rótulo parecer mostrador de instrumento. */
.rotulo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--s3);
}
.rotulo::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--action);
  flex: none;
}
.secao--clara .rotulo { color: var(--text-inverse-2); }

/* Dado técnico: número grande com unidade menor */
.dado {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dado__un {
  font-size: .42em;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-left: .12em;
}

.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-secondary);
  max-width: 62ch;
}
.secao--clara .lead { color: var(--text-inverse-2); }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.secao { padding: clamp(72px, 10vw, 144px) 0; position: relative; }
.secao--clara { background: var(--surface-light); color: var(--text-inverse); }
.secao--elevada { background: var(--surface-raised); }
.secao--funda { background: var(--surface-deep); }

.secao__topo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: var(--s5);
  align-items: end;
  margin-bottom: var(--s6);
}
@media (max-width: 860px) {
  .secao__topo { grid-template-columns: 1fr; gap: var(--s3); margin-bottom: var(--s5); }
}

/* --------------------------------------------------------------------------
   5. BOTÕES
   Texto sobre o laranja é SEMPRE #101820. Branco sobre #FF6A13 dá 2,9:1 e reprova.
   É a mesma lógica do EPI de alta visibilidade na vida real.
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-btn);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .12s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--acao { background: var(--action); color: var(--surface-base); }
.btn--acao:hover { background: var(--action-hover); }

.btn--linha {
  border: 1px solid var(--hairline-strong);
  color: var(--text-primary);
}
.btn--linha:hover { border-color: var(--action); color: var(--action); }

.secao--clara .btn--linha { border-color: var(--hairline-dark); color: var(--text-inverse); }
.secao--clara .btn--linha:hover { border-color: var(--action); color: var(--action); }

.btn--bloco { width: 100%; }

/* Link com seta que avança no hover */
.link-seta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--action);
}
.link-seta svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.link-seta:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   6. NAVEGAÇÃO
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--fixa {
  background: rgba(16, 24, 32, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.nav__linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  width: 100%;
}
.nav__logo img { height: 34px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--s4);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 0;
  position: relative;
  transition: color .25s var(--ease);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--action);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__menu a:hover { color: var(--text-primary); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__acoes { display: flex; align-items: center; gap: var(--s2); }
.nav__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
  transition: color .25s var(--ease);
}
.nav__tel svg { width: 16px; height: 16px; color: var(--action); }
.nav__tel:hover { color: var(--action); }

.nav__btn { padding: 12px 20px; font-size: 12px; }

.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: background .2s var(--ease);
}
.nav__hamburger span::before,
.nav__hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--text-primary);
  transition: transform .3s var(--ease);
}
.nav__hamburger span::before { top: -7px; }
.nav__hamburger span::after  { top: 7px; }
.nav.is-aberta .nav__hamburger span { background: transparent; }
.nav.is-aberta .nav__hamburger span::before { transform: translateY(7px) rotate(45deg); }
.nav.is-aberta .nav__hamburger span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1060px) {
  .nav__menu, .nav__tel { display: none; }
  .nav__hamburger { display: flex; }
  .nav--fixa, .nav.is-aberta { background: rgba(16, 24, 32, .96); }

  .nav__painel {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: var(--surface-base);
    border-bottom: 1px solid var(--hairline);
    padding: var(--s4) 24px var(--s5);
    display: grid;
    gap: var(--s2);
    transform: translateY(-105%);
    transition: transform .45s var(--ease), visibility .45s var(--ease);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    /* Fechado, o painel nao pode interceptar o clique do hamburguer que fica embaixo dele */
    visibility: hidden;
    pointer-events: none;
  }
  .nav.is-aberta .nav__painel {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav__painel a {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -.01em;
    padding: 10px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .nav__painel .btn { margin-top: var(--s3); }
}
@media (min-width: 1061px) { .nav__painel { display: none; } }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + var(--s6)) 0 var(--s6);
  overflow: hidden;
}
.hero__midia {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__midia video,
.hero__midia img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.12) saturate(.85);
}
/* Gradiente de leitura só onde existe texto. Nada de overlay preto chapado. */
.hero__midia::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 16, 22, .94) 0%, rgba(11, 16, 22, .78) 38%, rgba(11, 16, 22, .18) 72%, rgba(11, 16, 22, .45) 100%),
    linear-gradient(0deg, rgba(11, 16, 22, .85) 0%, transparent 42%);
}
.hero__conteudo { position: relative; z-index: 1; max-width: 900px; }

.hero h1 { margin-bottom: var(--s4); }
/* A mascara da animacao cortava o acento de VOCE e DE em caixa alta.
   O padding abre a caixa de recorte para cima sem perder o efeito. */
.hero h1 .linha {
  display: block;
  overflow: hidden;
  padding-top: .14em;
  margin-top: -.14em;
}
.hero h1 .linha > span { display: block; }
/* Enfase por tom, nao por cor: o laranja fica reservado ao botao de acao. */
.hero h1 em {
  font-style: normal;
  color: #b9c2ca;
}

.hero__apoio {
  font-size: clamp(16px, 1.5vw, 19px);
  color: #c5ccd3;
  max-width: 54ch;
  margin-bottom: var(--s5);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s2); }

/* Faixa técnica no rodapé do hero */
.hero__faixa {
  position: relative;
  z-index: 1;
  margin-top: var(--s6);
  padding-top: var(--s4);
  border-top: 1px solid var(--hairline-strong);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.hero__faixa div { display: flex; flex-direction: column; gap: 4px; }
.hero__faixa .dado { font-size: clamp(26px, 3vw, 38px); }
.hero__faixa span:last-child {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
@media (max-width: 760px) {
  .hero__faixa { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
  .hero { min-height: 92svh; }
}

/* --------------------------------------------------------------------------
   8. CLIENTES
   -------------------------------------------------------------------------- */
/* Faixa clara. Logo de cliente entra na cor original da marca, e cor de marca
   so se comporta bem sobre fundo claro. Alem disso a faixa branca corta o
   escuro entre o hero e o seletor, dando respiro ao ritmo da pagina. */
.clientes {
  background: var(--surface-paper);
  color: var(--text-inverse);
  padding: var(--s5) 0 var(--s6);
}
.clientes__titulo {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-inverse-2);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--s4);
}
.clientes__titulo::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--action);
  flex: none;
}

/* Mural de logos: cinco colunas iguais separadas por fio.
   Logos na cor original, com fundo transparente. Nenhum filtro de cor. */
.clientes__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}
.clientes__logos a,
.clientes__logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s4) var(--s3);
  border-right: 1px solid var(--hairline-dark);
  min-height: 132px;
}
.clientes__logos > *:last-child { border-right: 0; }
.clientes__logos img {
  max-height: 72px;
  max-width: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .35s var(--ease);
}
.clientes__logos > *:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .clientes__logos { grid-template-columns: repeat(3, 1fr); }
  .clientes__logos a, .clientes__logos span { min-height: 110px; padding: var(--s3) var(--s2); }
  .clientes__logos > *:nth-child(3n) { border-right: 0; }
  .clientes__logos > *:nth-child(-n+3) { border-bottom: 1px solid var(--hairline-dark); }
  .clientes__logos img { max-height: 58px; max-width: 142px; }
}
@media (max-width: 520px) {
  .clientes__logos { grid-template-columns: repeat(2, 1fr); }
  .clientes__logos > * { border-right: 1px solid var(--hairline-dark); border-bottom: 1px solid var(--hairline-dark); }
  .clientes__logos > *:nth-child(2n) { border-right: 0; }
  .clientes__logos > *:last-child { border-bottom: 0; grid-column: 1 / -1; }
  .clientes__logos img { max-height: 50px; max-width: 128px; }
}

/* --------------------------------------------------------------------------
   9. SELETOR DE GUINDASTE: o elemento exclusivo do projeto
   -------------------------------------------------------------------------- */
.seletor__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: var(--s6);
  align-items: start;
}
@media (max-width: 980px) { .seletor__grid { grid-template-columns: 1fr; gap: var(--s5); } }

.campo { margin-bottom: var(--s4); }
.campo__topo {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.campo label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.campo__valor {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.campo__valor b { color: var(--action); font-weight: 700; }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--hairline-strong);
  outline: none;
  margin: 12px 0 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  background: var(--action);
  border: 4px solid var(--surface-base);
  cursor: grab;
  transition: transform .18s var(--ease);
}
input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.18); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--action);
  border: 4px solid var(--surface-base);
  border-radius: 0;
  cursor: grab;
}

.campo__escala {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  margin-top: 8px;
}

.campo__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 16px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-btn);
  font-size: 13px;
  color: var(--text-secondary);
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--hairline-strong); color: var(--text-primary); }
.chip.is-ativo {
  background: var(--action-ghost);
  border-color: var(--action);
  color: var(--action);
}

/* Aviso de teto da frota: aparece quando um controle chega no limite */
.limite {
  margin: var(--s4) 0 0;
  padding: var(--s3);
  border-left: 2px solid var(--action);
  background: var(--action-ghost);
  font-size: 14px;
  line-height: 1.6;
  color: #e4e8eb;
}
.limite a {
  color: var(--action);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.limite[hidden] { display: none; }

/* Resultado */
.resultado {
  background: var(--surface-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--s5);
  position: relative;
  overflow: hidden;
}
.resultado::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--action);
}
.resultado__rotulo {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: var(--s1);
}
.resultado__equip {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: var(--s2);
}
.resultado__sub { color: var(--text-secondary); font-size: 15px; margin-bottom: var(--s4); }

.resultado__metricas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  padding: var(--s4) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: var(--s4);
}
.resultado__metricas div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  min-height: 62px;   /* trava a linha de base mesmo quando um rotulo quebra */
}
.resultado__metricas .dado { font-size: clamp(21px, 2.4vw, 30px); }
.resultado__metricas span:last-child {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 520px) { .resultado__metricas { grid-template-columns: 1fr 1fr; } }

/* Barra de uso da carta de carga */
.barra { margin-bottom: var(--s4); }
.barra__topo {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.barra__topo b {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}
.barra__trilho { height: 6px; background: rgba(255,255,255,.08); overflow: hidden; }
.barra__preenche {
  height: 100%;
  width: 0;
  background: var(--state-safe);
  transition: width .6s var(--ease), background .4s var(--ease);
}
.barra__legenda {
  display: flex;
  gap: var(--s3);
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
}
.barra__legenda i {
  display: inline-block;
  width: 8px; height: 8px;
  margin-right: 6px;
  vertical-align: baseline;
}

.alerta {
  display: flex;
  gap: var(--s2);
  padding: var(--s3);
  border: 1px solid;
  border-radius: var(--r-card);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: var(--s4);
}
.alerta svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.alerta--ok     { border-color: rgba(74, 222, 128, .34);  background: rgba(74, 222, 128, .07);  color: #b8f0cd; }
.alerta--atencao{ border-color: rgba(251, 191, 36, .38);  background: rgba(251, 191, 36, .08);  color: #f6dfa3; }
.alerta--erro   { border-color: rgba(239, 68, 68, .38);   background: rgba(239, 68, 68, .08);   color: #f6b4b4; }

.resultado__aviso {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--hairline);
}

/* --------------------------------------------------------------------------
   10. FROTA
   -------------------------------------------------------------------------- */
.frota__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.equip {
  background: var(--surface-base);
  padding: 0 0 var(--s4);
  transition: background .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.equip:hover { background: var(--surface-raised); }
.equip__foto { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.equip__foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
  filter: contrast(1.08) saturate(.88);
}
.equip:hover .equip__foto img { transform: scale(1.045); }
.equip__tag {
  position: absolute;
  top: var(--s2); left: var(--s2);
  background: var(--surface-base);
  color: var(--action);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.equip__corpo { padding: var(--s4) var(--s4) 0; flex: 1; display: flex; flex-direction: column; }
.equip h3 { margin-bottom: var(--s1); }
.equip__desc { font-size: 14px; color: var(--text-secondary); margin-bottom: var(--s3); flex: 1; }
.equip__specs {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.equip__specs div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
}
.equip__specs dt { color: var(--text-muted); }
.equip__specs dd {
  margin: 0;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}

/* Fecha a ultima linha da grade em vez de deixar celula vazia */
.equip--cta {
  grid-column: span 2;
  background: var(--surface-raised);
  padding: var(--s5);
  justify-content: center;
}
.equip--cta:hover { background: var(--surface-raised); }
.equip--cta h3 { margin-bottom: var(--s2); max-width: 22ch; }
.equip--cta .equip__desc { max-width: 56ch; margin-bottom: var(--s4); }
@media (max-width: 700px) { .equip--cta { grid-column: span 1; padding: var(--s4); } }

/* --------------------------------------------------------------------------
   11. SERVIÇOS POR SEGMENTO: layout assimétrico, sem grid de 3 cards iguais
   -------------------------------------------------------------------------- */
.servicos__lista { border-top: 1px solid var(--hairline-dark); }
.servico {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) minmax(0, 1.1fr) 40px;
  gap: var(--s4);
  align-items: center;
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--hairline-dark);
  transition: padding-left .4s var(--ease);
  position: relative;
}
.servico::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--action);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s var(--ease);
}
.servico:hover { padding-left: var(--s3); }
.servico:hover::before { transform: scaleY(1); }
.servico__num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--action);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}
.servico h3 { text-transform: none; }
.servico__texto { font-size: 15px; color: var(--text-inverse-2); }
.servico__ir {
  width: 40px; height: 40px;
  border: 1px solid var(--hairline-dark);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.servico__ir svg { width: 16px; height: 16px; }
.servico:hover .servico__ir { background: var(--action); border-color: var(--action); color: var(--surface-base); }
@media (max-width: 900px) {
  .servico { grid-template-columns: 44px 1fr; gap: var(--s2) var(--s3); }
  .servico__texto { grid-column: 2; }
  .servico__ir { display: none; }
}

/* --------------------------------------------------------------------------
   12. CONFORMIDADE
   -------------------------------------------------------------------------- */
.conformidade__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s6);
  align-items: start;
}
@media (max-width: 940px) { .conformidade__grid { grid-template-columns: 1fr; gap: var(--s5); } }

.norma {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--s3);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--hairline);
}
.norma:first-child { border-top: 1px solid var(--hairline); }
.norma__cod {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--action);
}
.norma h3 { font-size: 17px; margin-bottom: 5px; }
.norma p { font-size: 14px; color: var(--text-secondary); margin: 0; }
@media (max-width: 560px) { .norma { grid-template-columns: 1fr; gap: 6px; } }

.entrega {
  background: var(--surface-raised);
  border: 1px solid var(--hairline);
  padding: var(--s5);
}
.entrega__num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(54px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .9;
  color: var(--action);
  display: block;
}
.entrega__label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  margin: var(--s2) 0 var(--s4);
}
.entrega ul { list-style: none; margin: 0; padding: 0; }
.entrega li {
  display: flex;
  gap: var(--s2);
  padding: 13px 0;
  border-top: 1px solid var(--hairline);
  font-size: 15px;
  align-items: flex-start;
}
.entrega li svg { width: 17px; height: 17px; color: var(--action); flex: none; margin-top: 3px; }

/* --------------------------------------------------------------------------
   13. OBRAS
   -------------------------------------------------------------------------- */
.obras__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s2);
}
.obra {
  position: relative;
  overflow: hidden;
  background: var(--surface-raised);
  display: block;
}
.obra img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .5s var(--ease);
  filter: contrast(1.1) saturate(.85);
}
.obra:hover img { transform: scale(1.05); filter: contrast(1.14) saturate(1); }
.obra::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,16,22,.92) 0%, rgba(11,16,22,.25) 45%, transparent 72%);
}
.obra__info {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: var(--s4);
}
.obra__ton {
  display: inline-block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--action);
  margin-bottom: 6px;
}
.obra__titulo {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.obra--g  { grid-column: span 7; aspect-ratio: 16 / 10; }
.obra--m  { grid-column: span 5; aspect-ratio: 4 / 3.4; }
.obra--p  { grid-column: span 4; aspect-ratio: 1 / 1; }
@media (max-width: 900px) {
  .obra--g, .obra--m { grid-column: span 12; aspect-ratio: 16 / 11; }
  .obra--p { grid-column: span 6; }
}
@media (max-width: 560px) { .obra--p { grid-column: span 12; aspect-ratio: 4 / 3; } }

/* --------------------------------------------------------------------------
   14. PROCESSO
   -------------------------------------------------------------------------- */
.processo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.passo {
  padding: var(--s5) var(--s4) var(--s5) 0;
  border-right: 1px solid var(--hairline);
  position: relative;
}
.passo:last-child { border-right: 0; }
.passo:not(:first-child) { padding-left: var(--s4); }
.passo__num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--action);
  letter-spacing: .1em;
  display: block;
  margin-bottom: var(--s3);
}
.passo h3 { font-size: 20px; margin-bottom: var(--s2); }
.passo p { font-size: 14px; color: var(--text-secondary); margin: 0; }
@media (max-width: 900px) {
  .processo__grid { grid-template-columns: 1fr 1fr; }
  .passo { border-bottom: 1px solid var(--hairline); padding: var(--s4) var(--s3) var(--s4) 0; }
  .passo:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .processo__grid { grid-template-columns: 1fr; }
  .passo { border-right: 0; padding: var(--s4) 0; }
  .passo:not(:first-child) { padding-left: 0; }
}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--hairline-dark); }
.faq__item { border-bottom: 1px solid var(--hairline-dark); }
.faq__botao {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  padding: var(--s4) 0;
  text-align: left;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.3;
  transition: color .25s var(--ease);
}
.faq__botao:hover { color: var(--action); }
.faq__sinal {
  width: 34px; height: 34px;
  flex: none;
  border: 1px solid var(--hairline-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all .3s var(--ease);
}
.faq__sinal::before, .faq__sinal::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .35s var(--ease);
}
.faq__sinal::before { width: 13px; height: 1.5px; }
.faq__sinal::after  { width: 1.5px; height: 13px; }
.faq__item.is-aberto .faq__sinal { background: var(--action); border-color: var(--action); color: var(--surface-base); }
.faq__item.is-aberto .faq__sinal::after { transform: scaleY(0); }
.faq__resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq__resposta > div {
  padding: 0 0 var(--s4);
  max-width: 76ch;
  color: var(--text-inverse-2);
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   16. COBERTURA
   -------------------------------------------------------------------------- */
.cobertura__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: var(--s6);
  align-items: center;
}
@media (max-width: 940px) { .cobertura__grid { grid-template-columns: 1fr; gap: var(--s5); } }
.cobertura__lista {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.cobertura__lista div {
  background: var(--surface-base);
  padding: var(--s3);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s2);
  font-size: 14px;
}
.cobertura__lista b {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: var(--action);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   17. ORÇAMENTO
   -------------------------------------------------------------------------- */
.orcamento__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: var(--s6);
  align-items: start;
}
@media (max-width: 940px) { .orcamento__grid { grid-template-columns: 1fr; gap: var(--s5); } }

.form__linha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-bottom: var(--s3);
}
@media (max-width: 620px) { .form__linha { grid-template-columns: 1fr; } }

.form__campo { display: flex; flex-direction: column; gap: 8px; }
.form__campo label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form__campo input,
.form__campo select,
.form__campo textarea {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-btn);
  color: var(--text-primary);
  padding: 14px 16px;
  font-size: 16px;
  transition: border-color .25s var(--ease);
  width: 100%;
}
.form__campo select { appearance: none; background-image: none; cursor: pointer; }
.form__campo select option { background: var(--surface-base); color: var(--text-primary); }
.form__campo input::placeholder, .form__campo textarea::placeholder { color: var(--text-muted); }
.form__campo input:focus,
.form__campo select:focus,
.form__campo textarea:focus { border-color: var(--action); outline: none; }
.form__campo textarea { resize: vertical; min-height: 104px; }

.form__aviso { font-size: 12px; color: var(--text-muted); margin-top: var(--s3); line-height: 1.6; }

.contato__bloco { padding: var(--s4) 0; border-bottom: 1px solid var(--hairline); }
.contato__bloco:first-of-type { border-top: 1px solid var(--hairline); }
.contato__bloco span {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.contato__bloco a, .contato__bloco p {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin: 0;
  transition: color .25s var(--ease);
}
.contato__bloco a:hover { color: var(--action); }

/* --------------------------------------------------------------------------
   18. RODAPÉ
   -------------------------------------------------------------------------- */
.rodape { background: var(--surface-deep); padding: var(--s7) 0 var(--s4); }
.rodape__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: var(--s5);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 940px) { .rodape__grid { grid-template-columns: 1fr 1fr; gap: var(--s4); } }
@media (max-width: 560px) { .rodape__grid { grid-template-columns: 1fr; } }

.rodape__logo { height: 38px; width: auto; margin-bottom: var(--s3); }
.rodape h4 {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--s3);
}
.rodape ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.rodape li a, .rodape address a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color .25s var(--ease);
}
.rodape li a:hover, .rodape address a:hover { color: var(--action); }
.rodape address { font-style: normal; font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
.rodape__sociais { display: flex; gap: var(--s2); margin-top: var(--s3); }
.rodape__sociais a {
  width: 40px; height: 40px;
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.rodape__sociais svg { width: 17px; height: 17px; }
.rodape__sociais a:hover { border-color: var(--action); color: var(--action); }

.rodape__base {
  padding-top: var(--s4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s2);
  font-size: 12.5px;
  color: var(--text-muted);
}
.rodape__base a { transition: color .25s var(--ease); }
.rodape__base a:hover { color: var(--action); }

/* --------------------------------------------------------------------------
   19. WHATSAPP FLUTUANTE
   -------------------------------------------------------------------------- */
.wpp {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 95;
  width: 56px; height: 56px;
  background: var(--action);
  color: var(--surface-base);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .4);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.wpp:hover { background: var(--action-hover); transform: scale(1.06); }
.wpp svg { width: 27px; height: 27px; }

/* --------------------------------------------------------------------------
   20. ANIMAÇÃO DE ENTRADA
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}
.sem-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .equip__foto img, .obra img { transition: none; }
}

/* Utilitários */
.esconde-visual {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.pular-nav {
  position: absolute;
  left: -9999px;
  z-index: 200;
  padding: 14px 22px;
  background: var(--action);
  color: var(--surface-base);
  font-weight: 600;
}
.pular-nav:focus { left: 12px; top: 12px; }
