/* ═══════════════════════════════════════════════
   PETROMIX — institucional · v2
   Home: header + hero (referência dark premium,
   identidade laranja/grafite Petromix)
   ═══════════════════════════════════════════════ */

:root {
  --orange: #F6841C;
  --orange-2: #FF9A3C;
  --orange-deep: #C2660A;
  --bg: #0A0A0B;
  --bg-2: #0F0F11;
  --surface: #141417;
  --line: rgba(255, 255, 255, .08);
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, .64);
  --ink: #0C0C0D;
  --ease: cubic-bezier(.22, .61, .21, 1);
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--orange); color: var(--ink); }

.container { width: min(1280px, 92vw); margin-inline: auto; }

/* ── botões (arredondados) ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px; border-radius: 999px; border: 0;
  font-size: 14.5px; font-weight: 700; letter-spacing: .02em;
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              background .3s, border-color .3s, color .3s;
  will-change: transform;
}
.btn__ico { width: 17px; height: 17px; transition: transform .45s var(--ease); }
.btn:hover .btn__ico { transform: translateX(5px); }

.btn--primary {
  background: linear-gradient(120deg, var(--orange-2), var(--orange) 55%, var(--orange-deep));
  color: var(--ink);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px -10px rgba(246, 132, 28, .55);
}

.btn--ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--orange); color: var(--orange-2);
  background: rgba(246, 132, 28, .06);
}

.btn--sm { padding: 12px 22px; font-size: 13.5px; }

/* CTA secundário do hero: texto + círculo com play */
.hero__watch {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 700; transition: color .3s;
}
.hero__play {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  display: grid; place-items: center;
  transition: background .35s, border-color .35s, transform .45s var(--ease);
}
.hero__play svg { width: 18px; height: 18px; margin-left: 2px; }
.hero__watch:hover { color: var(--orange-2); }
.hero__watch:hover .hero__play {
  background: var(--orange); border-color: var(--orange);
  color: var(--ink); transform: scale(1.08);
}

/* ── tipografia de apoio ── */
/* ── rótulo de seção: mesma tipografia e cor em todas as dobras ── */
.eyebrow,
.hero__eyebrow,
.sol__eyebrow,
.mat__eyebrow,
.proc__badge,
.trust__eyebrow,
.blog__eyebrow,
.faq__eyebrow,
.loc__eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--orange);
}
.eyebrow { margin-bottom: 24px; }

/* ═══════════ HEADER ═══════════ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s, box-shadow .4s;
}
/* fundo sólido (sem backdrop-blur): blur sobre camada de vídeo custa caro no compositor */
.header.is-scrolled {
  background: rgba(10, 10, 11, .92);
  box-shadow: 0 1px 0 var(--line);
}
.header__inner {
  width: min(1400px, 94vw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 24px;
}
.header.is-scrolled .header__inner { padding: 13px 0; }

/* logo */
.logo { display: flex; align-items: center; }
.logo__img { height: 34px; width: auto; display: block; }

/* nav */
.nav { display: flex; gap: 32px; }
.nav__link {
  font-size: 14px; font-weight: 600; color: var(--muted);
  position: relative; padding: 6px 0; transition: color .3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--orange); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--white); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

/* ações */
.header__actions { display: flex; align-items: center; gap: 20px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 700; color: var(--muted); transition: color .3s;
}
.header__phone svg { width: 16px; height: 16px; color: var(--orange); }
.header__phone:hover { color: var(--white); }

.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 130; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--white);
  transition: transform .4s var(--ease), top .4s var(--ease);
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 26px; }
body.nav-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.nav-open .burger span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

/* menu mobile */
.mobnav {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(10, 10, 11, .96);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 120px 8vw 48px;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility 0s .45s;
}
body.nav-open .mobnav { opacity: 1; visibility: visible; transition-delay: 0s; }
.mobnav__links { display: flex; flex-direction: column; gap: 6px; }
.mobnav__links a {
  font-size: clamp(30px, 8vw, 44px); font-weight: 800; letter-spacing: -.02em; line-height: 1.25;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
  transition-delay: calc(.06s * var(--i, 0) + .1s);
}
.mobnav__links a:hover { color: var(--orange); }
body.nav-open .mobnav__links a { opacity: 1; transform: none; }
.mobnav__foot { color: var(--muted); font-size: 14px; }
.mobnav__phone { font-size: 20px; font-weight: 800; color: var(--orange); display: block; margin-bottom: 6px; }

/* ═══════════ SCROLLY · vídeo dirigido pelo scroll ═══════════ */
.scrolly { position: relative; }

/* camada fixa: o vídeo fica preso na tela enquanto o conteúdo rola por cima */
.scrolly__media {
  position: sticky; top: 0; z-index: 0;
  height: 100svh; overflow: hidden;
  background: radial-gradient(60% 70% at 70% 46%, #232326 0%, #121214 55%, var(--bg) 100%);
}
.scrolly__media video {
  width: 100%; height: 100%; object-fit: cover;
  transform: translateZ(0);            /* camada própria no compositor */
}

/* véu de legibilidade (some na 3ª dobra via JS) */
.scrolly__veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 10, 11, .92) 6%, rgba(10, 10, 11, .68) 36%, rgba(10, 10, 11, .22) 66%, rgba(10, 10, 11, .08) 100%),
    linear-gradient(180deg, rgba(10, 10, 11, .55), transparent 26%, transparent 72%, rgba(10, 10, 11, .6)),
    radial-gradient(46% 58% at 86% 58%, rgba(246, 132, 28, .14), transparent 70%);
  will-change: opacity;
}

/* conteúdo sobreposto ao vídeo */
.scrolly__content { position: relative; z-index: 1; margin-top: -100svh; }

/* 3ª dobra: só o vídeo em tela (altura extra = tempo de scroll p/ 80→100%).
   Precisa ser >= 100svh: é o que garante que o vídeo ainda esteja "grudado"
   na tela (sticky) até terminar de rodar. Com menos que isso (92svh antes),
   o sticky se soltava antes do vídeo chegar em 100% e ele pulava pro frame
   final de repente, bem antes da próxima dobra aparecer. 120svh dá folga
   de scroll suficiente pra perceber o final do vídeo rodando, não só
   "chegar" nele — vale pros dois breakpoints, por isso é regra única. */
.scrolly__spacer { height: 120svh; }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  padding: clamp(120px, 16vh, 170px) 0 clamp(70px, 9vh, 110px);
}

