/* ============================================================
   Estilos compartilhados de seção + páginas internas
   (carregado por todas as páginas; a home também carrega home.css)
   ============================================================ */

/* ---------- Compartilhado: cabeçalho de seção / botões ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-top: 1.3rem; }
.sec-head .lede { margin-top: 1rem; }
/* títulos de seção em Archivo Black: escala moderada (display--mass cheio é só hero).
   Vale p/ todas as páginas que carregam pages.css — páginas de unidade inclusas
   (home.css repete o mesmo valor só pra home). */
.sec-head .display--mass, .servicos__head .display--mass { font-size: clamp(1.9rem, 4.4vw, 3.4rem); line-height: .95; }
/* chip-destaque no título de seção: respiro vertical extra p/ o box branco não
   encostar na linha de cima quando o título quebra em duas linhas (line-height .95). */
.sec-head .display--mass .accent { margin-block: .24em; }
.btn--lg { padding: 1.05em 1.9em; font-size: 1.05rem; }

/* ---------- Compartilhado: faixa de números ---------- */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: clamp(32px, 4vw, 56px) 1rem; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: var(--line-dark); }
.stat__num { display: block; font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; line-height: 1; }
.stat__label { display: block; margin-top: .7rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.62); }
@media (max-width: 680px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n+1)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
}

/* ---------- Compartilhado: bloco sobre (media + texto) ---------- */
.sobre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.sobre__media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.sobre__text h2 { margin-top: .7rem; }
.sobre__text p { margin-top: 1.1rem; max-width: 52ch; }
.sobre__text .btn { margin-top: 1.8rem; }
@media (max-width: 820px) { .sobre__grid { grid-template-columns: 1fr; } .sobre__media { order: 2; } }

/* ---------- Compartilhado: serviços ---------- */
.servicos .kicker { color: #ff5a5a; }   /* vermelho claro: contraste sobre a superfície vermelho-escura */
.servicos__grid { grid-template-columns: repeat(3, 1fr); }
.servico__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; margin-bottom: 1.2rem; }
.servico__img img { width: 100%; height: 100%; object-fit: cover; }
.servico h3 { font-size: 1.25rem; }
.servico p { margin-top: .6rem; }
@media (max-width: 820px) { .servicos__grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ---------- Compartilhado: parceiros ---------- */
.parceiros-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 2vw, 28px); align-items: center; }
.parceiro { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); height: 96px; display: grid; place-items: center; padding: 1.2rem; }
.parceiro img { max-height: 46px; max-width: 80%; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .25s ease, opacity .25s ease; }
.parceiro:hover img { filter: none; opacity: 1; }
@media (max-width: 860px) { .parceiros-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .parceiros-grid { grid-template-columns: repeat(2, 1fr); } }

/* Marcas que distribuímos em marquee (sobre) — trilha contínua, logos coloridas sem caixa */
.parceiros .sec-head h2 { white-space: nowrap; max-width: none; }
.parceiros .ticker { margin-top: clamp(28px, 4vw, 48px); padding-block: clamp(6px, 1.5vw, 16px); }
.parceiros .ticker .parceiro {
  flex: 0 0 auto; height: 72px; width: auto;
  padding: 0 clamp(1rem, 2.6vw, 2.2rem);
  background: none; border: 0; border-radius: 0; place-items: center;
}
.parceiros .ticker .parceiro img { max-height: 48px; max-width: 150px; filter: none; opacity: 1; }
@media (max-width: 540px) { .parceiros .sec-head h2 { white-space: normal; } }

/* ---------- Compartilhado: conversão ---------- */
.conversao__inner { text-align: center; max-width: 760px; margin-inline: auto; }
.conversao__title { font-size: clamp(1.8rem, 4vw, 3rem); }
.conversao__sub { margin-top: 1rem; font-size: 1.1rem; color: rgba(255,255,255,.9); }
/* subtítulo do CTA em uma linha só no desktop (quebra normalmente no mobile) */
.conversao__sub { max-width: none; }
@media (min-width: 720px) { .conversao__sub { white-space: nowrap; } }
.conversao .btn, .conversao .amb { margin-top: 2rem; }

