/* =========================================================
   Fernando Larrosa — Engenharia Diagnóstica
   Paleta extraída por amostragem de pixels das mídias (pasta Midia + PDFs)
   ========================================================= */

:root {
  /* Cores */
  --cor-principal: #5A47F4;          /* violeta da marca */
  --cor-principal-escura: #4739C3;   /* ~20% mais escura: hover/estados */
  --cor-apoio: #BDB9DC;              /* lavanda da marca */
  --cor-simbolo: #5B5DA6;            /* violeta acinzentado da marca */
  --escuro: #150F3F;                 /* navy da marca */
  --escuro-2: #221A55;
  --claro: #F6F6F6;                  /* off-white neutro das fotos */
  --branco: #FFFFFF;
  --lavado: #EFEDFD;                 /* cor principal bem lavada */
  --texto: #150F3F;
  --texto-suave: #55526E;
  --linha: rgba(21, 15, 63, .12);
  --linha-clara: rgba(255, 255, 255, .16);

  /* Tipografia */
  --fonte: "Anek Latin", "Helvetica Neue", Arial, sans-serif;
  --estreita: 88%;                   /* largura condensada para títulos (eixo wdth) */

  /* Layout */
  --container: 1240px;
  --pad: clamp(20px, 4vw, 40px);
  --header-h: 76px;
  --secao: clamp(72px, 10vw, 128px);

  /* Movimento */
  --ease: cubic-bezier(.65, 0, .2, 1);
  --ease-out: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--fonte);
  font-size: 17px;
  line-height: 1.6;
  color: var(--texto);
  background: var(--claro);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
p, h1, h2, h3, h4, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }
strong { font-weight: 650; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico, .ico-md, .ico-lg {
  fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}
.ico { width: 18px; height: 18px; }
.ico-md { width: 24px; height: 24px; }
.ico-lg { width: 36px; height: 36px; stroke-width: 1.3; }

:focus-visible { outline: 2px solid var(--cor-principal); outline-offset: 3px; }
.section-dark :focus-visible, .hero :focus-visible, .site-footer :focus-visible { outline-color: var(--cor-apoio); }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  padding: 10px 16px; background: var(--escuro); color: #fff; text-decoration: none; font-weight: 600;
  transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--secao) 0; }
.section-light { background: var(--claro); }
.section-wash { background: var(--lavado); }
.section-dark { background: var(--escuro); color: #fff; }

/* ---------- Tipografia ---------- */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cor-principal); margin-bottom: 18px;
}
.label::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.label-light { color: var(--cor-apoio); }

.h2 {
  font-size: clamp(30px, 3.6vw, 50px);
  font-stretch: var(--estreita);
  font-weight: 650; line-height: 1.06; letter-spacing: -.025em;
}
.h-mini {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 14px; color: var(--texto);
}
.h-mini .ico { color: var(--cor-principal); }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--texto-suave); max-width: 58ch; margin-top: 20px; }
.section-dark .lead { color: rgba(255, 255, 255, .74); }
.num, .svc-num, .desafio-num, .passo-num { font-variant-numeric: tabular-nums; }

.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head-row { display: grid; gap: 24px 64px; align-items: end; }
@media (min-width: 960px) {
  .section-head-row { grid-template-columns: 1.1fr 1fr; }
  .section-head-row .lead { margin-top: 0; }
}