.hero__grid {
  display: grid; grid-template-columns: minmax(0, 620px) 1fr;
  align-items: center; gap: 32px;
}

/* coluna de texto */
.hero__eyebrow { margin-bottom: 26px; }
.hero__title {
  font-size: clamp(38px, 4.7vw, 68px);
  font-weight: 800; line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 26px;
}
.hero__title em {
  font-style: italic; font-weight: 700;
  color: var(--orange);
  background: linear-gradient(100deg, var(--orange-2), var(--orange) 60%, var(--orange-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: 16.5px; color: var(--muted); max-width: 50ch; margin-bottom: 38px;
}

/* CTAs */
.hero__ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 30px; margin-bottom: 48px; }

/* prova social */
.hero__proof { display: flex; align-items: center; gap: 16px; }
.hero__proof-text { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.hero__avatars { display: flex; }
.hero__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--bg);
  background: #fff; overflow: hidden;
  display: grid; place-items: center;
  transition: transform .4s var(--ease);
}
.hero__avatar + .hero__avatar { margin-left: -6px; }
.hero__avatar:hover { transform: translateY(-4px) scale(1.06); z-index: 3; }
/* logo ocupa o miolo do círculo, sem encostar na borda */
.hero__avatar img { width: 70%; height: 70%; object-fit: contain; display: block; }
/* empilhamento: o círculo da frente cobre o de trás, então o último fica no topo */
.hero__avatar:nth-child(1) { z-index: 1; }
.hero__avatar:nth-child(2) { z-index: 2; }
/* emblema da Guararapes já vem com fundo escuro próprio: preenche o círculo */
.hero__avatar:first-child { background: #313031; }
.hero__avatar:first-child img { width: 100%; height: 100%; }

/* hint de scroll */
.hero__hint {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
}
.hero__hint span { display: block; width: 34px; height: 1px; background: var(--orange); animation: hintPulse 1.8s ease-in-out infinite; }
@keyframes hintPulse { 0%, 100% { transform: scaleX(.4); opacity: .5; } 50% { transform: scaleX(1); opacity: 1; } }

/* animação de entrada */
[data-load] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-load="1"] { transition-delay: .15s; }
[data-load="2"] { transition-delay: .3s; }
[data-load="3"] { transition-delay: .45s; }
[data-load="4"] { transition-delay: .6s; }
[data-load="5"] { transition-delay: .78s; }
[data-load="6"] { transition-delay: 1.1s; }
body.loaded [data-load] { opacity: 1; transform: none; }

/* ═══════════ QUEM SOMOS ═══════════ */
.s-about {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(90px, 12vh, 140px) 0;
  position: relative; overflow: hidden;
}
.s-about .container { position: relative; z-index: 1; }

/* geometria técnica dirigida pelo scroll (--geo desenha, --geo-fade some) */
.s-about__geo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: var(--geo-fade, 0);
}
.s-about__geo .g {
  fill: none; stroke: rgba(255, 255, 255, .26); stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  /* cada elemento começa a se desenhar no seu --d e completa em +0.5 de progresso */
  stroke-dashoffset: calc(1 - clamp(0, (var(--geo, 0) - var(--d, 0)) / .5, 1));
}
.s-about__geo .g--box { stroke: rgba(255, 255, 255, .34); }
.s-about__geo .g--tick { stroke: rgba(246, 132, 28, .85); stroke-width: 1.6; }
.s-about__geo .g--plus { stroke: rgba(255, 255, 255, .46); }

/* dois arranjos: paisagem (padrão) e retrato (celular) */
.s-about__geo .geo--narrow { display: none; }
@media (max-width: 720px) {
  .s-about__geo .geo--wide { display: none; }
  .s-about__geo .geo--narrow { display: block; }
  /* no retrato a coluna de texto ocupa a tela toda: só a malha, sem etiquetas */
  .s-about__geo .g-label { display: none; }
}