/* ---------- Hero "Nossa história" (vídeo de fundo, 100vh, números dentro) ---------- */
.hist-hero {
  position: relative; overflow: hidden; text-align: center;
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;   /* altura real da viewport no mobile (desconta a barra do navegador) */
  padding-block: clamp(74px, 10vh, 120px) clamp(38px, 6vh, 64px);
}
/* vídeo de fundo */
.hist-hero__bg { position: absolute; inset: 0; z-index: 0; }
.hist-hero__bg video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: contrast(1.04) brightness(.9);
}
/* overlay: escurece o suficiente para leitura, deixa o vídeo respirar */
.hist-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,13,13,.58) 0%, rgba(13,13,13,.4) 42%, rgba(13,13,13,.8) 100%);
}
.hist-hero__grid {
  position: relative; z-index: 2; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(22px, 3vw, 40px);
}
.hist-hero__text { max-width: 980px; margin-inline: auto; }
.hist-hero__title { margin-top: 1.4rem; font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.16; margin-inline: auto; color: #fff; }
.hist-hero__lede { margin-top: 1.2rem; max-width: 760px; margin-inline: auto; color: rgba(255,255,255,.85); }
/* rótulo em branco sobre o vídeo; "construindo" vira bloco vermelho com texto branco */
.hist-hero .kicker { color: #fff; }
.hist-hero .kicker::before { background: #fff; }
/* Heros sobre mídia mantêm a Variante A (chip vermelho, texto branco), mesmo
   carregando surface--dark: o chip branco da Variante B sumiria sobre o scrim. */
.hist-hero .accent, .page-hero .accent, .mk-hero .accent, .un-hero .accent {
  display: inline-block; line-height: 1; vertical-align: baseline;
  color: #fff; background: var(--red);
  padding: .05em .2em .11em; border-radius: 7px;
}

/* Blur-text: palavras resolvem de desfocadas/acima para nítidas (título, depois o texto) */
.blur-text__word {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(-0.34em);
  transition: opacity .6s ease, filter .6s ease, transform .6s var(--ease-weight);
  will-change: opacity, filter, transform;
}
.blur-text__word.is-in { opacity: 1; filter: blur(0); transform: none; }
/* efeito de texto mantido sob reduced-motion (decisão do cliente) */

/* faixa de números compacta, centralizada, sobre o vídeo */
.hist-hero__stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 3.4vw, 54px);
  width: fit-content; margin: clamp(26px, 3vw, 42px) auto 0;
  padding-top: clamp(20px, 2.5vw, 30px); border-top: 1px solid rgba(255,255,255,.2);
}
.hstat { display: flex; flex-direction: column; align-items: center; }
.hstat__num { font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1; color: #fff; white-space: nowrap; }
.hstat__label { margin-top: .5rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.62); }
/* mobile: os 4 números em uma única linha (sem quebrar em 2) */
@media (max-width: 560px) {
  .hist-hero__stats { flex-wrap: nowrap; gap: 10px; width: 100%; justify-content: space-between; }
  .hstat { flex: 1 1 0; min-width: 0; }
  .hstat__num { font-size: clamp(1.25rem, 6vw, 1.9rem); }
  .hstat__label { font-size: .58rem; letter-spacing: .06em; }
}

/* ---------- Hero de página interna ---------- */
.page-hero { position: relative; display: flex; align-items: flex-end; min-height: clamp(360px, 52vh, 520px); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,13,13,.55), rgba(13,13,13,.9)), linear-gradient(100deg, rgba(13,13,13,.85), rgba(13,13,13,.35)); }
.page-hero__inner { position: relative; z-index: 2; padding-block: clamp(48px, 8vh, 96px); max-width: 760px; }
.page-hero__title { margin-top: 1.4rem; font-size: clamp(2.2rem, 5.4vw, 4rem); }
.page-hero__lede { margin-top: 1.2rem; color: rgba(255,255,255,.82); max-width: 56ch; }