/* ---------- Botões e links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px;
  border: 1.5px solid transparent; border-radius: 2px;
  font-size: 16px; font-weight: 600; line-height: 1.2; text-decoration: none; white-space: nowrap;
  transition: background-color .25s, color .25s, border-color .25s, transform .25s var(--ease-out), box-shadow .25s;
}
.btn-lg { min-height: 56px; padding: 14px 28px; font-size: 17px; }
.btn-primary { background: var(--cor-principal); color: #fff; }
.btn-primary:hover { background: var(--cor-principal-escura); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(72, 57, 198, .6); }
.btn-outline { border-color: var(--escuro); color: var(--escuro); background: transparent; }
.btn-outline:hover { background: var(--escuro); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--cor-principal); text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1.5px no-repeat;
  padding-bottom: 2px; transition: background-size .35s var(--ease);
}
.link-arrow:hover { background-size: 100% 1.5px; }
.link-arrow .ico:last-child { transition: transform .3s var(--ease-out); }
.link-arrow:hover .ico:last-child { transform: translateX(4px); }

.icon-btn {
  width: 52px; height: 52px; display: grid; place-items: center;
  border: 1.5px solid var(--escuro); border-radius: 2px; background: transparent; color: var(--escuro);
  transition: background-color .25s, color .25s, opacity .25s, transform .25s var(--ease-out);
}
.icon-btn:hover:not(:disabled) { background: var(--escuro); color: #fff; transform: translateY(-2px); }
.icon-btn:disabled { opacity: .3; cursor: default; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  transition: background-color .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: block; flex: none; }
.brand picture { display: block; }
.brand img { height: 40px; width: auto; }
.brand-dark { display: none !important; }
.site-header.is-scrolled, .site-header.is-open {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom-color: var(--linha);
  box-shadow: 0 8px 30px -18px rgba(21, 15, 63, .35);
}
.is-scrolled .brand-light, .is-open .brand-light { display: none !important; }
.is-scrolled .brand-dark, .is-open .brand-dark { display: block !important; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 30px; }
.main-nav a:not(.btn) {
  position: relative; display: block; padding: 8px 0;
  font-size: 15px; font-weight: 500; color: #fff; text-decoration: none;
}
.is-scrolled .main-nav a:not(.btn) { color: var(--texto); }
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--cor-principal); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.main-nav a:not(.btn):hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.is-scrolled .main-nav a.is-active { color: var(--cor-principal); }
.nav-cta-mobile { display: none; }
.header-cta { flex: none; }

.menu-toggle {
  display: none; margin-left: auto; width: 48px; height: 48px; padding: 14px 12px;
  background: transparent; border: 0; flex-direction: column; justify-content: space-between;
}
.menu-toggle span { display: block; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s, background-color .3s; }
.is-scrolled .menu-toggle span, .is-open .menu-toggle span { background: var(--escuro); }
.is-open .menu-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
.is-open .menu-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 1080px) {
  .main-nav ul { gap: 22px; }
}
@media (max-width: 959px) {
  :root { --header-h: 68px; }
  .brand img { height: 34px; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
    background: #fff; padding: 24px var(--pad) 40px;
    display: flex; flex-direction: column; gap: 28px;
    clip-path: inset(0 0 100% 0); visibility: hidden;
    transition: clip-path .5s var(--ease), visibility 0s .5s;
    overflow-y: auto;
  }
  .is-open .main-nav { clip-path: inset(0); visibility: visible; transition: clip-path .5s var(--ease), visibility 0s; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--linha); }
  .main-nav a:not(.btn) { color: var(--texto) !important; font-size: 22px; font-stretch: var(--estreita); font-weight: 600; padding: 16px 0; }
  .main-nav a:not(.btn)::after { display: none; }
  .main-nav a.is-active { color: var(--cor-principal) !important; }
  .nav-cta-mobile { display: inline-flex; align-self: flex-start; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; overflow: clip; isolation: isolate;
  padding: calc(var(--header-h) + 48px) 0 96px;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.js .hero-bg img { transform: scale(1.06); transition: transform 2.4s var(--ease-out); }
.js .is-loaded .hero-bg img { transform: none; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 15, 63, .94) 0%, rgba(21, 15, 63, .82) 45%, rgba(21, 15, 63, .45) 100%),
    linear-gradient(0deg, rgba(21, 15, 63, .6), transparent 40%);
}
.hero-content { max-width: var(--container); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, .28); border-radius: 2px;
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.hero-tag .ico { color: var(--cor-apoio); }
.hero-title {
  font-size: clamp(34px, 6.6vw, 88px);
  font-stretch: var(--estreita);
  font-weight: 650; line-height: 1; letter-spacing: -.03em;
}
.hero-sub { margin-top: 28px; max-width: 56ch; font-size: clamp(17px, 1.5vw, 20px); color: rgba(255, 255, 255, .82); }
.hero-sub strong { color: #fff; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero-crea { margin-top: 36px; font-size: 13px; letter-spacing: .14em; color: rgba(255, 255, 255, .55); }
.hero-scroll {
  position: absolute; left: 50%; bottom: 28px; translate: -50% 0;
  width: 44px; height: 44px; display: grid; place-items: center;
  color: #fff; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%;
  transition: background-color .25s;
}
.hero-scroll:hover { background: rgba(255, 255, 255, .12); }
.hero-scroll .ico { animation: nudge 2.4s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: translateY(-3px); } 50% { transform: translateY(3px); } }
@media (max-width: 959px) {
  .hero-overlay { background: linear-gradient(180deg, rgba(21, 15, 63, .78) 0%, rgba(21, 15, 63, .9) 100%); }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .hero-ctas .btn { width: 100%; }
}

/* ---------- Sobre ---------- */
.sobre-grid { display: grid; gap: 48px; }
@media (min-width: 960px) {
  .sobre-grid { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
  .sobre-media { position: sticky; top: calc(var(--header-h) + 32px); }
}
.h2-menor { font-size: clamp(26px, 2.8vw, 40px); }
.sobre-foto { aspect-ratio: 1 / 1; overflow: hidden; background: var(--lavado); }
.sobre-foto img { width: 100%; height: 100%; object-fit: cover; }
.sobre-selo {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; background: var(--escuro); color: #fff; font-size: 14px; line-height: 1.35;
}
.sobre-selo .ico { width: 28px; height: 28px; color: var(--cor-apoio); }
.sobre-selo strong { display: block; font-size: 16px; letter-spacing: .04em; }
.prose { margin-top: 28px; }
.prose p + p { margin-top: 16px; }
.prose p { color: var(--texto-suave); max-width: 64ch; }
.prose .sobre-proposito {
  margin-top: 28px; padding-left: 20px; border-left: 3px solid var(--cor-principal);
  font-size: clamp(20px, 2vw, 24px); font-stretch: var(--estreita); font-weight: 600; line-height: 1.25; color: var(--texto);
}
.numeros {
  display: grid; grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(64px, 8vw, 104px);
  border-top: 1px solid var(--linha);
}
@media (min-width: 900px) { .numeros { grid-template-columns: repeat(4, 1fr); } }
.numeros li { padding: 28px 20px 0 0; }
@media (min-width: 900px) { .numeros li + li { padding-left: 28px; border-left: 1px solid var(--linha); } }
.numeros .num {
  display: block; font-size: clamp(48px, 6vw, 80px); font-stretch: var(--estreita);
  font-weight: 650; line-height: 1; letter-spacing: -.03em; color: var(--cor-principal);
}
.numeros li > span { display: block; margin-top: 10px; font-size: 15px; color: var(--texto-suave); max-width: 22ch; }

/* ---------- Problemas que ajudamos a resolver ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.lead-forte { margin-top: 14px; color: var(--texto); font-weight: 600; }
.problemas { display: grid; gap: 1px; background: var(--linha); border: 1px solid var(--linha); }
@media (min-width: 720px) { .problemas { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1140px) { .problemas { grid-template-columns: repeat(3, 1fr); } }
.problemas li {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 26px; background: #fff;
  transition: background-color .3s;
}
.problemas li:hover { background: var(--lavado); }
.problemas h3 {
  font-size: clamp(19px, 1.7vw, 22px); font-stretch: var(--estreita); font-weight: 650;
  line-height: 1.25; letter-spacing: -.01em; color: var(--escuro);
}
.problemas p { color: var(--texto-suave); font-size: 16px; line-height: 1.55; }

/* ---------- Serviços (lista estática com especificações) ---------- */
.svc-head-destaque {
  display: grid; gap: 20px 64px; align-items: end;
  margin-bottom: clamp(40px, 6vw, 64px); padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 2px solid var(--escuro);
}
@media (min-width: 960px) { .svc-head-destaque { grid-template-columns: auto 1fr; } }
.svc-display {
  font-size: clamp(42px, 6vw, 84px); font-stretch: var(--estreita); font-weight: 700;
  line-height: .95; letter-spacing: -.035em; color: var(--escuro);
}
.svc-display sup {
  margin-left: .08em; font-size: .22em; font-weight: 600; letter-spacing: 0; vertical-align: top;
  position: relative; top: .35em; color: var(--cor-principal); font-variant-numeric: tabular-nums;
}
.svc-kicker {
  font-size: clamp(20px, 2vw, 26px); font-stretch: var(--estreita); font-weight: 600; line-height: 1.2; color: var(--texto);
}
.svc-head-texto .lead { margin-top: 10px; }

.svc-group { scroll-margin-top: calc(var(--header-h) + 16px); }
.svc-group + .svc-group { margin-top: 12px; }
.svc-group-h { margin: 0; font: inherit; }
.svc-group-head {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px 24px;
  width: 100%; padding: 22px 28px; border: 0; border-radius: 0; text-align: left;
  background: var(--escuro); color: #fff;
  transition: background-color .25s;
}
.svc-group-head:hover { background: var(--escuro-2); }
.svc-group-head:focus-visible { outline: 2px solid var(--cor-principal); outline-offset: 3px; }
.svc-group-num {
  font-size: clamp(32px, 3.4vw, 46px); font-weight: 300; line-height: 1;
  color: var(--cor-apoio); font-variant-numeric: tabular-nums;
}
.svc-group-txt { display: block; }
.svc-group-title { display: block; font-size: clamp(20px, 2.2vw, 28px); font-stretch: var(--estreita); font-weight: 650; line-height: 1.12; letter-spacing: -.015em; }
.svc-group-desc { display: block; margin-top: 4px; color: rgba(255, 255, 255, .7); font-size: 15px; line-height: 1.4; }
.svc-group-arrow {
  display: grid; place-items: center; width: 46px; height: 46px;
  border: 1.5px solid rgba(255, 255, 255, .35); border-radius: 50%;
  transition: background-color .25s, border-color .25s;
}
.svc-group-arrow .ico-md { transition: transform .3s var(--ease); }
.svc-group-head:hover .svc-group-arrow { background: var(--cor-principal); border-color: var(--cor-principal); }
.svc-group-head[aria-expanded="true"] .svc-group-arrow { background: var(--cor-principal); border-color: var(--cor-principal); }
.svc-group-head[aria-expanded="true"] .svc-group-arrow .ico-md { transform: rotate(180deg); }
.svc-group-panel { padding: 28px 0 32px; border-bottom: 1px solid var(--linha); }
@media (min-width: 960px) { .svc-group-panel { padding-left: 100px; padding-right: 64px; } }
.svc-texto > p { font-size: 18px; line-height: 1.6; color: var(--texto-suave); max-width: 72ch; }
.svc-texto > p + p, .svc-texto > ul + p { margin-top: 14px; }
.svc-texto > p.svc-destaque { color: var(--texto); font-weight: 600; }
.svc-lista { margin-top: 12px; display: grid; gap: 6px 28px; color: var(--texto-suave); font-size: 17px; }
@media (min-width: 640px) { .svc-lista { grid-template-columns: 1fr 1fr; } }
.svc-lista li { position: relative; padding-left: 22px; }
.svc-lista li::before { content: ""; position: absolute; left: 3px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--cor-principal); }
.svc-indicado {
  margin-top: 20px !important; padding: 16px 18px; background: #fff; border-left: 3px solid var(--cor-principal);
  color: var(--texto) !important; font-size: 17px !important;
}
.svc-indicado span {
  display: block; margin-bottom: 2px; font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--cor-principal);
}
.svc-sub { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--linha); }
.svc-sub h4 { font-size: 19px; font-stretch: var(--estreita); font-weight: 650; line-height: 1.2; }
.svc-sub p { margin-top: 6px; color: var(--texto-suave); font-size: 17px; line-height: 1.55; max-width: 72ch; }
@media (max-width: 639px) {
  .svc-group-head { grid-template-columns: auto 1fr auto; padding: 18px 18px; gap: 4px 14px; }
  .svc-group-desc { display: none; }
  .svc-group-arrow { width: 40px; height: 40px; }
  .svc-group-panel { padding: 22px 0 26px; }
}

