/* ===========================================================
   HAUTE — Marcenaria Corporativa
   Antes de ficar bonito, precisa dar certo.
   Cores da marca: #1a1c1b (preto) / #807f76 (verde-cinza) / #dbdbdb (cinza claro)
   Tipografia da marca: Archiv Grotesk
   =========================================================== */

@font-face {
  font-family: "Archiv Grotesk";
  src: url("../fonts/ArchivGrotesk-Light.otf") format("opentype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archiv Grotesk";
  src: url("../fonts/ArchivGrotesk-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archiv Grotesk";
  src: url("../fonts/ArchivGrotesk-Normal.otf") format("opentype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archiv Grotesk";
  src: url("../fonts/ArchivGrotesk-SemiBold.otf") format("opentype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archiv Grotesk";
  src: url("../fonts/ArchivGrotesk-Bold.otf") format("opentype");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --preto: #1a1c1b;
  --preto-2: #232523;
  --verde-cinza: #807f76;
  --verde-cinza-suave: #aca9a0;
  --cinza-claro: #dbdbdb;
  --branco: #f7f6f4;
  --branco-puro: #ffffff;
  --linha: rgba(219, 219, 219, 0.14);
  --linha-clara: rgba(26, 28, 27, 0.12);
  --container: 1280px;
  --transicao: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --corte: 3.2vw;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
  font-family: "Archiv Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--branco);
  background: var(--preto);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Textura decorativa (losangos/triângulos da MIV) ---------- */
.textura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.textura svg { position: absolute; opacity: 0.5; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--verde-cinza-suave);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--verde-cinza-suave);
}
.eyebrow.escuro { color: var(--verde-cinza); }
.eyebrow.escuro::before { background: var(--verde-cinza); }

.secao-cabecalho { max-width: 700px; margin-bottom: 64px; position: relative; z-index: 1; }
.secao-cabecalho h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  margin-top: 16px;
  line-height: 1.12;
  text-transform: uppercase;
}
.secao-cabecalho p { margin-top: 20px; color: var(--verde-cinza-suave); font-size: 17px; max-width: 56ch; }
.secao-cabecalho.centro { margin-left: auto; margin-right: auto; text-align: center; }
.secao-cabecalho.centro .eyebrow { justify-content: center; }
.secao-cabecalho.centro .eyebrow::before { display: none; }
.secao-cabecalho.centro p { margin-left: auto; margin-right: auto; }
.secao-cabecalho.escuro h2 { color: var(--preto); }
.secao-cabecalho.escuro p { color: #4b4d4b; }

.botao {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: var(--transicao);
  white-space: nowrap;
}
.icone-whatsapp { flex-shrink: 0; }
.botao-solido { background: var(--branco); color: var(--preto); }
.botao-solido:hover { background: var(--verde-cinza); color: var(--branco); }
.botao-fantasma {
  background: transparent;
  color: var(--branco);
  border-color: rgba(247,246,244,0.4);
}
.botao-fantasma:hover { border-color: var(--branco); background: rgba(247,246,244,0.06); }
.botao-fantasma-escuro {
  background: transparent;
  color: var(--preto);
  border-color: rgba(26,28,27,0.35);
}
.botao-fantasma-escuro:hover { border-color: var(--preto); background: rgba(26,28,27,0.06); }
.botao-preto { background: var(--preto); color: var(--branco); }
.botao-preto:hover { background: var(--verde-cinza); }
.botao-whatsapp { background: #25d366; color: #ffffff; }
.botao-whatsapp:hover { background: #1ebe5b; }
.botao-whatsapp-discreto { background: #307249; color: #ffffff; }
.botao-whatsapp-discreto:hover { background: #275c3b; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 30px 0;
  transition: var(--transicao);
  background: transparent;
}
.header.rolado { padding: 20px 0; background: var(--preto); box-shadow: 0 4px 24px rgba(0,0,0,0.18); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header .logo { height: 36px; filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5)); transition: var(--transicao); }
.header.rolado .logo { height: 30px; }

.nav-desktop { display: flex; align-items: center; gap: 38px; }
.nav-desktop a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--branco);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  transition: var(--transicao);
  position: relative;
  padding-bottom: 4px;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--branco);
  transition: var(--transicao);
}
.nav-desktop a:hover::after { width: 100%; }

.header-acoes { display: flex; align-items: center; gap: 18px; }
.header .botao { padding: 13px 24px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 600;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--branco); transition: var(--transicao); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--preto);
}
.hero-carrossel { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.08);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s ease, transform 6s ease;
}
.hero-slide.ativo { opacity: 1; transform: scale(1); z-index: 1; }
.hero-veu {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,28,27,0.55) 0%, rgba(26,28,27,0.42) 45%, rgba(26,28,27,0.88) 100%);
}
.hero-conteudo-central {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}
.hero-conteudo-central .eyebrow { justify-content: center; }
.hero-conteudo-central .eyebrow::before { display: none; }
.hero h1 {
  line-height: 1.32;
  margin-top: 22px;
  text-transform: uppercase;
  max-width: 780px;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 34px);
}
.hero-subtitulo {
  margin-top: 20px;
  font-size: clamp(14.5px, 1.4vw, 17px);
  color: rgba(247, 246, 244, 0.78);
  max-width: 560px;
}
.hero-acoes { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-carrossel-pontos {
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-carrossel-pontos button {
  width: 28px; height: 2px;
  background: rgba(247,246,244,0.35);
  border: none;
  padding: 0;
  transition: var(--transicao);
}
.hero-carrossel-pontos button.ativo { background: var(--branco); }

/* ---------- Faixa horizontal de marcas no rodapé da capa ---------- */
.hero-marcas-faixa {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: var(--branco-puro);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
}
.hero-marcas-rotulo {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--preto);
  line-height: 1.4;
  max-width: 130px;
}
.hero-marcas-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0,0,0,1) 4%, rgba(0,0,0,1) 96%, transparent);
  mask-image: linear-gradient(to right, transparent, rgba(0,0,0,1) 4%, rgba(0,0,0,1) 96%, transparent);
}
.hero-marcas-trilha {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: rolarMarcasHero 34s linear infinite;
}
.hero-marcas-trilha .chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 87px;
}
.hero-marcas-trilha .chip img {
  height: 87px;
  width: auto;
  max-width: 276px;
  object-fit: contain;
}
@keyframes rolarMarcasHero {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Seções genéricas ---------- */
section { padding: 130px 0; position: relative; }
.fundo-preto { background: var(--preto); }
.fundo-preto-2 { background: var(--preto-2); }
.fundo-clara { background: var(--branco); color: var(--preto); }
.fundo-clara p { color: #4b4d4b; }
.fundo-cinza { background: var(--cinza-claro); color: var(--preto); }
.fundo-cinza p { color: #4b4d4b; }

.corte-topo-claro {
  clip-path: polygon(0 var(--corte), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(var(--corte) * -1);
}
.corte-topo-escuro {
  clip-path: polygon(0 0, 100% var(--corte), 100% 100%, 0 100%);
  margin-top: calc(var(--corte) * -1);
}

/* ---------- Promessa ---------- */
.promessa {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.promessa-frase {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.32;
  color: var(--branco);
}
.promessa-frase span { color: var(--verde-cinza-suave); }
.promessa-lista { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 40px; }
.promessa-item { border-top: 1px solid var(--linha); padding-top: 22px; }
.promessa-item .rotulo {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--verde-cinza-suave);
}
.promessa-item h4 { margin-top: 10px; font-size: 19px; }

/* ---------- Serviços ---------- */
.servicos-grade {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.servico-card { text-align: left; }
.servico-imagem {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}
.servico-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.servico-imagem.foco-topo img { object-position: center 15%; }
.servico-imagem.foco-base img { object-position: center 85%; }
.servico-card:hover .servico-imagem img { transform: scale(1.05); }
.servico-cabecalho {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--linha-clara);
}
.servico-numero {
  font-size: 34px;
  font-weight: 700;
  color: var(--preto);
  line-height: 1;
}
.servico-cabecalho h3 {
  font-size: 19px;
  text-transform: uppercase;
  color: var(--preto);
  padding-left: 18px;
  border-left: 1px solid var(--linha-clara);
}
.servico-card p { margin-top: 14px; font-size: 14.5px; color: #5a5c5a; line-height: 1.55; }
.servicos-acao { margin-top: 56px; text-align: center; }
#portfolio .secao-cabecalho { max-width: 760px; }
#portfolio .secao-cabecalho h2 { font-weight: 400; }
#portfolio .secao-cabecalho h2 strong { font-weight: 700; }
#portfolio .secao-cabecalho h2 .linha-confianca {
  display: inline-block;
  font-size: clamp(10.5px, 3.4vw, 28px);
  line-height: 1.3;
  white-space: nowrap;
}
#portfolio .secao-cabecalho h2 .linha-entrega {
  display: inline-block;
  font-size: clamp(15px, 5vw, 42px);
  line-height: 1.2;
  white-space: nowrap;
}
#servicos .secao-cabecalho { max-width: 920px; }
#servicos .secao-cabecalho h2 { font-size: clamp(18px, 2vw, 24px); font-weight: 400; line-height: 1.4; }
#servicos .secao-cabecalho h2 strong { font-weight: 700; }
@media (min-width: 761px) {
  #servicos .secao-cabecalho h2 strong { white-space: nowrap; }
}

/* ---------- Sobre nós ---------- */
.sobre-grade {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.sobre-mosaico {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 130px);
  gap: 8px;
}
.sobre-mosaico img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.sobre-mosaico .item-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.sobre-mosaico .item-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.sobre-mosaico .item-3 { grid-column: 4 / 5; grid-row: 1 / 3; }
.sobre-mosaico .item-4 { grid-column: 3 / 4; grid-row: 2 / 3; }
.sobre-mosaico .item-5 { grid-column: 1 / 2; grid-row: 3 / 4; }
.sobre-mosaico .item-6 { grid-column: 2 / 5; grid-row: 3 / 4; }
.sobre-mosaico .item-2 { object-position: center 65%; }
.sobre-mosaico .item-6 { object-position: center 20%; }
.sobre-texto .eyebrow { margin-bottom: 22px; }
.sobre-titulo {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--preto);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.sobre-texto p { font-size: 16.5px; line-height: 1.6; color: #3f413f; }
.sobre-texto p + p { margin-top: 18px; }

/* ---------- Pilares (Segurança / Processo / Prova...) ---------- */
.pilares-grade {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linha);
  border: 1px solid var(--linha);
}
.pilar-card { background: var(--preto); padding: 44px 34px; transition: var(--transicao); }
.pilar-card:hover { background: var(--preto-2); }
.pilar-indice {
  width: 42px; height: 42px;
  border: 1px solid var(--verde-cinza);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--verde-cinza-suave);
  margin-bottom: 24px;
}
.pilar-card h3 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--verde-cinza-suave); }
.pilar-card p.afirmacao { margin-top: 12px; font-size: 20px; font-weight: 600; line-height: 1.3; }
.pilar-card p.detalhe { margin-top: 14px; font-size: 13.5px; color: var(--verde-cinza-suave); }