/* ---------- Produtos: nav de categorias + blocos ---------- */
.cat-nav { position: sticky; top: 74px; z-index: 40; background: rgba(249,249,249,.92); backdrop-filter: saturate(160%) blur(8px); border-bottom: 1px solid var(--line); }
.cat-nav__inner { display: flex; gap: .4rem; overflow-x: auto; padding-block: .7rem; scrollbar-width: none; }
.cat-nav__inner::-webkit-scrollbar { display: none; }
.cat-tab { white-space: nowrap; padding: .55rem 1rem; border-radius: 999px; font-weight: 600; font-size: .92rem; color: #444; transition: background .2s, color .2s; }
.cat-tab:hover { background: #ececec; }
.cat-tab.is-active { background: var(--red); color: #fff; }
.cat-wrap { padding-top: clamp(40px, 5vw, 64px); }
.cat-block { padding-block: clamp(32px, 4vw, 56px); border-bottom: 1px solid var(--line); scroll-margin-top: 140px; }
.cat-block:last-child { border-bottom: 0; }
.cat-block__head { margin-bottom: 1.8rem; }
.cat-block__head h2 { margin-top: 1.2rem; }
.prod-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
/* Card estilo galeria: texto no topo-esquerda, imagem no canto inferior-esquerdo (sangra p/ o canto) */
.prod-item {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.prod-item__name { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.6rem); line-height: 1.02; color: var(--red); }
.prod-item__desc { margin-top: .55rem; font-size: .95rem; line-height: 1.4; color: #555; }
.prod-item__img {
  margin-top: auto;              /* empurra p/ a base */
  align-self: flex-start;        /* mantém à esquerda */
  width: clamp(130px, 46%, 185px);
  margin-left: -1.6rem;          /* sangra até a borda esquerda */
  margin-bottom: -1.5rem;        /* sangra até a borda inferior */
  padding-top: 1rem;             /* respiro entre texto e imagem */
  pointer-events: none;
}
.prod-item__img img { display: block; width: 100%; height: auto; }
@media (max-width: 860px) { .prod-items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
  .prod-items { grid-template-columns: 1fr; }
  .prod-item { min-height: 240px; }
  .prod-item__img { width: clamp(140px, 42%, 180px); }
}

/* Banda de CTA intercalada entre categorias (convite a orçamento, abre o Vico). */
.cat-cta {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin: clamp(28px, 4vw, 44px) 0;
  padding: clamp(1.6rem, 3.2vw, 2.4rem) clamp(1.5rem, 3.4vw, 2.6rem);
  border-radius: 22px;
  background: var(--red); color: #fff;
}
.cat-cta__tx { position: relative; z-index: 1; }
.cat-cta__eyebrow {
  display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: .5rem;
}
.cat-cta__title {
  font-family: var(--display); font-weight: 400; line-height: 1.04; letter-spacing: -.01em;
  font-size: clamp(1.35rem, 1.05rem + 1.3vw, 2rem); max-width: 22ch;
}
.cat-cta__btn { position: relative; z-index: 1; flex: 0 0 auto; }
@media (max-width: 620px) {
  .cat-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .cat-cta__btn { align-self: stretch; justify-content: center; }
}

/* ---------- Página de marca ---------- */
.mk-hero { position: relative; display: flex; align-items: flex-end; min-height: clamp(420px, 60vh, 600px); overflow: hidden; }
.mk-hero__bg { position: absolute; inset: 0; z-index: 0; }
.mk-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.mk-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,13,13,.5), rgba(13,13,13,.92)), linear-gradient(100deg, rgba(13,13,13,.85), rgba(13,13,13,.3)); }
.mk-hero__inner { position: relative; z-index: 2; padding-block: clamp(48px, 8vh, 90px); max-width: 820px; }
.mk-hero__back { display: inline-block; margin-bottom: 1.4rem; font-weight: 600; font-size: .9rem; color: rgba(255,255,255,.75); }
.mk-hero__back:hover { color: #fff; }
.mk-hero__logo { margin-bottom: 1.4rem; }
.mk-hero__logo img { height: clamp(48px, 7vw, 72px); width: auto; max-width: 260px; object-fit: contain; }
.mk-hero__title { margin-top: 1.4rem; font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 18ch; }
.mk-hero .btn, .mk-hero .amb { margin-top: 1.8rem; }

.mk-sobre__grid { max-width: 820px; }
.mk-sobre .kicker { margin-bottom: 1rem; }
.mk-sobre h2 { margin-bottom: 1rem; }
.mk-pendente { display: inline-block; margin-bottom: 1rem; padding: .4em 1em; border-radius: 999px; background: #fff4e5; color: #8a5a00; font-size: .85rem; font-weight: 600; }

.mk-serv-grid { grid-template-columns: repeat(2, 1fr); }
.mk-serv { padding: 1.6rem 1.8rem; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.03); }
.mk-serv h3 { font-size: 1.2rem; }
.mk-serv p { margin-top: .5rem; }
@media (max-width: 720px) { .mk-serv-grid { grid-template-columns: 1fr; } }

.mk-unidade-grid { grid-template-columns: repeat(3, 1fr); }
.mk-unidade { padding: 1.6rem 1.7rem; }
.mk-unidade h3 { font-size: 1.3rem; }
.mk-unidade__uf { color: var(--gray); font-weight: 600; }
.mk-unidade__contato { margin-top: 1rem; display: grid; gap: .8rem; }
.mk-unidade__contato li { font-size: .95rem; color: #444; overflow-wrap: anywhere; }
.mk-unidade__contato a { overflow-wrap: anywhere; }
.mk-unidade__contato li span { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: .15rem; }
.mk-unidade__contato a:hover { color: var(--red); }
@media (max-width: 860px) { .mk-unidade-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mk-unidade-grid { grid-template-columns: 1fr; } }

.mk-cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 40px); }
.mk-cat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.8rem; box-shadow: var(--shadow-sm); }
.mk-cat h3 { font-size: 1.3rem; color: var(--ink); padding-bottom: .9rem; border-bottom: 2px solid var(--red); display: inline-block; }
.mk-cat__list { margin-top: 1.1rem; display: grid; gap: .9rem; }
.mk-cat__list li { font-size: .95rem; color: #555; line-height: 1.5; }
.mk-cat__list strong { color: var(--ink); }
@media (max-width: 720px) { .mk-cats { grid-template-columns: 1fr; } }

/* ---------- O que nos move — valores inegociáveis (lista editorial) ---------- */
.move__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.move__head { position: sticky; top: clamp(90px, 12vh, 120px); }
.move__title { margin-top: 1rem; font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: .98; letter-spacing: -.01em; }
.move__lede { margin-top: 1.2rem; color: rgba(255,255,255,.72); max-width: 40ch; }
.move__list { display: grid; }
.move__row {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(1.1rem, 3vw, 2.6rem);
  padding: clamp(1.7rem, 3.2vw, 2.6rem) 0;
  border-top: 1px solid var(--line-dark);
}
.move__row:last-child { border-bottom: 1px solid var(--line-dark); }
.move__row::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--red); transition: width .45s var(--ease-weight); }
.move__row:hover::after { width: 100%; }
.move__idx { font-size: clamp(2.8rem, 6vw, 4.8rem); line-height: .8; color: rgba(255,255,255,.16); transition: color .3s var(--ease-weight); }
.move__row:hover .move__idx { color: #ff5a5a; }
.move__name { font-family: var(--display); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1; letter-spacing: -.01em; }
.move__desc { margin-top: .7rem; color: rgba(255,255,255,.66); font-size: 1rem; line-height: 1.5; max-width: 46ch; }
.move__ic { display: grid; place-items: center; color: rgba(255,90,90,.24); transition: color .3s var(--ease-weight), transform .3s var(--ease-weight); }
.move__ic svg { width: clamp(40px, 5vw, 60px); height: auto; display: block; }
.move__row:hover .move__ic { color: #ff5a5a; transform: translateY(-2px); }
@media (max-width: 860px) {
  .move__grid { grid-template-columns: 1fr; gap: clamp(1.2rem, 4vw, 2.2rem); }
  .move__head { position: static; }
}
@media (max-width: 520px) {
  .move__row { grid-template-columns: auto 1fr; }
  .move__ic { display: none; }
}

/* ---------- Diferenciais / chips (sobre) ---------- */
.feat-grid { grid-template-columns: repeat(4, 1fr); }
.feat { padding: 1.8rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.feat__ic {
  display: grid; place-items: center; width: 48px; height: 48px;
  margin-bottom: 1.15rem; border-radius: 12px;
  color: var(--red); background: rgba(166,3,3,.08);
  transition: background .25s var(--ease-weight), transform .25s var(--ease-weight);
}
.feat__ic svg { width: 25px; height: 25px; display: block; }
.feat:hover .feat__ic { background: rgba(166,3,3,.14); transform: translateY(-2px); }
.feat h3 { font-size: 1.15rem; color: var(--red); }
.feat p { margin-top: .6rem; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feat-grid { grid-template-columns: 1fr; } }
.chips { display: flex; flex-wrap: wrap; gap: .8rem; }
.chip { padding: .7em 1.3em; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: .95rem; }

/* ---------- Quem atendemos: carrossel image-expansion (modelo pulseawan) ---------- */
.quem-atende .ie {
  margin-top: clamp(28px, 4vw, 48px);
  background: #fff; border: 0;
  border-radius: 22px; padding: clamp(16px, 2.4vw, 28px);
  box-shadow: 0 0 3px rgba(255,255,255,.5), 0 0 44px rgba(255,255,255,.26);
}
/* controles legíveis sobre o poço branco */
.quem-atende .ie__tab { background: var(--red); color: #fff; }
.quem-atende .ie__all { color: var(--red); }
.quem-atende .ie__all:hover { color: var(--red-dark); }
.quem-atende .ie__dot { background: rgba(13,13,13,.16); }
.quem-atende .ie__dot.is-on { background: var(--red); }
.quem-atende .ie__arrow { color: var(--ink); border-color: rgba(13,13,13,.2); }
.quem-atende .ie__arrow:hover { background: var(--red); border-color: var(--red); color: #fff; }
.quem-atende .ie__arrow:disabled:hover { background: transparent; border-color: rgba(13,13,13,.2); color: var(--ink); }
.ie__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: clamp(16px, 2vw, 24px); }
.ie__tab { display: inline-flex; align-items: center; padding: .6em 1.15em; border-radius: 999px; background: #fff; color: var(--ink); font-weight: 700; font-size: .9rem; }
.ie__all { color: rgba(255,255,255,.68); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .35rem; transition: color .2s ease; }
.ie__all:hover { color: #fff; }
.ie__viewport { overflow: hidden; }
.ie__track { display: flex; gap: clamp(14px, 1.6vw, 22px); transition: transform .55s var(--ease-weight); will-change: transform; }
.ie__card {
  position: relative; flex: 0 0 calc((100% - 2 * clamp(14px, 1.6vw, 22px)) / 3);
  aspect-ratio: 1 / 1; min-height: 300px;
  border-radius: 16px; overflow: hidden; background: var(--red-dark);
}
.ie__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease-weight); }
.ie__card:hover .ie__img { transform: scale(1.05); }
.ie__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(13,13,13,.1) 0%, rgba(13,13,13,0) 32%, rgba(13,13,13,.5) 64%, rgba(13,13,13,.92) 100%); }
.ie__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45em .85em; border-radius: 999px;
  background: rgba(13,13,13,.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .03em;
}
.ie__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px rgba(166,3,3,.3); }
.ie__cardfoot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(16px, 2vw, 22px); }
.ie__cardtitle { font-family: var(--display); font-weight: 400; color: #fff; font-size: clamp(1.15rem, 1.5vw, 1.5rem); line-height: 1.05; letter-spacing: -.01em; }
.ie__carddesc { margin-top: .5rem; color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.45; }
.ie__btn { display: inline-flex; margin-top: 1.05rem; padding: .6em 1.2em; border-radius: 999px; background: #fff; color: var(--ink); font-weight: 700; font-size: .85rem; transition: transform .18s ease, background .18s ease; }
.ie__btn:hover { transform: translateY(-2px); background: #f0f0f0; }
.ie__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: clamp(16px, 2vw, 24px); }
.ie__dots { display: flex; gap: 7px; }
.ie__dot { width: 26px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.2); border: 0; padding: 0; cursor: pointer; transition: background .25s ease, width .25s ease; }
.ie__dot.is-on { background: #fff; width: 40px; }
.ie__nav { display: flex; gap: 10px; }
.ie__arrow {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 1.35rem; line-height: 1;
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.22);
  transition: background .2s ease, border-color .2s ease;
}
.ie__arrow:hover { background: var(--red); border-color: var(--red); }
.ie__arrow:disabled { opacity: .32; cursor: default; }
.ie__arrow:disabled:hover { background: transparent; border-color: rgba(255,255,255,.22); }
@media (max-width: 860px) { .ie__card { flex-basis: calc((100% - clamp(14px, 1.6vw, 22px)) / 2); } }
@media (max-width: 560px) {
  .ie__card { flex-basis: 100%; }
  .ie__all { display: none; }
  /* conteúdo do card centralizado (título, texto, botão) */
  .quem-atende .ie__cardfoot { text-align: center; }
  .quem-atende .ie__carddesc { margin-inline: auto; }
  /* pagination + arrows empilhados e centralizados dentro do poço branco;
     setas viram botões vermelhos */
  .quem-atende .ie__foot { flex-direction: column; align-items: center; gap: 14px; }
  .quem-atende .ie__dots { justify-content: center; }
  .quem-atende .ie__nav { justify-content: center; }
  .quem-atende .ie__arrow { background: var(--red); border-color: var(--red); color: #fff; }
  .quem-atende .ie__arrow:hover { background: var(--red-dark); border-color: var(--red-dark); }
  .quem-atende .ie__arrow:disabled { opacity: .32; }
  .quem-atende .ie__arrow:disabled:hover { background: var(--red); border-color: var(--red); }
}

/* ---------- Contato ---------- */
.ct-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.ct-top > * { min-width: 0; }
.ct-channels h2 { margin: .6rem 0 1.4rem; }
.ct-list { display: grid; gap: 1.1rem; margin-bottom: 1.8rem; }
.ct-list li { display: grid; gap: .2rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.ct-list li span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.ct-list li a { font-size: 1.05rem; font-weight: 600; overflow-wrap: anywhere; }
.ct-list li a:hover { color: var(--red); }
.ct-social { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; }
.ct-social a { font-weight: 600; }
.ct-social a:hover { color: var(--red); }
.ct-widget__box { background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); min-height: 220px; display: flex; flex-direction: column; justify-content: center; }
.ct-widget__box h3 { font-size: 1.4rem; }
.ct-widget__box p { margin-top: .8rem; }
.ct-unidades { grid-template-columns: repeat(3, 1fr); }
.ct-unidade { padding: 1.5rem 1.6rem; }
.ct-unidade__brand { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.ct-unidade h3 { font-size: 1.25rem; margin-top: .25rem; }
@media (max-width: 860px) { .ct-top { grid-template-columns: 1fr; } .ct-unidades { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ct-unidades { grid-template-columns: 1fr; } }

/* ---------- Trabalhe Conosco ---------- */
.tc-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.tc-grid > * { min-width: 0; }

/* Intro / contexto (coluna esquerda) */
.tc-intro { position: sticky; top: 96px; }
.tc-intro h2 { margin-top: .8rem; font-size: clamp(1.9rem, 4.4vw, 3.2rem); line-height: .96; }
.tc-intro__lede { margin-top: 1.2rem; font-size: 1.06rem; color: #3a3a3a; max-width: 46ch; }
.tc-facts { display: flex; gap: 0; margin-top: clamp(24px, 3vw, 36px); }
.tc-facts li { flex: 1; padding-right: 1.4rem; position: relative; }
.tc-facts li + li { padding-left: 1.4rem; }
.tc-facts li + li::before { content: ""; position: absolute; left: 0; top: 6%; height: 80%; width: 1px; background: var(--line); }
.tc-facts__num { display: block; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--ink); line-height: 1; }
.tc-facts__label { display: block; margin-top: .5rem; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }
.tc-intro__note { margin-top: clamp(24px, 3vw, 34px); font-size: .95rem; }
.tc-intro__note a { color: var(--red); font-weight: 600; }
.tc-intro__note a:hover { text-decoration: underline; }

/* Card do formulário (coluna direita) */
.tc-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 44px); box-shadow: var(--shadow-sm); }
.tc-form-card__title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.tc-form-card__sub { margin-top: .5rem; font-size: .92rem; }
.tc-req { color: var(--red); font-weight: 700; }

.tc-form { margin-top: 1.6rem; display: grid; gap: 1.1rem; }
.tc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.tc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.tc-field { display: grid; gap: .4rem; min-width: 0; }
.tc-field label { font-size: .9rem; font-weight: 600; color: var(--charcoal); }
.tc-field input,
.tc-field select,
.tc-field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  padding: .8em .9em; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.tc-field textarea { resize: vertical; min-height: 96px; }
.tc-field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9em center; padding-right: 2.4em;
}
.tc-field input:focus,
.tc-field select:focus,
.tc-field textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(166,3,3,.12);
}
.tc-field input[type="file"] { padding: .6em .7em; background: var(--paper); cursor: pointer; }
.tc-field input[type="file"]::file-selector-button {
  font: inherit; font-weight: 600; font-size: .88rem; margin-right: .8em; cursor: pointer;
  padding: .55em 1em; border: 0; border-radius: 999px; background: var(--ink); color: #fff;
  transition: background .18s ease;
}
.tc-field input[type="file"]::file-selector-button:hover { background: var(--charcoal); }
.tc-hint { font-size: .8rem; color: var(--gray); }