/* etiquetas de produto — surgem depois do traço que as ancora */
.s-about__geo .g-label {
  fill: var(--orange); fill-opacity: .82;
  font-family: var(--font); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  opacity: clamp(0, (var(--geo, 0) - var(--d, 0)) / .22, 1);
}
.s-about__box { max-width: 680px; }
.s-about__title {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 800; line-height: 1.12; letter-spacing: -.02em;
  margin-bottom: 24px; text-wrap: balance;
}
.s-about__title em {
  font-style: italic; font-weight: 700;
  background: linear-gradient(100deg, var(--orange-2), var(--orange) 60%, var(--orange-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.s-about__sub {
  font-size: 16px; color: var(--muted); max-width: 58ch; margin-bottom: 36px;
}
/* duas versões do texto: completa no desktop, resumida no mobile (abaixo) */
.s-about__sub--short { display: none; }

/* reveal on scroll */
[data-reveal] {
  opacity: 0; transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ═══════════ UTILITÁRIOS DE SEÇÃO (compartilhados pelas próximas dobras) ═══════════ */
.section { padding: clamp(56px, 6vw, 96px) 0; position: relative; }
.section--dark { background: var(--bg); }
.h2 {
  font-size: clamp(28px, 3.4vw, 46px); font-weight: 800; line-height: 1.12;
  letter-spacing: -.02em; text-wrap: balance; margin-bottom: 22px;
}
.body { font-size: 16.5px; color: var(--muted); max-width: 58ch; }


/* ═══════════ NOSSAS SOLUÇÕES ═══════════ */
.section--light { background: #FFFFFF; color: var(--ink); }

.solx { display: grid; grid-template-columns: repeat(24, 1fr); gap: 18px; }
.solx__panel { display: contents; }
.solx__panel[hidden] { display: none; }

/* ── coluna de introdução ── */
.sol__intro {
  grid-column: 1 / 9; grid-row: 1;
  display: flex; flex-direction: column; padding-right: 6px;
}
.sol__eyebrow { margin-bottom: 22px; }
.sol__title {
  font-size: clamp(27px, 3.2vw, 44px); font-weight: 600;
  line-height: 1.16; letter-spacing: -.005em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 24px;
}
.sol__lead { font-size: 14.5px; line-height: 1.72; margin-bottom: 30px; }
.sol__lead strong { font-weight: 700; color: var(--ink); }
.sol__lead span { color: rgba(12, 12, 13, .48); }

.solx__toggle { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.solx-tab {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 7px 7px 7px 22px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600;
  background: rgba(12, 12, 13, .05); color: rgba(12, 12, 13, .5);
  transition: background .3s, color .3s;
}
.solx-tab__dot {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(12, 12, 13, .1); color: rgba(12, 12, 13, .5);
  display: grid; place-items: center;
  transition: background .3s, color .3s, transform .45s var(--ease);
}
.solx-tab__dot svg { width: 15px; height: 15px; }
.solx-tab:hover { color: var(--ink); }
.solx-tab.is-active { background: var(--ink); color: #FFFFFF; }
.solx-tab.is-active .solx-tab__dot { background: var(--orange); color: #FFFFFF; }
.solx-tab:hover .solx-tab__dot { transform: translateX(3px); }

/* ── cards ── */
.scard {
  position: relative; overflow: hidden;
  background: #F7F7F8; border: 1px solid rgba(12, 12, 13, .07);
  border-radius: 16px; padding: 24px 26px 84px;
  min-height: 264px;
  transition: background .35s, border-color .35s, transform .5s var(--ease);
}
.scard:hover { background: #F2F2F4; border-color: rgba(12, 12, 13, .12); transform: translateY(-3px); }

.scard__ico { width: 26px; height: 26px; color: var(--ink); margin-bottom: 24px; }
/* título e texto ficam à esquerda da foto (que é absoluta e não empurra o texto) */
.scard h3 {
  font-size: clamp(15px, 1.35vw, 18.5px); font-weight: 500;
  line-height: 1.26; letter-spacing: .012em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 26px; max-width: 38%;
}
.scard p { font-size: 13.5px; line-height: 1.65; color: rgba(12, 12, 13, .5); max-width: 39%; }
/* card estreito: título menor e foto mais enxuta para caber "REVESTIMENTOS" */
.scard--r2c h3 { font-size: clamp(13.5px, 1.2vw, 16.5px); }
.scard--r2c .scard__media { width: 50%; }
.scard__hi {
  font-size: clamp(19px, 1.85vw, 26px) !important; font-weight: 600 !important;
  line-height: 1.18; color: var(--ink) !important; margin-bottom: 18px; max-width: none !important;
}

/* foto: canto inferior esquerdo chanfrado, como na referência */
.scard__media {
  --mch: 30px;
  position: absolute; top: 22px; right: 22px;
  width: 54%; height: 66%;
  border-radius: 14px; overflow: hidden; background: #EFEFF1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--mch) 100%, 0 calc(100% - var(--mch)));
}
.scard__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.scard__media--plain { background: transparent; }
.scard__media--plain img { object-fit: contain; }

/* seta circular */
.scard__go {
  position: absolute; right: 26px; bottom: 26px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: #FFFFFF; border: 1px solid rgba(12, 12, 13, .1);
  display: grid; place-items: center; color: var(--ink);
  transition: background .3s, border-color .3s, color .3s, transform .45s var(--ease);
}
.scard__go svg { width: 18px; height: 18px; }
.scard:hover .scard__go { background: var(--orange); border-color: var(--orange); color: #FFFFFF; }

/* posições no grid */
.scard--r1a { grid-column: 9 / 17;  grid-row: 1; }
.scard--r1b { grid-column: 17 / 25; grid-row: 1; }
.scard--r2a { grid-column: 1 / 9;   grid-row: 2; }
.scard--r2b { grid-column: 9 / 18;  grid-row: 2; }
.scard--r2c { grid-column: 18 / 25; grid-row: 2; }
.scard--seg-wide { grid-column: 9 / 25; grid-row: 2; }

/* card largo: desenho técnico maior */
.scard--wide .scard__media { width: 52%; height: 82%; top: 26px; right: 26px; }
.scard--wide h3 { margin-bottom: 20px; max-width: 40%; }
.scard--wide p { max-width: 40%; }

.sol__cta { grid-column: 1 / -1; display: flex; justify-content: flex-end; padding-top: 8px; }

/* ── responsivo ── */
@media (max-width: 1080px) {
  .solx { grid-template-columns: repeat(12, 1fr); }
  .sol__intro { grid-column: 1 / 13; grid-row: auto; padding-right: 0; margin-bottom: 8px; }
  .scard--r1a, .scard--r1b, .scard--r2a, .scard--r2c { grid-column: span 6; grid-row: auto; }
  .scard--r2b, .scard--seg-wide { grid-column: 1 / 13; grid-row: auto; }
  .solx__toggle { margin-top: 0; }
}

@media (max-width: 720px) {
  .solx { gap: 12px; }
  .sol__intro,
  .scard--r1a, .scard--r1b, .scard--r2a,
  .scard--r2b, .scard--r2c, .scard--seg-wide { grid-column: 1 / -1; }
  .scard { min-height: 250px; padding: 22px 20px 84px; }
  .scard__media { --mch: 24px; width: 50%; height: 58%; top: 18px; right: 18px; }
  .scard--wide .scard__media { width: 50%; height: 64%; top: 18px; right: 18px; }
  .scard h3 { max-width: 9ch; }
  .scard p { max-width: 16ch; }
  .scard p br, .scard h3 br { display: none; }
  .scard__go { right: 20px; bottom: 20px; }
  .sol__cta { justify-content: flex-start; }
}

/* ═══════════ NOSSO MATERIAL ═══════════ */
/* junção soluções → material: espaço em branco reduzido */
#solucoes { padding-bottom: clamp(26px, 3vw, 44px); }
#nosso-material { padding-top: clamp(26px, 3vw, 44px); }

/* canvas proporcional ao layout de referência (2000 × 970) */
.mat {
  position: relative;
  aspect-ratio: 2000 / 1120;   /* mais alto que a referência: nosso título ocupa 3 linhas */
  min-height: 545px;
}

/* bloco de texto no topo-esquerdo */
.mat__intro { position: absolute; top: 0; left: 0; width: 36%; z-index: 2; }
.mat__eyebrow { margin-bottom: 18px; }
.mat__title {
  font-size: clamp(24px, 2.8vw, 38px); font-weight: 800;
  line-height: 1.14; letter-spacing: -.02em; color: var(--ink);
  margin-bottom: 16px;
}
.mat__lead {
  font-size: 14.5px; line-height: 1.62; color: rgba(12, 12, 13, .55);
  margin-bottom: 24px; max-width: 44ch;
}

/* botão escuro da referência */
.mat-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  background: var(--ink); color: #FFFFFF;
  font-size: 14px; font-weight: 700;
  transition: transform .45s var(--ease), background .3s;
}
.mat-btn svg { width: 15px; height: 15px; transition: transform .45s var(--ease); }
.mat-btn:hover { transform: translateY(-2px); background: #1D1D20; }
.mat-btn:hover svg { transform: translateX(4px); }

/* curva laranja (esticada no eixo X junto com o container) */
.mat__curve { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.mat__path {
  fill: none; stroke: var(--orange); stroke-width: 3;
  vector-effect: non-scaling-stroke; stroke-linecap: round;
}
.mat__arrow { fill: var(--orange); }

/* nós: elementos HTML para permanecerem circulares */
.mat__node {
  position: absolute; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%;
  background: #FFFFFF; border: 9px solid #EFEFF0;
  transform: translate(-50%, -50%);
}
.mat__node--1 { left: 11.25%; top: 66.5%; }
.mat__node--2 { left: 47.25%; top: 50.2%; }
.mat__node--3 { left: 75%;    top: 17.3%; }

/* passos posicionados ao longo da curva */
.mat-step { position: absolute; z-index: 2; width: 23%; }
.mat-step--1 { left: 9.5%;  top: 78%; }
.mat-step--2 { left: 46%;   top: 63%; }
.mat-step--3 { left: 73.5%; top: 37%; }

/* deslocamento em "em" (não em %): a % se resolveria pela altura de cada
   bloco, que varia com o texto — e os três números sairiam desalinhados */
.mat-step__ghost {
  position: absolute; right: -12%; top: -.58em;
  font-size: clamp(88px, 10.4vw, 178px); font-weight: 800; line-height: 1;
  color: rgba(12, 12, 13, .055); z-index: -1; pointer-events: none; user-select: none;
}
.mat-step__label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.mat-step h3 {
  font-size: clamp(17px, 1.5vw, 21px); font-weight: 800;
  line-height: 1.25; letter-spacing: -.01em; color: var(--ink); margin-bottom: 10px;
}
.mat-step__text { font-size: 13.5px; line-height: 1.6; color: rgba(12, 12, 13, .55); }

/* ═══════════ PROPRIEDADES (faixa cinza) ═══════════ */
.matp {
  background: #EFEFEF; color: var(--ink);
  padding: clamp(34px, 3.8vw, 58px) 0;   /* faixa mais enxuta que as demais seções */
}
.matp__title {
  font-size: clamp(24px, 2.6vw, 34px); font-weight: 800;
  letter-spacing: -.015em; color: var(--orange); margin-bottom: 14px;
}
.matp__lead {
  font-size: 15.5px; line-height: 1.6; color: rgba(12, 12, 13, .68);
  max-width: 92ch; margin-bottom: clamp(28px, 3.4vw, 46px);
}
.matp__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; align-items: start;
}
.matp__item {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}
.matp__ico {
  width: clamp(70px, 7vw, 96px); height: auto;
  fill: none; stroke: var(--orange); stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.matp__item span {
  font-size: 13.5px; font-weight: 700; line-height: 1.35; color: var(--orange);
  max-width: 16ch;
}

/* ═══════════ NOSSO PROCESSO (faixa escura com corte diagonal) ═══════════ */
/* geometria do corte: a diagonal vai de --cut-top (topo) a --cut-bot (base),
   em % da largura da seção. A faixa laranja corre paralela, à esquerda dela. */
.proc {
  --cut-top: 40%;
  --cut-bot: 61%;
  --stripe-w: 1.7%;
  --stripe-gap: 2.4%;
  position: relative; overflow: hidden;
  background: #0A0A0B; color: var(--white);
  min-height: clamp(430px, 37vw, 580px);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

/* foto recortada na diagonal */
.proc__media {
  position: absolute; inset: 0; z-index: 0;
  clip-path: polygon(var(--cut-top) 0, 100% 0, 100% 100%, var(--cut-bot) 100%);
}
.proc__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 0% center;    /* ancorado à esquerda: joga o letreiro à direita do corte */
}
/* leve escurecida para a foto conversar com o fundo preto */
.proc__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 11, .55) 0%, rgba(10, 10, 11, .12) 34%, transparent 62%);
}

/* faixa laranja paralela ao corte */
.proc__stripe {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: var(--orange);
  clip-path: polygon(
    calc(var(--cut-top) - var(--stripe-gap) - var(--stripe-w)) 0,
    calc(var(--cut-top) - var(--stripe-gap)) 0,
    calc(var(--cut-bot) - var(--stripe-gap)) 100%,
    calc(var(--cut-bot) - var(--stripe-gap) - var(--stripe-w)) 100%
  );
}

/* conteúdo — coluna limitada para não invadir o corte diagonal */
.proc__inner { position: relative; z-index: 2; width: min(1280px, 92vw); }
.proc__inner > * { max-width: min(430px, 29vw); }

.proc__badge {
  display: inline-block; margin-bottom: clamp(22px, 2.8vw, 38px);
}

.proc__title {
  font-size: clamp(26px, 3.05vw, 42px); font-weight: 800; font-stretch: 90%;
  line-height: 1.08; letter-spacing: -.01em; text-transform: uppercase;
  color: var(--white); margin-bottom: clamp(22px, 2.6vw, 34px);
}
.proc__title em { font-style: normal; color: var(--orange); }

.proc__lead {
  font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, .55);
  max-width: 46ch;
}

/* CTA: usa o botão padrão do site; aqui só o posicionamento */
.proc__cta {
  position: absolute; z-index: 3;
  right: clamp(24px, 4vw, 76px); bottom: clamp(24px, 4vw, 70px);
}

/* abaixo de 900px o corte vertical não cabe: foto vira faixa no topo */
@media (max-width: 900px) {
  .proc { display: block; min-height: 0; padding-bottom: 56px; }
  .proc__media {
    position: relative; inset: auto; width: 100%; height: 230px;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  }
  .proc__media::after {
    background: linear-gradient(180deg, rgba(10, 10, 11, .5), rgba(10, 10, 11, .1) 60%);
  }
  .proc__media img { object-position: center center; }
  /* faixa laranja acompanha o corte diagonal da foto */
  .proc__stripe {
    clip-path: polygon(0 238px, 100% 197px, 100% 203px, 0 244px);
  }
  .proc__inner { padding-top: 34px; }
  .proc__inner > * { max-width: 100%; }
  .proc__title { max-width: 18ch; }
  .proc__lead { max-width: 54ch; }
  .proc__cta {
    position: static; margin: 32px auto 0 0;
    width: max-content; margin-left: max(4vw, calc((100vw - min(1280px, 92vw)) / 2));
  }
}

/* ═══════════ QUEM CONFIA NA PETROMIX ═══════════ */
.trust {
  position: relative; overflow: hidden;
  background: #FFFFFF; color: var(--ink);
}
.trust__inner { position: relative; z-index: 1; }

/* texto */
.trust__eyebrow { margin-bottom: 22px; }
.trust__title {
  font-size: clamp(30px, 4.3vw, 58px); font-weight: 800;
  line-height: 1.12; letter-spacing: -.025em; color: var(--ink);
  margin-bottom: 26px;
}
.trust__title em { font-style: italic; font-weight: 800; color: var(--orange); }
.trust__lead {
  font-size: 16px; line-height: 1.65; color: rgba(12, 12, 13, .58);
  max-width: 54ch; margin-bottom: clamp(32px, 4.2vw, 58px);
}

/* divisor com linha laranja e gancho à direita */
.trust__divider { display: flex; align-items: flex-start; gap: 18px; }
.trust__divider span {
  font-size: 13.5px; font-weight: 700; color: var(--orange); white-space: nowrap;
  transform: translateY(-7px);
}
.trust__divider i {
  flex: 1; height: 26px;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
}

/* grade de empresas */
.trust__grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 26px; }
.trust__co {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid rgba(12, 12, 13, .1);
}
.trust__co:nth-child(5n) { border-right: 0; padding-right: 0; }
.trust__co:nth-child(5n + 1) { padding-left: 0; }
.trust__co:nth-child(-n + 5) { border-bottom: 1px solid rgba(12, 12, 13, .1); }

.trust__mark { width: 34px; height: 34px; flex-shrink: 0; color: #17171A; }
.trust__mark--line {
  fill: none; stroke: currentColor; stroke-width: 2.8;
  stroke-linejoin: round; stroke-linecap: round;
}
.trust__co div { min-width: 0; }
.trust__co strong {
  display: block; font-size: 15px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink); line-height: 1.15;
}
.trust__co span {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(12, 12, 13, .45); margin-top: 3px;
}

@media (max-width: 1080px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .trust__co { padding: 22px 18px; border-bottom: 1px solid rgba(12, 12, 13, .1); }
  .trust__co:nth-child(5n) { border-right: 1px solid rgba(12, 12, 13, .1); padding-right: 18px; }
  .trust__co:nth-child(5n + 1) { padding-left: 18px; }
  .trust__co:nth-child(3n) { border-right: 0; padding-right: 0; }
  .trust__co:nth-child(3n + 1) { padding-left: 0; }
  .trust__co:nth-last-child(-n + 1) { border-bottom: 0; }
}

@media (max-width: 720px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__co { padding: 18px 14px; gap: 11px; }
  .trust__co:nth-child(3n) { border-right: 1px solid rgba(12, 12, 13, .1); padding-right: 14px; }
  .trust__co:nth-child(3n + 1) { padding-left: 14px; }
  .trust__co:nth-child(2n) { border-right: 0; padding-right: 0; }
  .trust__co:nth-child(2n + 1) { padding-left: 0; }
  .trust__co:nth-last-child(-n + 2) { border-bottom: 0; }
  .trust__mark { width: 28px; height: 28px; }
  .trust__co strong { font-size: 13px; }
  .trust__co span { font-size: 9px; }
  .trust__divider span { white-space: normal; }
}

/* ═══════════ BLOG ═══════════ */
.blog { background: #FFFFFF; color: var(--ink); }

/* cabeçalho: título à esquerda, texto de apoio à direita */
.blog__head {
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(28px, 5vw, 86px);
  margin-bottom: clamp(22px, 2.6vw, 36px);
}
.blog__eyebrow { margin-bottom: 16px; }
.blog__title {
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 500;
  line-height: 1.16; letter-spacing: -.02em; color: var(--ink);
}
.blog__aside { padding-top: clamp(8px, 3.2vw, 48px); }
.blog__aside p {
  font-size: clamp(14.5px, 1.32vw, 17.5px); line-height: 1.62;
  color: rgba(12, 12, 13, .72);
}
.blog__aside i {
  display: block; width: 56%; height: 1px;
  background: var(--orange); margin-top: clamp(20px, 2.6vw, 36px);
}

/* grade bento */
.blog__grid {
  display: grid; grid-template-columns: repeat(24, 1fr);
  gap: 16px;
}

/* ── base dos cards ── */
.bpost {
  position: relative; overflow: hidden;
  border-radius: 14px; background: #F4F4F5;
  padding: 20px 22px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.bpost:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(12, 12, 13, .45); }

.bpost__kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.bpost h3 {
  font-size: clamp(15.5px, 1.36vw, 18.5px); font-weight: 600;
  line-height: 1.24; letter-spacing: -.01em; color: var(--ink); margin-bottom: 12px;
}
.bpost__text { font-size: 13px; line-height: 1.55; color: rgba(12, 12, 13, .5); }

/* seta circular */
.bpost__go {
  position: absolute; left: 22px; bottom: 20px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: #FFFFFF; border: 1px solid rgba(12, 12, 13, .12);
  display: grid; place-items: center; color: var(--ink);
  transition: background .3s, color .3s, transform .45s var(--ease);
}
.bpost__go svg { width: 17px; height: 17px; }
.bpost:hover .bpost__go { background: var(--orange); border-color: var(--orange); color: #fff; }
.bpost__go--light { left: auto; right: 22px; }

/* link em texto */
.bpost__link {
  display: inline-flex; align-items: center; gap: 12px; margin-top: auto;
  font-size: 13.5px; font-weight: 700; color: var(--white);
}
.bpost__link svg { width: 16px; height: 16px; color: var(--orange); transition: transform .45s var(--ease); }
.bpost:hover .bpost__link svg { transform: translateX(5px); }
.bpost__link--orange { color: var(--orange); }
.bpost__link--orange svg { color: var(--orange); }

/* ── 1 · destaque com foto ── */
.bpost--feat {
  grid-column: 1 / 12; grid-row: 1 / 3;
  background: #17171A; min-height: 440px;
  justify-content: flex-end; padding: 0;
}
.bpost--feat img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
}
.bpost--feat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(23, 23, 26, .28) 0%, rgba(23, 23, 26, 0) 26%,
    rgba(23, 23, 26, .82) 60%, #17171A 78%);
}
.bpost__badge {
  position: absolute; top: 20px; left: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--orange); color: #FFFFFF;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.bpost__badge svg { width: 14px; height: 14px; }
.bpost__body { position: relative; z-index: 2; padding: 0 22px 26px; }
.bpost--feat h3 {
  font-size: clamp(19px, 1.85vw, 25px); font-weight: 500;
  color: #FFFFFF; margin-bottom: 12px;
}
.bpost--feat p { font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, .62); }
.bpost--feat .bpost__go { bottom: 26px; }

/* ── 2 · guia técnico (escuro) ── */
.bpost--dark {
  grid-column: 12 / 18; grid-row: 1;
  background: #17171A; min-height: 240px;
}
.bpost--dark h3 { color: #FFFFFF; font-size: clamp(18px, 1.7vw, 23px); }
.bpost--dark .bpost__text { color: rgba(255, 255, 255, .55); margin-bottom: 15px; }
.bpost__ico { width: 32px; height: 32px; fill: var(--orange); margin-bottom: 15px; }
.bpost__wm {
  position: absolute; top: -6%; right: -12%;
  width: 62%; height: auto; pointer-events: none;
  fill: none; stroke: rgba(255, 255, 255, .07); stroke-width: 5;
}

/* ── 3 · cards com foto lateral ── */
.bpost--media { justify-content: flex-start; padding-bottom: 74px; }
.bpost--comp  { grid-column: 18 / 25; grid-row: 1; min-height: 240px; }
.bpost--maint { grid-column: 17 / 25; grid-row: 2; min-height: 208px; }
.bpost__copy { position: relative; z-index: 2; max-width: 52%; }
.bpost__side {
  position: absolute; right: 0; z-index: 1;
  object-fit: cover; object-position: center;
  -webkit-mask-image: linear-gradient(100deg, transparent 2%, #000 34%);
          mask-image: linear-gradient(100deg, transparent 2%, #000 34%);
}
/* comparativo: foto menor, ancorada embaixo à direita */
.bpost--comp .bpost__side { width: 54%; height: 66%; bottom: 6%; }
/* manutenção: foto ocupa a altura toda */
.bpost--maint .bpost__side { width: 50%; height: 100%; bottom: 0; }
.bpost--maint .bpost__copy { max-width: 50%; }

/* ── 4 · card do número ── */
.bpost--stat { grid-column: 12 / 17; grid-row: 2; min-height: 208px; }
.bpost__num { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bpost__num strong {
  font-size: clamp(40px, 3.8vw, 54px); font-weight: 600;
  line-height: .9; letter-spacing: -.03em; color: var(--orange);
}
.bpost__num span {
  font-size: clamp(14px, 1.3vw, 17px); font-weight: 700;
  line-height: 1.2; color: var(--ink);
}
.bpost--stat .bpost__text { margin-bottom: 20px; }

/* ── rodapé ── */
.blog__foot {
  display: flex; align-items: center; justify-content: flex-end;
  gap: clamp(20px, 3vw, 44px); margin-top: clamp(16px, 1.8vw, 24px);
}
.blog__talk {
  font-size: 14.5px; color: rgba(12, 12, 13, .62);
  border-bottom: 1px solid rgba(12, 12, 13, .28); padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.blog__talk:hover { color: var(--orange); border-color: var(--orange); }

/* ── responsivo ── */
@media (max-width: 1080px) {
  .blog__head { grid-template-columns: 1fr; gap: 22px; }
  .blog__aside { padding-top: 0; }
  .blog__aside i { width: 40%; }
  .blog__grid { grid-template-columns: repeat(12, 1fr); }
  .bpost--feat { grid-column: 1 / 13; grid-row: auto; min-height: 440px; }
  .bpost--dark { grid-column: 1 / 7; grid-row: auto; }
  .bpost--comp { grid-column: 7 / 13; grid-row: auto; }
  .bpost--stat { grid-column: 1 / 7; grid-row: auto; }
  .bpost--maint { grid-column: 7 / 13; grid-row: auto; }
  .blog__title br { display: none; }
}

@media (max-width: 720px) {
  .blog__grid { grid-template-columns: 1fr; gap: 12px; }
  .bpost--feat, .bpost--dark, .bpost--stat,
  .bpost--comp, .bpost--maint { grid-column: 1 / -1; }
  .bpost--feat { min-height: 400px; }
  .bpost { padding: 20px 20px; }
  .bpost--media { padding-bottom: 76px; }
  /* mesma especificidade das regras de desktop, senão não vencem */
  .bpost--comp .bpost__copy,
  .bpost--maint .bpost__copy { max-width: 58%; }
  .bpost--comp .bpost__side { width: 44%; height: 62%; }
  .bpost--maint .bpost__side { width: 44%; height: 100%; }
  .bpost__body { padding: 0 20px 26px; }
  .bpost__badge { left: 20px; top: 20px; }
  .bpost__go { left: 20px; }
  .bpost__go--light { right: 20px; left: auto; }
  .bpost--feat p br, .bpost--feat h3 br, .bpost__text br { display: none; }
  .blog__foot { justify-content: flex-start; flex-wrap: wrap; }
}

/* ═══════════ PERGUNTAS FREQUENTES ═══════════ */
.faq { background: #FFFFFF; color: var(--ink); }
.faq__grid {
  display: grid; grid-template-columns: minmax(0, 34%) 1fr;
  gap: clamp(32px, 5vw, 78px); align-items: start;
}

/* ── coluna de texto ── */
.faq__eyebrow { margin-bottom: 18px; }
.faq__title {
  font-size: clamp(26px, 2.9vw, 40px); font-weight: 700;
  line-height: 1.16; letter-spacing: -.025em; color: var(--ink);
  margin-bottom: 18px;
}
.faq__lead { font-size: 15px; line-height: 1.68; color: rgba(12, 12, 13, .55); }

/* ── acordeão ── */
.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faqi {
  background: #FFFFFF; border: 1px solid rgba(12, 12, 13, .1);
  border-radius: 14px;
  box-shadow: 0 6px 18px -14px rgba(12, 12, 13, .35);
  transition: border-color .3s, box-shadow .3s;
}
.faqi:hover { border-color: rgba(12, 12, 13, .2); }
.faqi.is-open { border-color: rgba(246, 132, 28, .45); box-shadow: 0 12px 30px -20px rgba(246, 132, 28, .5); }

.faqi__q {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  width: 100%; text-align: left;
  padding: 22px 24px;
  font-size: clamp(14.5px, 1.25vw, 16px); font-weight: 600; line-height: 1.4;
  color: var(--ink); transition: color .3s;
}
.faqi__q:hover { color: var(--orange-deep); }

/* botão + que vira − ao abrir */
.faqi__plus {
  position: relative; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(12, 12, 13, .16);
  transition: background .3s, border-color .3s, transform .45s var(--ease);
}
.faqi__plus i {
  position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.6px; border-radius: 2px;
  background: var(--ink); transform: translate(-50%, -50%);
  transition: transform .4s var(--ease), background .3s;
}
.faqi__plus i:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.faqi.is-open .faqi__plus { background: var(--orange); border-color: var(--orange); }
.faqi.is-open .faqi__plus i { background: #FFFFFF; }
.faqi.is-open .faqi__plus i:last-child { transform: translate(-50%, -50%) rotate(0deg); }

/* resposta: grid 0fr → 1fr anima a altura sem precisar medi-la */
.faqi__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.faqi.is-open .faqi__a { grid-template-rows: 1fr; }
.faqi__a > div { overflow: hidden; }
.faqi__a p {
  padding: 0 24px 22px; max-width: 76ch;
  font-size: 14px; line-height: 1.7; color: rgba(12, 12, 13, .58);
}

/* ── responsivo ── */
@media (max-width: 1080px) {
  .faq__grid { grid-template-columns: 1fr; gap: 30px; }
  .faq__title { max-width: 22ch; }
}

@media (max-width: 720px) {
  .faqi__q { padding: 18px 18px; gap: 14px; }
  .faqi__a p { padding: 0 18px 18px; }
}

/* ── movimento reduzido ── */
@media (prefers-reduced-motion: reduce) {
  .faqi__a { transition: none; }
}

/* ═══════════ CONTATO E LOCALIZAÇÃO ═══════════ */
.loc {
  position: relative; overflow: hidden;
  background: #F4F4F5; color: var(--ink);
}
/* mapa do Brasil como fundo, ancorado à direita */
.loc__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: right center;
  pointer-events: none;
}

.loc__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 480px) 1fr;
  gap: clamp(30px, 5vw, 70px); align-items: stretch;
}

/* ── coluna de contato ── */
.loc__eyebrow { margin-bottom: 20px; }
.loc__title {
  font-size: clamp(28px, 3.5vw, 47px); font-weight: 700;
  line-height: 1.14; letter-spacing: -.028em; color: var(--ink);
  margin-bottom: 22px;
}
.loc__lead {
  font-size: 15.5px; line-height: 1.65; color: rgba(12, 12, 13, .62);
  margin-bottom: 20px; max-width: 46ch;
}

/* cartão de canais */
.loccard {
  background: #FFFFFF; border-radius: 12px;
  box-shadow: 0 18px 40px -26px rgba(12, 12, 13, .3), 0 0 0 1px rgba(12, 12, 13, .05);
  margin-bottom: 22px;
}
.loccard__row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: start;
  padding: 15px 20px;
}
.loccard__row + .loccard__row { border-top: 1px solid rgba(12, 12, 13, .08); }

.loccard__ico {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: #FBFBFC; border: 1px solid rgba(12, 12, 13, .07);
  display: grid; place-items: center;
}
.loccard__ico svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--orange); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.loccard__ico svg .fill { fill: var(--orange); stroke: none; }

.loccard__body h3 {
  font-size: 14px; font-weight: 600; color: var(--ink);
  line-height: 1.3; margin-bottom: 5px;
}
.loccard__body p { font-size: 12px; line-height: 1.5; color: rgba(12, 12, 13, .5); }
.loccard__extra {
  display: flex; align-items: center; gap: 7px;
  margin-top: 9px; font-size: 13px !important; color: var(--ink) !important;
}
.loccard__extra--lg { font-size: 15px !important; }
.loccard__mini { width: 14px; height: 14px; color: var(--orange); }

.loccard__link {
  align-self: end; white-space: nowrap;
  font-size: 12.5px; color: var(--orange);
  border-bottom: 1px solid rgba(246, 132, 28, .5); padding-bottom: 2px;
  transition: border-color .3s, color .3s;
}
.loccard__link:hover { color: var(--orange-deep); border-color: var(--orange-deep); }

/* mapa incorporado da unidade */
.locmap {
  position: relative; border-radius: 10px; overflow: hidden;
  height: clamp(148px, 13.5vw, 176px);
  box-shadow: 0 0 0 1px rgba(12, 12, 13, .07);
}
.locmap iframe { width: 100%; height: 100%; border: 0; display: block; }
.locmap__open {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px; border-radius: 3px;
  background: #FFFFFF; color: #1A73E8;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .28);
}
.locmap__open svg { width: 15px; height: 15px; }
.locmap__open:hover { background: #F3F6FC; }

/* ── lado do mapa do Brasil ── */
.loc__map {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: clamp(16px, 4vw, 58px);
}
.loc__route {
  align-self: flex-end;
  display: inline-flex; align-items: center; gap: 26px;
  padding: 17px 26px; border-radius: 10px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(12, 12, 13, .12);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-size: 15px; font-weight: 500; color: var(--ink);
  transition: background .3s, border-color .3s, transform .45s var(--ease);
}
.loc__route svg { width: 18px; height: 18px; transition: transform .45s var(--ease); }
.loc__route:hover { background: #FFFFFF; border-color: rgba(12, 12, 13, .22); transform: translateY(-2px); }
.loc__route:hover svg { transform: translateX(5px); }

/* ── responsivo ── */
@media (max-width: 1080px) {
  .loc__grid { grid-template-columns: 1fr; }
  .loc__bg { object-position: 76% center; opacity: .55; }
  .loc__map { min-height: 380px; padding-top: 30px; }
  .loc__route { align-self: flex-start; }
}

@media (max-width: 720px) {
  .loc__title br { display: none; }
  .loccard__row { grid-template-columns: auto 1fr; row-gap: 10px; padding: 18px; }
  .loccard__link { grid-column: 2; align-self: start; }
  .loccard__body p br { display: none; }
  .loc__bg { object-position: 70% 30%; opacity: .4; }
  .loc__map { min-height: 300px; }
  .loc__route { width: 100%; justify-content: space-between; }
}

/* ═══════════ RODAPÉ ═══════════ */
/* faixa clara atrás: faz aparecer o recorte dos cantos arredondados do bloco escuro */
.footwrap { background: #F4F4F5; }
.foot {
  background: #0A0A0B; color: var(--white);
  border-radius: 22px 22px 0 0;
  padding: clamp(36px, 4vw, 52px) 0 clamp(18px, 2vw, 24px);
}

.foot__inner {
  display: grid; grid-template-columns: minmax(0, 1.6fr) 1fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}

/* ── marca ── */
.foot__logo { height: 32px; width: auto; margin-bottom: 18px; }
.foot__tag {
  font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .5);
  margin-bottom: 30px; max-width: 34ch;
}
.foot__social { display: flex; gap: 16px; }
.foot__social a {
  width: 34px; height: 34px; display: grid; place-items: center;
  color: rgba(255, 255, 255, .85); transition: color .3s, transform .45s var(--ease);
}
.foot__social svg {
  width: 21px; height: 21px;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.foot__social svg .solid { fill: currentColor; stroke: none; }
.foot__social a:hover { color: var(--orange); transform: translateY(-3px); }

/* ── colunas ── */
.foot__col { display: flex; flex-direction: column; }
.foot__col h3 {
  font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 22px;
}
.foot__col a:not(.foot__item) {
  font-size: 14px; color: rgba(255, 255, 255, .5);
  padding: 7px 0; transition: color .3s, padding-left .3s;
}
.foot__col a:not(.foot__item):hover { color: var(--white); padding-left: 5px; }

/* linhas de contato com ícone circular */
.foot__item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255, 255, 255, .62);
  padding: 7px 0; transition: color .3s;
}
.foot__item:hover { color: var(--white); }
.foot__item--static { cursor: default; }
.foot__ico {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  display: grid; place-items: center;
  transition: border-color .3s, background .3s;
}
.foot__ico svg {
  width: 15px; height: 15px;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.foot__item:not(.foot__item--static):hover .foot__ico {
  border-color: var(--orange); background: rgba(246, 132, 28, .12);
}

/* ── barra inferior ── */
.foot__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: clamp(20px, 2.2vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13.5px; color: rgba(255, 255, 255, .45);
}
.foot__bottom a { transition: color .3s; }
.foot__bottom a:hover { color: var(--white); }

@media (max-width: 900px) {
  .foot__inner { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .foot__inner { grid-template-columns: 1fr; gap: 34px; }
  .foot__tag br { display: none; }
  .foot__bottom { justify-content: flex-start; }
}

/* ═══════════ TOAST ═══════════ */
.toast {
  position: fixed; left: 50%; bottom: 30px; z-index: 200;
  transform: translate(-50%, 80px);
  background: var(--white); color: var(--ink);
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, .5);
  opacity: 0; pointer-events: none;
  transition: transform .55s var(--ease), opacity .45s;
}
.toast.is-show { transform: translate(-50%, 0); opacity: 1; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1180px) {
  .header__phone { display: none; }
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
  .header__actions .btn { display: none; }
  .matp__grid { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
}

/* abaixo de 1200px não há altura para a curva: os passos viram lista */
@media (max-width: 1200px) {
  .mat { aspect-ratio: auto; min-height: 0; }
  .mat__curve, .mat__node { display: none; }
  .mat__intro { position: static; width: 100%; max-width: 680px; margin-bottom: 56px; }
  .mat-step {
    position: static; width: 100%; max-width: 620px;
    padding-left: 26px; border-left: 2px solid rgba(246, 132, 28, .3);
  }
  .mat-step + .mat-step { margin-top: 38px; }
  .mat-step__ghost { right: 0; top: -26px; font-size: 96px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 80px; }
  .logo__img { height: 28px; }
  .matp__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .mat-step__ghost { font-size: 78px; }
  .hero { padding-top: 130px; }
  .hero__grid { grid-template-columns: 1fr; }
  .scrolly__veil {
    background:
      linear-gradient(180deg, rgba(10, 10, 11, .8) 0%, rgba(10, 10, 11, .58) 40%, rgba(10, 10, 11, .82) 100%);
  }
  .hero__title { font-size: clamp(34px, 9.6vw, 44px); }
  .hero__ctas { gap: 20px; margin-bottom: 40px; }
  .hero__hint { display: none; }

  /* rótulo da hero é o mais longo do site: tracking largo do desktop (.26em)
     força 2 linhas em telas estreitas — aperta só aqui, mantendo os outros
     rótulos (mesma classe) intocados nas demais dobras */
  .hero__eyebrow { font-size: 10px; letter-spacing: .06em; }

  /* botões um pouco menores no mobile — 57px de altura ficava desproporcional
     numa tela de 375px; 47px ainda passa do mínimo de toque (44px) */
  .btn { padding: 13px 24px; font-size: 13px; }

  /* "Quem somos" ocupava a tela inteira no mobile (812px em 812px de altura):
     97px de padding em cima/embaixo (195px no total) + título de 30px
     quebrando em 5-6 linhas. Reduz padding, título e as margens entre os
     blocos — o conteúdo passa a caber com folga, sem exigir 1 tela inteira
     de scroll parado numa única dobra. */
  .s-about { min-height: 0; padding: clamp(56px, 9vh, 84px) 0; }
  .s-about__title { font-size: clamp(26px, 7.4vw, 34px); margin-bottom: 16px; }
  .s-about__sub { margin-bottom: 24px; }
  .s-about__sub--full { display: none; }
  .s-about__sub--short { display: block; }

  /* linhas de geometria muito visíveis no mobile: metade da opacidade de
     pico, e os traços em si (não só o container) mais discretos */
  .s-about__geo { opacity: calc(var(--geo-fade, 0) * .45); }
  .s-about__geo .g { stroke: rgba(255, 255, 255, .16); }
  .s-about__geo .g--box { stroke: rgba(255, 255, 255, .2); }
  .s-about__geo .g--plus { stroke: rgba(255, 255, 255, .28); }
  .s-about__geo .g--tick { stroke: rgba(246, 132, 28, .6); }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-load], [data-reveal] { opacity: 1 !important; transform: none !important; }
}