/* ---------- Portfólio ---------- */
.filtro-portfolio { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 52px; position: relative; z-index: 1; }
.filtro-portfolio button {
  background: none;
  border: 1px solid var(--linha);
  padding: 11px 22px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde-cinza-suave);
  transition: var(--transicao);
}
.filtro-portfolio button.ativo,
.filtro-portfolio button:hover { background: var(--branco); border-color: var(--branco); color: var(--preto); }

.galeria { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.galeria-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 1 / 1; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5); transition: transform 0.7s ease, filter 0.5s ease; }
.galeria-item:hover img { transform: scale(1.06); filter: grayscale(0); }
.galeria-legenda {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(0deg, rgba(26,28,27,0.92), transparent);
  opacity: 0; transform: translateY(8px); transition: var(--transicao);
}
.galeria-item:hover .galeria-legenda { opacity: 1; transform: translateY(0); }
.galeria-legenda span { display: block; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--verde-cinza-suave); }
.galeria-legenda strong { font-size: 15px; font-weight: 600; color: var(--branco); }

.lightbox {
  position: fixed; inset: 0; background: rgba(10, 11, 10, 0.97);
  display: none; align-items: center; justify-content: center; z-index: 1000; padding: 40px;
}
.lightbox.aberto { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; }
.lightbox-fechar, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--branco);
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: var(--transicao);
}
.lightbox-fechar:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.16); }
.lightbox-fechar { top: 28px; right: 28px; }
.lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-legenda { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; color: var(--verde-cinza-suave); font-size: 13px; letter-spacing: 0.04em; }