.tc-field.has-error input,
.tc-field.has-error select,
.tc-field.has-error textarea { border-color: var(--red); box-shadow: 0 0 0 3px rgba(166,3,3,.1); }

.tc-submit { margin-top: .6rem; justify-self: start; }
.tc-submit.is-loading { opacity: .7; pointer-events: none; }

.tc-status { font-size: .95rem; font-weight: 600; padding: .9em 1.1em; border-radius: var(--radius-sm); }
.tc-status.is-ok { background: #eaf7ec; color: #1c6b2b; border: 1px solid #bfe4c6; }
.tc-status.is-erro { background: #fdecec; color: #a60303; border: 1px solid #f2c4c4; }
.tc-status.is-enviando { background: var(--paper); color: var(--charcoal); border: 1px solid var(--line); }
.tc-form.is-sent .tc-field,
.tc-form.is-sent .tc-submit { display: none; }

@media (max-width: 900px) {
  .tc-grid { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 44px); }
  .tc-intro { position: static; }
  .tc-intro__lede { max-width: none; }
}
@media (max-width: 480px) { .tc-row { grid-template-columns: 1fr; } }

/* ---------- Timeline "Nossa trajetória" (estilo aceternity, com peso) ---------- */
/* malha de fundo (mesma da hero/produtos/mapa), fade suave no topo e rodapé */
.timeline { position: relative; overflow: hidden; }
.timeline::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(13,13,13,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13,13,13,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.timeline > .container { position: relative; z-index: 1; }

.tl {
  position: relative; max-width: 1000px; margin-inline: auto;
  --tl-gap: clamp(48px, 7vw, 100px);   /* espaço vertical entre marcos */
  --tl-top: clamp(96px, 14vh, 150px);  /* offset do ano fixo (compensa o header) */
}

/* espinha estática + feixe que cresce no scroll */
.tl__spine {
  position: absolute; top: 6px; bottom: 4px; left: 26px; width: 2px; border-radius: 2px;
  background: linear-gradient(to bottom, transparent 0%, rgba(13,13,13,.12) 5%, rgba(13,13,13,.12) 95%, transparent 100%);
}
.tl__beam {
  position: absolute; top: 0; left: 0; width: 2px; height: 0; border-radius: 2px;
  background: linear-gradient(to top, var(--red) 0%, #e23b3b 60%, rgba(226,59,59,0) 100%);
  box-shadow: 0 0 12px 1px rgba(166,3,3,.4);
}

.tl__row { position: relative; display: flex; gap: clamp(28px, 5vw, 70px); padding-top: var(--tl-gap); }
.tl__row:first-of-type { padding-top: 6px; }

/* coluna do ano (fixa enquanto o marco está ativo) */
.tl__left {
  position: sticky; top: var(--tl-top); align-self: flex-start; flex: 0 0 auto;
  width: clamp(140px, 18vw, 230px);
  display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.5rem);
}
.tl__node {
  flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  display: grid; place-items: center;   /* centro em 27px -> alinha com a espinha em 26px */
}
.tl__node::after {
  content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 4px rgba(166,3,3,.14), 0 0 12px 2px rgba(166,3,3,.35);
}
.tl__year {
  font-family: var(--display); font-weight: 400; color: var(--ink);
  font-size: clamp(2.1rem, 4.2vw, 3.6rem); line-height: .9; letter-spacing: -.02em;
}
.tl__row--now .tl__year { color: var(--red); }

.tl__content { flex: 1 1 auto; min-width: 0; padding-top: .35rem; }
.tl__place {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red);
}
.tl__place::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: 0 0 auto;
}
.tl__title { font-size: clamp(1.25rem, 2.2vw, 1.7rem); color: var(--ink); margin-top: .55rem; }
.tl__desc { margin-top: .7rem; color: #4a4a4a; max-width: 54ch; }

/* logos das unidades — PNGs transparentes direto sobre o fundo, sem caixa.
   Arquivos são canvas quadrado 1:1 com margem; dimensionar o quadrado deixa a marca legível. */
.tl__logos { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(.6rem, 1.6vw, 1.3rem); margin-top: 1.1rem; }
.tl__logo { flex: 0 0 auto; width: clamp(78px, 8.5vw, 100px); height: clamp(78px, 8.5vw, 100px); display: grid; place-items: center; }
.tl__logo img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 760px) {
  .tl { --tl-gap: clamp(40px, 11vw, 60px); }
  .tl__spine { left: 15px; }
  .tl__row { position: relative; flex-direction: column; gap: 0; padding-left: 54px; }
  .tl__left { position: static; width: auto; margin-bottom: .8rem; }
  .tl__node { position: absolute; left: 0; top: var(--tl-gap); width: 32px; height: 32px; }
  .tl__row:first-of-type .tl__node { top: 6px; }
  .tl__node::after { width: 10px; height: 10px; box-shadow: 0 0 0 3px rgba(166,3,3,.14), 0 0 8px 2px rgba(166,3,3,.35); }
  .tl__year { font-size: clamp(2rem, 10vw, 2.9rem); }
  /* logos das unidades maiores no mobile (canvas quadrado com margem) */
  .tl__logos { gap: 1rem; }
  .tl__logo { width: clamp(96px, 26vw, 124px); height: clamp(96px, 26vw, 124px); }
}