.svc-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 56px; padding: 28px; background: #fff; border: 1px solid var(--linha);
}
.svc-cta p { font-size: 20px; font-stretch: var(--estreita); font-weight: 600; line-height: 1.25; }

/* ---------- Como trabalhamos (pinado) ---------- */
.processo { padding-top: var(--secao); }
.processo-grid { display: grid; gap: 48px; }
.processo .h2 { color: #fff; }
.processo-indice { display: none; }
.processo .h2 .sep {
  display: inline-block; width: .2em; height: .2em; margin: 0 .12em;
  border-radius: 50%; background: var(--cor-apoio);
  vertical-align: middle; position: relative; top: -.06em;
}
.passo { padding: 32px 0; border-top: 1px solid var(--linha-clara); }
.passo-num {
  display: block; font-size: clamp(64px, 9vw, 120px); font-stretch: var(--estreita); font-weight: 300;
  line-height: .9; letter-spacing: -.04em; color: var(--cor-apoio);
}
.passo-title { margin-top: 18px; font-size: clamp(28px, 3vw, 40px); font-stretch: var(--estreita); font-weight: 650; line-height: 1.1; letter-spacing: -.02em; }
.passo p { margin-top: 14px; color: rgba(255, 255, 255, .76); max-width: 52ch; font-size: 18px; }
.processo-fecho {
  max-width: 46ch; margin-top: clamp(40px, 6vw, 64px); padding-left: 22px;
  border-left: 3px solid var(--cor-apoio);
  font-size: clamp(20px, 2.2vw, 28px); font-stretch: var(--estreita); font-weight: 600; line-height: 1.25; color: #fff;
}

@media (min-width: 960px) {
  .processo-grid { grid-template-columns: 5fr 6fr; gap: 80px; align-items: center; }
  .processo-indice { display: block; margin-top: 44px; border-top: 1px solid var(--linha-clara); }
  .processo-indice li { position: relative; border-bottom: 1px solid var(--linha-clara); color: rgba(255, 255, 255, .45); transition: color .4s; }
  .processo-indice button {
    display: flex; align-items: center; gap: 16px; width: 100%; padding: 14px 0;
    background: none; border: 0; color: inherit; text-align: left;
    font-size: 16px; font-weight: 500; transition: color .3s, padding-left .4s var(--ease);
  }
  .processo-indice button span { font-variant-numeric: tabular-nums; transition: color .3s; }
  .processo-indice li:not(.is-active) button:hover { color: rgba(255, 255, 255, .85); padding-left: 8px; }
  .processo-indice li.is-active button span { color: var(--cor-apoio); }
  .processo-indice li::after {
    content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%;
    background: var(--cor-apoio); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
  }
  .processo-indice li.is-active { color: #fff; }
  .processo-indice li.is-active::after { transform: scaleX(1); }

  /* modo pinado (ativado via JS) */
  .processo.is-pinned .processo-track { height: 300vh; }
  .processo.is-pinned .processo-sticky {
    position: sticky; top: 0; height: 100vh; display: flex; align-items: center;
    padding-top: var(--header-h);
  }
  .processo.is-pinned .processo-steps { position: relative; min-height: 400px; }
  .processo.is-pinned .passo {
    position: absolute; inset: 0 0 auto; border-top: 0;
    clip-path: inset(0 0 100% 0); visibility: hidden;
    transition: clip-path .8s var(--ease), visibility 0s .8s;
  }
  .processo.is-pinned .passo.is-active {
    clip-path: inset(0 0 -10% 0); visibility: visible;
    transition: clip-path .8s var(--ease) .15s, visibility 0s;
  }
}

.investir { padding-top: var(--secao); padding-bottom: var(--secao); }
.investir-grid { display: grid; gap: 40px; padding-top: 56px; border-top: 1px solid var(--linha-clara); }
@media (min-width: 960px) { .investir-grid { grid-template-columns: 5fr 6fr; gap: 80px; } }
.investir-title { font-size: clamp(28px, 3.4vw, 44px); }
.investir-lista li {
  display: flex; align-items: center; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--linha-clara);
  font-size: clamp(18px, 1.8vw, 22px); font-stretch: var(--estreita); font-weight: 500;
}
.investir-lista li:first-child { padding-top: 0; }
.investir-lista .ico-md { color: var(--cor-apoio); stroke-width: 2; }

/* ---------- Registros (galeria) ---------- */
.filtros { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filtro {
  padding: 10px 18px; min-height: 44px; border: 1.5px solid var(--linha); border-radius: 2px;
  background: transparent; font-size: 15px; font-weight: 500;
  transition: border-color .25s, background-color .25s, color .25s;
}
.filtro:hover { border-color: var(--escuro); }
.filtro[aria-pressed="true"] { background: var(--escuro); border-color: var(--escuro); color: #fff; }
.galeria { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .galeria { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; grid-auto-flow: dense; } }
@media (min-width: 1024px) { .galeria { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; } }
@media (min-width: 640px) { .galeria-item.g-tall { grid-row: span 2; } }
.galeria-item figure { position: relative; height: 100%; overflow: hidden; background: var(--escuro); }
@media (max-width: 639px) { .galeria-item figure { aspect-ratio: 4 / 3; } }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.galeria-item picture { height: 100%; }
.galeria-item figure:hover img { transform: scale(1.04); }
.galeria-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 18px 16px; color: #fff; font-size: 15px; font-weight: 500; line-height: 1.3;
  background: linear-gradient(0deg, rgba(21, 15, 63, .88), transparent);
}
.galeria-item figcaption span {
  display: block; margin-bottom: 4px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--cor-apoio);
}
.galeria-insta { margin-top: 32px; }

/* ---------- Contato ---------- */
.contato-grid { display: grid; gap: 48px; }
@media (min-width: 960px) { .contato-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: stretch; } }
.contato-lista { margin: 36px 0 36px; }
.contato-lista li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--linha); }
.contato-lista li:last-child { border-bottom: 1px solid var(--linha); }
.contato-lista .ico-md { color: var(--cor-principal); margin-top: 2px; }
.contato-lista .ico-md use[href="#i-whatsapp"] { }
.contato-rot { display: block; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--texto-suave); }
.contato-lista a {
  font-size: 18px; font-weight: 500; text-decoration: none;
  background: linear-gradient(var(--cor-principal), var(--cor-principal)) 0 100% / 0 1.5px no-repeat;
  transition: background-size .35s var(--ease), color .25s;
}
.contato-lista a:hover { color: var(--cor-principal); background-size: 100% 1.5px; }
.contato-lista address, .contato-lista li > div > span:last-child { font-size: 17px; }
.contato-regiao { line-height: 1.5; }
.contato-regiao em { display: inline-block; margin-top: 4px; font-style: normal; font-size: 15px; color: var(--texto-suave); }
.contato-info .btn { max-width: 100%; white-space: normal; text-align: center; }
.mapa { min-height: 420px; }
.mapa-frame { position: relative; height: 100%; min-height: 420px; background: #fff; border: 1px solid var(--linha); }
.mapa-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mapa-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  padding: 32px; text-align: center; color: var(--texto-suave);
  background:
    linear-gradient(var(--linha) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, var(--linha) 1px, transparent 1px) 0 0 / 40px 40px,
    #fff;
}
.mapa-placeholder .ico-lg { color: var(--cor-principal); }
.mapa-placeholder strong { color: var(--texto); font-size: 20px; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--escuro); color: rgba(255, 255, 255, .72); font-size: 15px; padding-top: 80px; }
.footer-grid { display: grid; gap: 40px; padding-bottom: 56px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.2fr .8fr 1fr 1.4fr; gap: 56px; } }
.footer-brand picture { display: block; max-width: 300px; }
.footer-brand img { display: block; width: 100%; height: auto; }
.footer-brand p { margin-top: 20px; max-width: 30ch; }
.footer-title { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.site-footer li + li { margin-top: 8px; }
.site-footer a { text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-lgpd p { font-size: 14px; line-height: 1.6; }
.footer-link-btn { margin-top: 12px; padding: 0; background: none; border: 0; color: var(--cor-apoio); font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }
.footer-link-btn:hover { color: #fff; }
.footer-bottom { padding-top: 24px; padding-bottom: 28px; border-top: 1px solid var(--linha-clara); font-size: 13px; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%;
  background: #25D366; color: #fff; box-shadow: 0 12px 28px -10px rgba(0, 0, 0, .45);
  transition: transform .3s var(--ease-out), bottom .4s var(--ease), box-shadow .3s;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -10px rgba(0, 0, 0, .5); }

/* ---------- Banner LGPD ---------- */
.cookie {
  position: fixed; left: 20px; bottom: 20px; z-index: 110;
  width: min(460px, calc(100vw - 40px));
  padding: 22px; background: #fff; color: var(--texto);
  border: 1px solid var(--linha); box-shadow: 0 24px 60px -24px rgba(21, 15, 63, .45);
  font-size: 15px; line-height: 1.5;
  transition: opacity .4s, transform .4s var(--ease);
}
.cookie.is-hiding { opacity: 0; transform: translateY(16px); }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
@media (max-width: 559px) {
  .cookie { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .has-cookie .wa-float { bottom: 250px; }
}

/* =========================================================
   Animações de entrada (só com JS ativo)
   ========================================================= */
.js [data-reveal] { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease); }
.js [data-reveal].is-in { clip-path: inset(-20px -20px -20px -20px); }
.js [data-reveal].is-done { clip-path: none; transition: none; }
.js .galeria-item[data-reveal] { transition-delay: calc(var(--d, 0) * 80ms); }
.js .numeros li[data-reveal], .js .investir-lista li[data-reveal], .js .problemas li[data-reveal] { transition-delay: calc(var(--d, 0) * 90ms); }

.line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.line > span { display: block; }
.js [data-lines] .line > span { transform: translateY(110%); transition: transform 1s var(--ease); }
.js [data-lines].is-in .line > span { transform: none; }
.js [data-lines].is-in .line:nth-child(2) > span { transition-delay: .1s; }
.js [data-lines].is-in .line:nth-child(3) > span { transition-delay: .2s; }

/* =========================================================
   Movimento reduzido
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .js [data-reveal] { clip-path: none !important; }
  .js [data-lines] .line > span { transform: none !important; }
  .js .hero-bg img { transform: none !important; }
  .hero-scroll .ico { animation: none !important; }
}