/* ---------- Clientes ---------- */
.clientes-viewport {
  overflow: hidden;
  margin-top: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.clientes-trilha {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  padding: 44px 0;
  animation: rolarClientes 65s linear infinite;
}
.clientes-trilha:hover { animation-play-state: paused; }
.clientes-trilha .cliente-logo { flex-shrink: 0; display: flex; align-items: center; justify-content: center; height: 240px; }
.clientes-trilha .cliente-logo img { max-height: 220px; max-width: 460px; object-fit: contain; filter: grayscale(1); opacity: 0.65; transition: var(--transicao); }
.clientes-trilha .cliente-logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
@keyframes rolarClientes {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Feedbacks (Google) ---------- */
.feedbacks-bloco { margin-top: 90px; }
.feedbacks-cabecalho {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.feedbacks-nota { display: flex; align-items: center; gap: 8px; }
.feedbacks-nota strong { font-size: 22px; color: var(--preto); }
.feedbacks-estrelas { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.feedbacks-cabecalho a { font-size: 13.5px; font-weight: 700; color: var(--preto); text-decoration: underline; text-underline-offset: 3px; }
.feedbacks-cabecalho a:hover { color: var(--verde-cinza); }
.feedbacks-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.feedbacks-trilha {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: rolarFeedbacks 46s linear infinite;
}
.feedbacks-trilha:hover { animation-play-state: paused; }
.feedback-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--branco-puro);
  border: 1px solid var(--linha-clara);
  border-radius: 8px;
  padding: 28px;
}
.feedback-card .estrelas { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
.feedback-card p { margin-top: 14px; font-size: 15px; line-height: 1.6; color: #3f413f; }
.feedback-card .autor { margin-top: 20px; font-size: 13px; font-weight: 700; color: var(--preto); }
@keyframes rolarFeedbacks {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.feedbacks-acao { margin-top: 40px; text-align: center; }

/* ---------- Instagram ---------- */
.instagram-conteudo { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: center; }
.instagram-video-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border: 1px solid var(--linha);
}
.instagram-video { display: block; width: 100%; height: auto; background: var(--preto-2); }
.instagram-texto h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  text-transform: uppercase;
  line-height: 1.25;
}
.instagram-texto p { margin-top: 16px; color: var(--verde-cinza-suave); font-size: 17px; max-width: 46ch; }
.botao-instagram {
  margin-top: 30px;
  background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
  color: #fff;
  border: none;
}
.botao-instagram:hover { filter: brightness(1.1); }

/* ---------- Equipe / Pessoas ---------- */
.equipe-grade { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.equipe-imagem { position: relative; clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%); }
.equipe-texto p { font-size: 16.5px; color: var(--verde-cinza-suave); }
.equipe-texto p + p { margin-top: 16px; }
.equipe-lista { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.equipe-lista .linha { display: flex; gap: 14px; align-items: baseline; border-top: 1px solid var(--linha); padding-top: 16px; }
.equipe-lista .linha span:first-child { font-size: 12px; color: var(--verde-cinza); font-weight: 700; letter-spacing: 0.06em; width: 90px; flex-shrink: 0; }
.equipe-lista .linha span:last-child { font-size: 15px; }

/* ---------- Blog ---------- */
/* ---------- Perguntas Frequentes ---------- */
.faq-lista { display: flex; flex-direction: column; gap: 1px; background: var(--linha-clara); border: 1px solid var(--linha-clara); }
.faq-item { background: var(--branco-puro); padding: 8px 32px; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--preto);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--verde-cinza);
  transition: var(--transicao);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: 24px; margin-top: -6px; font-size: 15px; line-height: 1.65; color: #5a5c5a; max-width: 78ch; }

/* ---------- Contato ---------- */
.contato-grade { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
.contato-info h2 { font-size: clamp(28px, 3.4vw, 42px); text-transform: uppercase; }
.contato-info > p { margin-top: 18px; color: var(--verde-cinza-suave); font-size: 16px; max-width: 44ch; }
.contato-lista { margin-top: 44px; display: flex; flex-direction: column; gap: 24px; }
.contato-lista .item span { display: block; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--verde-cinza); margin-bottom: 6px; }
.contato-lista .item a, .contato-lista .item p { font-size: 17px; color: var(--branco); }
.contato-lista .item a:hover { color: var(--verde-cinza-suave); }
.contato-mapa { margin-top: 44px; overflow: hidden; filter: grayscale(0.55) invert(0.92) contrast(0.9); border: 1px solid var(--linha); }
.contato-mapa iframe { width: 100%; height: 220px; border: 0; display: block; }

.formulario { background: var(--branco-puro); color: var(--preto); padding: 48px; }
.campo { margin-bottom: 22px; }
.campo label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--verde-cinza); margin-bottom: 8px; }
.campo input, .campo select, .campo textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--linha-clara); padding: 12px 2px;
  font-family: inherit; font-size: 15px; background: transparent; color: var(--preto); transition: var(--transicao);
}
.campo input:focus, .campo select:focus, .campo textarea:focus { outline: none; border-color: var(--preto); }
.campo-dupla { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.formulario .botao { width: 100%; justify-content: center; margin-top: 8px; }
.formulario-nota { margin-top: 16px; font-size: 12px; color: var(--verde-cinza); }

/* ---------- Footer ---------- */
.rodape { background: var(--preto); color: var(--verde-cinza-suave); padding: 70px 0 28px; border-top: 1px solid var(--linha); }
.rodape-topo { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--linha); }
.rodape-logo img { height: 22px; }
.rodape-logo p { margin-top: 18px; max-width: 34ch; font-size: 13.5px; }
.rodape-colunas { display: flex; gap: 64px; flex-wrap: wrap; }
.rodape-coluna h5 { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--branco); margin-bottom: 18px; }
.rodape-coluna a, .rodape-coluna p { display: block; font-size: 14px; margin-bottom: 10px; color: var(--verde-cinza-suave); }
.rodape-coluna a:hover { color: var(--branco); }
.rodape-base { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-flutuante {
  position: fixed; right: 26px; bottom: 26px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--branco); color: var(--preto);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px rgba(0,0,0,0.4);
  transition: var(--transicao);
}
.whatsapp-flutuante:hover { background: var(--verde-cinza); color: var(--branco); transform: translateY(-2px); }