/* ============================================================
   Produtos: hero em vídeo (100vh, centralizado) + container-text-flip
   ============================================================ */
.page-hero--video {
  min-height: 100vh;
  min-height: 100dvh;       /* altura real no mobile (desconta a barra do navegador) */
  align-items: center;      /* centro vertical */
  justify-content: center;  /* centro horizontal */
  text-align: center;
}
.page-hero__bg--video { z-index: 0; }
.page-hero__bg--video video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: contrast(1.03) brightness(.98);
}
/* Overlay leve: o vídeo aparece; escurece só o suficiente p/ leitura */
.page-hero--video::before {
  background: linear-gradient(180deg,
    rgba(13,13,13,.30) 0%,
    rgba(13,13,13,.22) 45%,
    rgba(13,13,13,.42) 100%) !important;
}
.page-hero--video .page-hero__inner {
  max-width: 940px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center;
}
.page-hero--video .page-hero__lede { margin-inline: auto; }

/* Kicker CATÁLOGO: dois traços vermelhos (um de cada lado) + texto branco */
.page-hero--video .kicker {
  display: inline-flex; align-items: center; gap: .7rem; color: #fff;
}
.page-hero--video .kicker::before,
.page-hero--video .kicker::after {
  content: ""; width: 32px; height: 2px; display: inline-block; background: var(--red);
}