/* ---------- Nav mobile ---------- */
.nav-mobile {
  position: fixed; inset: 0; background: var(--preto); color: var(--branco); z-index: 550;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateY(-100%); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-mobile.aberto { transform: translateY(0); }
.nav-mobile a { font-size: 21px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; }
.nav-mobile .botao { margin-top: 12px; }

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .hero-marcas-faixa { padding: 16px 24px; gap: 20px; }
  .hero-marcas-trilha .chip, .hero-marcas-trilha .chip img { height: 64px; }
  .servicos-grade, .pilares-grade { grid-template-columns: repeat(2, 1fr); }
  .sobre-grade { grid-template-columns: 1fr; gap: 48px; }
  .sobre-mosaico { max-width: 540px; margin: 0 auto; grid-template-rows: repeat(3, 120px); }
  .galeria { grid-template-columns: repeat(3, 1fr); }
  .instagram-conteudo { grid-template-columns: 240px 1fr; gap: 40px; }
  .clientes-trilha { gap: 80px; }
  .clientes-trilha .cliente-logo { height: 190px; }
  .clientes-trilha .cliente-logo img { max-height: 172px; max-width: 380px; }
  .contato-grade { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { padding: 0 22px; }
  section { padding: 90px 0; }
  :root { --corte: 6vw; }
  .nav-desktop, .header-acoes .botao { display: none; }
  .menu-toggle { display: flex; }
  .hero-conteudo-central { padding-top: 110px; }
  .hero h1 { max-width: 100%; font-size: clamp(19px, 6.2vw, 28px); }
  .hero-subtitulo { font-size: clamp(12px, calc(5vw - 2.2px), 17px); max-width: 100%; }
  #servicos .secao-cabecalho h2 { font-size: clamp(10px, calc(3.65vw - 1.6px), 18px); }
  #servicos .secao-cabecalho p { font-size: clamp(12px, calc(5.4vw - 2.4px), 17px); }
  .hero-carrossel-pontos { display: none; }
  .hero-marcas-faixa { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 20px; }
  .hero-marcas-rotulo { max-width: 100%; }
  .hero-marcas-viewport { width: 100%; }
  .hero-marcas-trilha .chip, .hero-marcas-trilha .chip img { height: 51px; }
  .servicos-grade { grid-template-columns: 1fr; gap: 36px; }
  .clientes-trilha { gap: 48px; }
  .clientes-trilha .cliente-logo { height: 130px; }
  .clientes-trilha .cliente-logo img { max-height: 116px; max-width: 260px; }
  .faq-item { padding: 4px 20px; }
  .faq-item summary { font-size: 15.5px; padding: 18px 0; }
  .galeria { grid-template-columns: repeat(2, 1fr); }
  .instagram-conteudo { grid-template-columns: 1fr; gap: 28px; text-align: center; justify-items: center; }
  .instagram-video-wrap { max-width: 240px; }
  .instagram-texto p { margin-left: auto; margin-right: auto; }
  .feedbacks-bloco { margin-top: 64px; }
  .feedback-card { width: 260px; padding: 22px; }
  .campo-dupla { grid-template-columns: 1fr; }
  .sobre-mosaico { max-width: 100%; grid-template-rows: repeat(3, 90px); gap: 6px; }
  .formulario { padding: 32px 24px; }
  .rodape-colunas { gap: 36px; }
}