/* Título: linha fixa + linha que troca (container-text-flip) */
.flip-hero { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.flip-hero__fixed { display: block; }

/* Container que troca de palavra e estica p/ o tamanho de cada uma */
.ctf {
  box-sizing: content-box;         /* width anima só o conteúdo; padding fica fixo */
  display: inline-flex; align-items: center; justify-content: flex-start;
  overflow: hidden; white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.8vw, 3.4rem); line-height: 1; letter-spacing: -.02em;
  color: #fff; background: var(--red);
  padding: .1em .34em .18em; border-radius: 14px;
  box-shadow: inset 0 -3px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.14), 0 12px 34px rgba(0,0,0,.34);
  transition: width .42s cubic-bezier(.7,0,.2,1);
  will-change: width;
}
.ctf__inner { display: inline-flex; white-space: nowrap; }
.ctf__l {
  display: inline-block; white-space: pre;   /* espaço entre palavras mantém largura */
  opacity: 0; filter: blur(10px); transform: translateY(6px);
  transition: opacity .4s ease, filter .4s ease, transform .4s ease;
}
.ctf__l.is-in { opacity: 1; filter: blur(0); transform: none; }

/* Header some ao rolar p/ baixo; a nav de categorias sobe p/ o topo.
   Ao rolar p/ cima, o header volta e a nav desce de novo. */
#site-header { transition: transform .35s var(--ease-weight); }
body.hdr-hidden #site-header { transform: translateY(-130%); }
.cat-nav { transition: top .35s var(--ease-weight); }
body.hdr-hidden .cat-nav { top: 0; }
/* transições de header/nav e do bloco de conversão mantidas sob reduced-motion
   (decisão do cliente) */

/* ============================================================
   Página de unidade (landing rica) — bloco .un-
   Reaproveita ao máximo: .duotone, .hairline-grid/.cell, .eyebrow,
   .display--mass, .sec-head, .sobre__grid, .feat, .btn/.amb.
   Zero border-radius em cards de catálogo; hairlines; foto sempre duotone.
   ============================================================ */

/* ---------- Hero (foto duotone de fundo, conteúdo ancorado embaixo) ---------- */
.un-hero { position: relative; display: flex; align-items: flex-end; min-height: clamp(420px, 62vh, 620px); overflow: hidden; background: var(--ink); }
.un-hero > .duotone { position: absolute; inset: 0; z-index: 0; }
.un-hero__inner { position: relative; z-index: 2; max-width: 820px; padding-block: clamp(48px, 8vh, 104px); }
.un-hero__logo img { height: clamp(40px, 6vw, 64px); width: auto; max-width: 220px; object-fit: contain; margin-bottom: 1.2rem; }
.un-hero__title { font-family: var(--font); font-weight: 700; letter-spacing: -.02em; line-height: 1.02; font-size: clamp(2rem, 5vw, 3.6rem); color: #fff; margin-top: .6rem; max-width: 18ch; }
.un-hero__lede { color: rgba(255,255,255,.82); max-width: 56ch; margin-top: 1rem; }
.un-hero__selos { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.6rem; }
.un-selo { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.9); }
.un-selo::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; background: var(--red); border-radius: 50%; }
.un-hero__cta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Números da unidade (painel-instrumento, vermelho-escuro) ---------- */
.un-nums { display: grid; gap: 1px; background: var(--line-dark); border-block: 1px solid var(--line-dark); }
.un-nums--2 { grid-template-columns: repeat(2, 1fr); }
.un-nums--3 { grid-template-columns: repeat(3, 1fr); }
.un-num { background: var(--red-dark); padding: clamp(1.2rem, 3vw, 2rem); }
.un-num__n { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: .85; letter-spacing: -.02em; color: #fff; }
.un-num__label { display: block; margin-top: .5rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* ---------- Sobre a unidade (reusa .sobre__grid; foto combina classes "sobre__media duotone") ---------- */
.un-sobre .sobre__media.duotone { border-radius: var(--radius); }
.un-sobre .sobre__media.duotone img { border-radius: 0; box-shadow: none; }

/* ---------- Segmentos atendidos (reusa .hairline-grid/.cell) ---------- */
.un-seg__grid { grid-template-columns: repeat(4, 1fr); }
.un-seg .cell { padding: 1.6rem 1.5rem; }
.un-seg__name { font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.surface--dark .un-seg__name, .surface--char .un-seg__name { color: #fff; }
.un-seg__desc { margin-top: .5rem; font-size: .88rem; color: var(--gray); }

/* ---------- Produtos por categoria (catálogo soldado, zero radius) ---------- */
.un-cat + .un-cat { margin-top: clamp(2rem, 4vw, 3.5rem); }
.un-cat h3 { margin-bottom: 1.2rem; }
.un-cat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.un-prod { background: var(--white); padding: 1.4rem; }
.un-prod__name { color: var(--red); font-weight: 700; }
.un-prod__desc { color: var(--charcoal); font-size: .92rem; margin-top: .4rem; }

/* ---------- Serviços especializados (mesma linguagem de célula soldada do catálogo) ---------- */
.un-serv__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.un-serv__ben { background: var(--white); padding: 1.7rem 1.8rem; }
.un-serv__ben strong { display: block; color: var(--red); font-size: 1.1rem; }
.un-serv__ben p { margin-top: .6rem; color: var(--charcoal); font-size: .92rem; }

/* ---------- Diferenciais (reusa .feat; .un-dif é só o grid, mesmas quebras do .feat-grid) ---------- */
.un-dif { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 32px); }

/* ---------- Galeria (scroll-snap horizontal, foto duotone) ---------- */
.un-gal__track { display: flex; gap: 1px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.un-gal__track::-webkit-scrollbar { display: none; }
.un-gal__item { flex: 0 0 clamp(240px, 42vw, 420px); aspect-ratio: 4/3; scroll-snap-align: start; }
.un-gal__item.duotone { background: var(--ink); }

/* ---------- Área de atuação (tags soldadas, zero radius) ---------- */
.un-atuacao__list { display: flex; flex-wrap: wrap; gap: .6rem .8rem; margin-top: 1.4rem; }
.un-atuacao__list li { font-size: .9rem; font-weight: 600; color: var(--charcoal); padding: .55em 1.1em; border: 1px solid var(--line); }
.surface--dark .un-atuacao__list li, .surface--char .un-atuacao__list li { border-color: var(--line-dark); color: #fff; }

/* ---------- FAQ (acordeão) ---------- */
.un-faq__item { border-top: 1px solid var(--line); }
.un-faq__item:last-child { border-bottom: 1px solid var(--line); }
.un-faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 1.2rem 0; font: inherit; font-weight: 700; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.un-faq__q::after { content: "+"; flex: 0 0 auto; color: var(--red); font-size: 1.3rem; line-height: 1; }
.un-faq__item.is-open .un-faq__q::after { content: "\2013"; }
.un-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-weight); }
.un-faq__item.is-open .un-faq__a { max-height: 600px; }
.un-faq__a p { padding-bottom: 1.2rem; color: var(--charcoal); max-width: 68ch; }

/* ---------- Contato da unidade (mesmo padrão visual de .ct-list) ---------- */
.un-contato__list { list-style: none; display: grid; gap: .9rem; }
.un-contato__list li { display: grid; gap: .2rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.un-contato__list li span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.un-contato__list li a,
.un-contato__list li strong { font-size: 1.02rem; font-weight: 600; overflow-wrap: anywhere; }
.un-contato__list li a:hover { color: var(--red); }
.surface--dark .un-contato__list li, .surface--char .un-contato__list li { border-color: var(--line-dark); }
.surface--dark .un-contato__list li span, .surface--char .un-contato__list li span { color: #ff5a5a; }

/* ---------- Legal (razão social / CNPJ) ---------- */
.un-legal { color: var(--gray); font-size: .82rem; margin-top: 2rem; }

/* ---------- Responsivo (escada de breakpoints do projeto) ---------- */
@media (max-width: 900px) { .un-cat__grid { grid-template-columns: repeat(2, 1fr); } .un-dif { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .un-seg__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .un-serv__grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .un-nums--3 { grid-template-columns: 1fr 1fr; } .un-nums--3 .un-num:nth-child(3) { grid-column: 1 / -1; } }
@media (max-width: 560px) { .un-cat__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .un-seg__grid { grid-template-columns: 1fr; } .un-dif { grid-template-columns: 1fr; } }
