/* Box 73 — folha de estilo única.
   Paleta da marca: preto + laranja do logo (#F56F04). Tipografia: Archivo (variável, largura + peso). */

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0c0d0f;
  --ink-2: #141619;
  --ink-3: #1d2024;
  --paper: #eef0f2;
  --paper-2: #e2e5e9;
  --white: #fff;
  --line: #d8dce1;
  --text: #131417;
  --muted: #585d65;
  --muted-d: #a9aeb5;
  --orange: #f56f04;
  --orange-hi: #ff8424;
  --orange-ink: #a34700;
  --wa: #25d366;
  --wa-hi: #3ee07b;
  --ok: #2fbf71;
  --err: #c62828;

  --surface: var(--white);
  --surface-line: var(--line);
  --surface-muted: var(--muted);

  --radius: 6px;
  --radius-lg: 12px;
  --wrap: 1296px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 1px 2px rgb(0 0 0 / .06), 0 12px 32px -12px rgb(0 0 0 / .18);
  --shadow-lg: 0 30px 80px -30px rgb(0 0 0 / .55);

  --fs-display: clamp(2.6rem, 1.1rem + 5.4vw, 6.25rem);
  --fs-display-md: clamp(2.3rem, 1.3rem + 3.6vw, 4.6rem);
  --fs-h2: clamp(1.9rem, 1.2rem + 2.2vw, 3.2rem);
  --fs-h3: clamp(1.25rem, 1.05rem + .6vw, 1.6rem);
  --fs-lead: clamp(1.05rem, 1rem + .3vw, 1.25rem);

  color-scheme: light;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.05; letter-spacing: -.02em; font-stretch: 108%; text-wrap: balance; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
main:focus { outline: none; }
::selection { background: var(--orange); color: var(--ink); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 2px; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--orange); color: var(--ink); padding: 10px 16px; font-weight: 700; border-radius: var(--radius); text-decoration: none; }
.skip:focus { top: 12px; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.ico { width: 1.2em; height: 1.2em; flex: none; }
.muted { color: var(--surface-muted); }
.small { font-size: .875rem; }

/* ---------- tipografia ---------- */
.display {
  font-size: var(--fs-display);
  line-height: .95;
  letter-spacing: -.035em;
  font-stretch: 112%;
  font-weight: 850;
}
.display--md { font-size: var(--fs-display-md); line-height: .98; }
.h2 { font-size: var(--fs-h2); letter-spacing: -.03em; font-stretch: 110%; }
.h3 { font-size: var(--fs-h3); }
.h2 + p, .h2 + .lead-sm { margin-top: 20px; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--surface-muted); max-width: 60ch; }
.lead-sm { font-size: 1.0625rem; color: var(--surface-muted); max-width: 62ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .65em;
  margin: 0 0 1.1rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-stretch: 110%;
  color: var(--orange-ink);
}
.eyebrow::before { content: ""; width: .7em; height: .7em; background: var(--orange); flex: none; }
.eyebrow--light, .section--ink .eyebrow { color: var(--orange-hi); }

/* Destaque no estilo do "73" do logo: caixa laranja com texto preto */
.mark {
  background: var(--orange);
  color: var(--ink);
  padding: 0 .14em .02em;
  margin-inline: -.02em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hl { color: var(--orange-hi); }
.hl--block { display: block; }

.link {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 700; text-decoration: none;
  color: var(--orange-ink);
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
  transition: gap .25s var(--ease);
}
.link:hover { gap: .7em; }
.link .ico { width: 1em; height: 1em; }
.section--ink .link, .phero .link { color: var(--orange-hi); }
.link--ink, .section--orange .link { color: var(--ink); }

/* ---------- botões ---------- */
.btn {
  --btn-bg: var(--orange); --btn-fg: var(--ink); --btn-bd: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 48px; padding: .75em 1.25em;
  font-weight: 700; font-size: .98rem; font-stretch: 106%; line-height: 1.1; letter-spacing: -.005em;
  text-decoration: none; white-space: nowrap;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 2px solid var(--btn-bd); border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn .ico { width: 1.15em; height: 1.15em; transition: transform .25s var(--ease); }
.btn:hover .ico:last-child:not(:first-child) { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--lg { min-height: 56px; padding: .95em 1.5em; font-size: 1.04rem; }
.btn--block { width: 100%; }
.btn--primary:hover { --btn-bg: var(--orange-hi); --btn-bd: var(--orange-hi); box-shadow: 0 10px 30px -10px rgb(245 111 4 / .6); }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgb(255 255 255 / .35); }
.btn--ghost:hover { --btn-bd: #fff; --btn-bg: rgb(255 255 255 / .06); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--outline:hover { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--dark { --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink); }
.btn--dark:hover { --btn-bg: var(--ink-3); --btn-bd: var(--ink-3); }
.btn--wa { --btn-bg: var(--wa); --btn-fg: var(--ink); --btn-bd: var(--wa); }
.btn--wa:hover { --btn-bg: var(--wa-hi); --btn-bd: var(--wa-hi); }
.btn--ghost .ico:first-child { color: var(--wa); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.actions--stack { flex-direction: column; }
.actions--stack .btn { width: 100%; }

/* ---------- topo ---------- */
.topbar { background: #000; color: var(--muted-d); font-size: .82rem; border-bottom: 1px solid rgb(255 255 255 / .06); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar__unit { display: flex; align-items: center; gap: 10px; margin: 0; }
.topbar__unit .ico { width: 15px; height: 15px; color: var(--orange); }
.topbar__unit strong { color: #fff; font-weight: 600; }
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__link { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; transition: color .2s; }
.topbar__link:hover { color: #fff; }
.topbar__link .ico { width: 15px; height: 15px; }
@media (max-width: 860px) { .topbar { display: none; } }

/* O desfoque fica num pseudo-elemento: backdrop-filter no próprio header viraria o
   "containing block" do menu mobile (position: fixed) e cortaria o painel. */
.site-header {
  position: sticky; top: 0; z-index: 50; isolation: isolate;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgb(12 13 15 / .5), rgb(12 13 15 / .28));
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  transition: background .3s;
}
.site-header { border-bottom-color: rgb(255 255 255 / .08); }
.site-header.is-scrolled::before { background: rgb(12 13 15 / .74); }
.nav-open .site-header::before { background: var(--ink); }
/* O conteúdo sobe por baixo do cabeçalho, para o vidro fosco mostrar a foto do topo. */
main { margin-top: calc(-1 * var(--header-h)); }
main > .hero { padding-top: var(--header-h); }
main > .phero { padding-top: calc(var(--header-h) + clamp(56px, 8vw, 112px)); }
main > .phero--compact { padding-top: calc(var(--header-h) + clamp(48px, 6vw, 88px)); }
main > .shero { padding-top: calc(var(--header-h) + clamp(48px, 7vw, 96px)); }
.site-header__inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.brand { display: block; flex: none; }
.brand img { width: 128px; height: auto; }
.nav { margin-left: auto; }
.nav__list { display: flex; gap: 4px; }
.nav__list a {
  position: relative; display: block; padding: 10px 14px;
  font-weight: 600; font-size: .96rem; text-decoration: none; color: rgb(255 255 255 / .82);
  transition: color .2s;
}
.nav__list a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__list a:hover, .nav__list a[aria-current] { color: #fff; }
.nav__list a:hover::after, .nav__list a[aria-current]::after { transform: scaleX(1); }
.nav__mobile-extra { display: none; }
.site-header__cta .btn { min-height: 46px; padding: .65em 1.1em; font-size: .95rem; }
.nav-toggle { display: none; }

@media (max-width: 1080px) {
  :root { --header-h: 66px; }
  .brand img { width: 112px; }
  .site-header__cta { margin-left: auto; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; margin-right: -8px;
    background: none; border: 0; color: #fff; cursor: pointer; border-radius: var(--radius);
  }
  .nav-toggle .ico { width: 26px; height: 26px; }
  .nav-toggle .ico--close { display: none; }
  .nav-open .nav-toggle .ico--open { display: none; }
  .nav-open .nav-toggle .ico--close { display: block; }
  .js .nav {
    position: fixed; inset: var(--header-h) 0 0; z-index: 49;
    display: flex; flex-direction: column; gap: 28px;
    padding: 24px var(--gutter) calc(32px + env(safe-area-inset-bottom));
    background: var(--ink); overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s;
  }
  .js.nav-open .nav { opacity: 1; visibility: visible; transform: none; transition: opacity .25s, transform .3s var(--ease); }
  .js .nav__list { flex-direction: column; gap: 0; }
  .js .nav__list a { padding: 16px 0; font-size: 1.6rem; font-weight: 800; font-stretch: 110%; letter-spacing: -.02em; border-bottom: 1px solid rgb(255 255 255 / .08); }
  .js .nav__list a::after { display: none; }
  .js .nav__list a[aria-current] { color: var(--orange-hi); }
  .js .nav__mobile-extra { display: flex; flex-direction: column; gap: 12px; }
  .nav-open body { overflow: hidden; }
  /* Sem JS: menu vira uma linha rolável */
  .no-js .site-header__inner { flex-wrap: wrap; height: auto; padding-block: 12px; }
  .no-js .nav { order: 3; width: 100%; overflow-x: auto; }
}
@media (max-width: 640px) {
  .site-header__cta { display: none; }
  .nav-toggle { margin-left: auto; }
  .hero .actions .btn, .phero .actions .btn, .shero .actions .btn, .cta-final .actions .btn, .leva .actions .btn { flex: 1 1 100%; }
}

/* ---------- seções ---------- */
.section { padding-block: clamp(72px, 9vw, 136px); background: var(--surface-bg, transparent); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.section--paper { background: var(--paper); }
.section--ink {
  background: var(--ink); color: #fff;
  --surface: var(--ink-2); --surface-line: rgb(255 255 255 / .1); --surface-muted: var(--muted-d);
}
.section--orange { background: var(--orange); color: var(--ink); --surface-muted: #2a1600; }
.section__head { margin-bottom: clamp(36px, 5vw, 64px); max-width: 780px; }
.section__head--split { display: grid; gap: 20px 64px; max-width: none; align-items: end; }
@media (min-width: 960px) { .section__head--split { grid-template-columns: 1.15fr .85fr; } }
.section__head--split .lead { margin: 0; }
.section__foot { margin-top: 40px; display: flex; justify-content: center; }

/* ---------- hero da Home ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: min(calc(100svh - 38px), 980px);
  background: var(--ink); color: #fff;
}
@media (max-width: 860px) { .hero { min-height: 100svh; } }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media .car__slide img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos); }
.hero__media::after { z-index: 1; }
.hero__dots { display: none !important; left: auto; right: var(--gutter); bottom: 28px; justify-content: flex-end; }
@media (max-width: 860px) { .hero__dots { right: auto; left: var(--gutter); bottom: 20px; } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgb(12 13 15 / .94) 0%, rgb(12 13 15 / .82) 32%, rgb(12 13 15 / .35) 62%, rgb(12 13 15 / .1) 100%),
    linear-gradient(0deg, rgb(12 13 15 / .9) 0%, rgb(12 13 15 / 0) 38%);
}
@media (max-width: 860px) {
  .hero__media::after { background: linear-gradient(0deg, rgb(12 13 15 / .97) 0%, rgb(12 13 15 / .82) 48%, rgb(12 13 15 / .35) 100%); }
}
.hero__inner { padding-block: clamp(56px, 10vh, 120px) clamp(40px, 6vh, 64px); }
.hero .display { max-width: 11.5em; }
.hero__lead { max-width: 36em; margin: 28px 0 36px; font-size: var(--fs-lead); color: rgb(255 255 255 / .82); }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 40px; font-size: .92rem; color: rgb(255 255 255 / .78); }
.hero__proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof .ico { width: 17px; height: 17px; color: var(--orange-hi); }
.hero__proof strong { color: #fff; }



/* ---------- "Minha moto…" → "A gente resolve." (diagnóstico) ---------- */
.diag { background: var(--white); }
.diag .section__head { margin-bottom: 40px; }
.diag__grid { display: grid; gap: 24px; }
@media (min-width: 1024px) { .diag__grid { grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: stretch; } }
.diag__list { border-top: 2px solid var(--ink); }
.diag__opt {
  position: relative; display: grid; grid-template-columns: 2.4rem 1fr 22px; align-items: center; gap: 12px;
  padding: 19px 16px; border-bottom: 1px solid var(--line); text-decoration: none;
  transition: background-color .25s, color .25s, padding .3s var(--ease);
}
.diag__n { font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--muted); font-variant-numeric: tabular-nums; }
.diag__q { font-size: clamp(1.1rem, .85rem + .75vw, 1.5rem); font-weight: 700; font-stretch: 108%; letter-spacing: -.02em; line-height: 1.2; }
.diag__opt .ico { width: 20px; height: 20px; opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .3s var(--ease); color: var(--orange); }
.diag__opt:hover { background: var(--paper); }
.diag__opt.is-active { background: var(--ink); color: #fff; padding-left: 22px; }
.diag__opt.is-active .diag__n { color: var(--orange-hi); }
.diag__opt.is-active .ico { opacity: 1; transform: none; }
.diag__opt::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--orange); }
.is-playing .diag__opt.is-active::after { animation: diag-prog var(--diag-t, 5s) linear forwards; }
@keyframes diag-prog { to { width: 100%; } }

.diag__stage { position: relative; min-height: 500px; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); color: #fff; }
.diag__panel { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; }
.diag__panel[hidden] { display: none; }
.js .diag__panel { opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility 0s .5s; }
.js .diag__panel.is-active { opacity: 1; visibility: visible; transition: opacity .5s var(--ease); }
.diag__media { position: absolute; inset: 0; }
.diag__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 6s var(--ease); }
.diag__panel.is-active .diag__media img { transform: scale(1); }
.diag__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(12 13 15 / .1) 0%, rgb(12 13 15 / .55) 45%, rgb(12 13 15 / .95) 100%); }
.diag__body { position: relative; padding: clamp(24px, 3vw, 40px); }
.diag__body > * { transform: translateY(14px); opacity: 0; transition: transform .6s var(--ease), opacity .6s var(--ease); }
.no-js .diag__body > *, .diag__panel.is-active .diag__body > * { transform: none; opacity: 1; }
.diag__panel.is-active .diag__body > :nth-child(2) { transition-delay: .08s; }
.diag__panel.is-active .diag__body > :nth-child(3) { transition-delay: .14s; }
.diag__panel.is-active .diag__body > :nth-child(4) { transition-delay: .2s; }
.diag__panel.is-active .diag__body > :nth-child(5) { transition-delay: .26s; }
.diag__eco { margin: 0 0 6px; color: rgb(255 255 255 / .75); font-size: 1rem; font-weight: 600; }
.diag__res { margin: 0 0 18px; font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.8rem); font-weight: 850; font-stretch: 112%; letter-spacing: -.03em; line-height: 1; }
.diag__serv { font-size: 1.5rem; margin-bottom: 8px; }
.diag__txt { max-width: 46ch; color: rgb(255 255 255 / .8); margin-bottom: 22px; }
.diag .actions { align-items: center; gap: 20px; }
.link--light { color: #fff !important; }

@media (max-width: 1023px) {
  .diag__stage { order: -1; min-height: 500px; }
  .diag__list { display: flex; gap: 8px; overflow-x: auto; border: 0; padding-bottom: 6px; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
  .diag__list::-webkit-scrollbar { display: none; }
  .diag__list li { flex: none; scroll-snap-align: start; }
  .diag__opt { display: flex; gap: 8px; padding: 12px 16px; border: 1.5px solid var(--line); border-radius: 999px; white-space: nowrap; }
  .diag__opt.is-active { padding-left: 16px; border-color: var(--ink); }
  .diag__q { font-size: .98rem; }
  .diag__opt .ico, .diag__opt::after { display: none; }
  .no-js .diag__list { flex-direction: column; }
}

/* ---------- cartões de serviço ---------- */
.svc {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px; border-radius: var(--radius-lg);
  color: #fff; text-decoration: none; background: var(--ink);
}
.svc__media { position: absolute; inset: 0; z-index: -1; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(12 13 15 / .05) 20%, rgb(12 13 15 / .88) 78%); transition: background-color .4s; }
.svc__body { display: grid; gap: 6px; padding: 24px; }
.svc__ico { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 10px; background: var(--orange); color: var(--ink); border-radius: var(--radius); }
.svc__ico .ico { width: 22px; height: 22px; }
.svc__title { font-size: 1.45rem; font-weight: 800; font-stretch: 110%; letter-spacing: -.02em; line-height: 1.1; }
.svc__txt { color: rgb(255 255 255 / .78); font-size: .97rem; line-height: 1.45; max-width: 40ch; }
.svc__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-weight: 700; font-size: .9rem; color: var(--orange-hi); }
.svc__more .ico { width: 1em; height: 1em; transition: transform .3s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.06); }
.svc:hover .svc__more .ico { transform: translateX(4px); }
.svc--accent .svc__media::after { background: linear-gradient(90deg, rgb(12 13 15 / .92) 0%, rgb(12 13 15 / .6) 45%, rgb(245 111 4 / .25) 100%); }

.bento { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .bento { grid-template-columns: 1fr 1fr; } .svc--tall, .svc--wide { grid-column: 1 / -1; } }
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(300px, auto); }
  .svc--tall { grid-column: 1 / 3; grid-row: 1 / 3; }
  .svc--tall .svc__title { font-size: 2.2rem; }
  .svc--wide { grid-column: 1 / -1; min-height: 260px; }
  .svc--wide .svc__body { max-width: 560px; padding: 36px; }
  .svc--wide .svc__title { font-size: 2rem; }
}
.grid-svc { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid-svc .svc { aspect-ratio: 4 / 5; min-height: 0; }
@media (min-width: 1100px) { .grid-svc--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Leva e Traz (Home) ---------- */
.leva__grid { display: grid; gap: 48px 72px; align-items: center; }
@media (min-width: 1024px) { .leva__grid { grid-template-columns: 1fr 1fr; } }
.leva { position: relative; overflow: hidden; }
.leva > .wrap { position: relative; z-index: 1; }
.leva__bg {
  position: absolute; inset: -56px 0 0 -56px; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M12 18l10 10-10 10M30 18l10 10-10 10' fill='none' stroke='%23ffffff' stroke-opacity='.06' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 85% 95% at 25% 55%, #000 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 95% at 25% 55%, #000 20%, transparent 80%);
  animation: chevrons 2.8s linear infinite;
}
.leva::before { content: ""; position: absolute; left: -10%; bottom: -30%; width: 60%; height: 80%; background: radial-gradient(closest-side, rgb(245 111 4 / .22), transparent); pointer-events: none; }
@keyframes chevrons { to { transform: translateX(56px); } }
@media (prefers-reduced-motion: reduce) { .leva__bg { animation: none; } }
.leva__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); }
.car, .car__slide { position: absolute; inset: 0; margin: 0; }
.car__slide { opacity: 0; transition: opacity 1.1s var(--ease); }
.car__slide.is-active { opacity: 1; }
.car__slide img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, 50% 50%); transform: scale(1.1); transition: transform 7s linear; }
.car__slide.is-active img { transform: scale(1); }
.car__dots { position: absolute; left: 0; right: 0; bottom: 18px; z-index: 2; display: flex; justify-content: center; gap: 8px; }
.car__dot { width: 28px; height: 6px; padding: 0; border: 0; border-radius: 3px; background: rgb(255 255 255 / .45); cursor: pointer; transition: width .3s var(--ease), background-color .3s; }
.car__dot.is-active { width: 48px; background: var(--orange); }
.car__dot:hover { background: #fff; }
.leva__badge { z-index: 2; }
@media (max-width: 1023px) { .leva__media { aspect-ratio: 16 / 10; } }
.leva__badge {
  position: absolute; left: 20px; top: 20px; display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--orange); color: var(--ink); font-weight: 800; font-stretch: 110%; border-radius: var(--radius);
}
.leva__body .lead { margin-top: 20px; }
.steps { display: grid; gap: 0; margin: 32px 0; counter-reset: s; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid var(--surface-line); }
.steps li:last-child { border-bottom: 1px solid var(--surface-line); }
.steps__n { display: grid; place-items: center; width: 36px; height: 36px; background: var(--orange); color: var(--ink); font-weight: 800; border-radius: var(--radius); }
.steps strong { display: block; font-size: 1.08rem; font-stretch: 106%; }
.steps p { margin: 2px 0 0; color: var(--surface-muted); font-size: .96rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chips li { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border: 1px solid var(--surface-line); border-radius: 999px; font-size: .88rem; font-weight: 600; }
.chips .ico { width: 15px; height: 15px; color: var(--orange-hi); }

/* ---------- fundos animados (parentes do padrão do Leva e Traz) ---------- */
.has-fx { position: relative; overflow: hidden; isolation: isolate; }
.has-fx > .wrap { position: relative; z-index: 1; }
.fx { position: absolute; inset: -96px; z-index: 0; pointer-events: none; }
/* Peças: cruzetas e porcas descendo na diagonal sobre o laranja */
.fx--pecas {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72'%3E%3Cg fill='none' stroke='%230c0d0f' stroke-opacity='.055' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M18 12v12M12 18h12'/%3E%3Cpath d='M54 47l6 3.5v7L54 61l-6-3.5v-7z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 20% 40%, #000 15%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 90% at 20% 40%, #000 15%, transparent 75%);
  animation: fx-diag 9s linear infinite;
}
@keyframes fx-diag { to { transform: translate(72px, 72px); } }
/* Unidades / localização: malha de pontos de mapa deslizando + pulsos de "localização" */
.fx--mapa {
  background-image: radial-gradient(circle, rgb(255 255 255 / .16) 1.3px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 85% 25%, #000 5%, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 70% at 85% 25%, #000 5%, transparent 70%);
  animation: fx-pan 14s linear infinite;
}
@keyframes fx-pan { to { transform: translate(-52px, 26px); } }
/* Setas do Leva e Traz (mesmo desenho da Home) */
.fx--setas {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M12 18l10 10-10 10M30 18l10 10-10 10' fill='none' stroke='%23ffffff' stroke-opacity='.06' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 85% 95% at 25% 55%, #000 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 95% at 25% 55%, #000 20%, transparent 80%);
  animation: chevrons 2.8s linear infinite;
}
/* Etapas: faixas de pista tracejadas correndo */
.fx--estrada {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='110'%3E%3Cpath d='M0 55h44' stroke='%23ffffff' stroke-opacity='.09' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 88px 110px;
  -webkit-mask-image: linear-gradient(180deg, transparent 5%, #000 35%, #000 65%, transparent 95%);
  mask-image: linear-gradient(180deg, transparent 5%, #000 35%, #000 65%, transparent 95%);
  animation: fx-estrada 1.8s linear infinite;
}
.fx--estrada::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 40% 60% at 90% 90%, rgb(245 111 4 / .18), transparent 70%); }
@keyframes fx-estrada { to { transform: translateX(88px); } }
@media (prefers-reduced-motion: reduce) { .fx, .fx::before, .fx::after { animation: none !important; } }

/* ---------- estrutura / diferenciais ---------- */
.mosaic { display: grid; gap: 12px; margin-bottom: clamp(40px, 5vw, 72px); grid-template-columns: 1fr 1fr; }
.mosaic figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); min-height: 180px; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic figcaption {
  position: absolute; left: 12px; bottom: 12px; padding: 6px 10px; border-radius: 4px;
  background: rgb(12 13 15 / .78); color: #fff; font-size: .8rem; font-weight: 600;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.mosaic__a { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
@media (max-width: 899px) {
  .mosaic__d { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .mosaic__d img { object-position: 50% 68%; }
  .mosaic figcaption { left: 8px; bottom: 8px; padding: 5px 8px; font-size: .74rem; }
}
@media (min-width: 900px) {
  .mosaic { grid-template-columns: 1.7fr 1fr 1fr; grid-template-rows: 260px 260px; }
  .mosaic__a { grid-column: 1; grid-row: 1 / 3; aspect-ratio: auto; }
  .mosaic__b { grid-column: 2 / 4; }
  .mosaic__d img { object-position: 50% 30%; }
}
.difs { display: grid; gap: 1px; background: var(--surface-line); border: 1px solid var(--surface-line); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 640px) { .difs { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .difs { grid-template-columns: repeat(3, 1fr); } .difs--5 { grid-template-columns: repeat(5, 1fr); } }
.dif { position: relative; padding: 28px; background: var(--surface); transition: background-color .35s var(--ease), color .35s; }
.dif::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.dif__ico, .dif__ico .ico { transition: background-color .35s, color .35s, border-color .35s, transform .45s var(--ease); }
.dif:hover { background: var(--ink) !important; color: #fff; }
.dif:hover::before { transform: scaleX(1); }
.dif:hover p { color: var(--muted-d); }
.dif:hover .dif__ico { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.dif:hover .dif__ico .ico { transform: rotate(-8deg) scale(1.08); }
.section--paper .dif { background: var(--white); }
.dif__ico { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 20px; border: 2px solid var(--orange); color: var(--orange-ink); border-radius: var(--radius); }
.section--ink .dif__ico { color: var(--orange-hi); }
.dif__ico .ico { width: 24px; height: 24px; }
.dif h3 { font-size: 1.2rem; margin-bottom: 8px; }
.dif p { margin: 0; color: var(--surface-muted); font-size: .98rem; }

/* ---------- peças ---------- */
.pecas__grid { display: grid; gap: 48px 72px; align-items: center; }
@media (min-width: 1024px) { .pecas__grid { grid-template-columns: 1.05fr .95fr; } }
.pecas .eyebrow { color: var(--ink); }
.pecas .eyebrow::before { background: var(--ink); }
.pecas .lead { color: #2a1600; margin: 24px 0; }
.pecas__ex { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.pecas__ex li { padding: 8px 14px; border: 2px solid var(--ink); border-radius: 999px; font-weight: 700; font-size: .9rem; }
.pecas__ex--light li { border-color: rgb(255 255 255 / .35); color: #fff; }

/* ---------- cartões e formulários ---------- */
.card { background: var(--white); color: var(--text); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.card--form { padding: clamp(22px, 3vw, 36px); }
.card--big { padding: clamp(24px, 4vw, 48px); }
.card__title { margin: 0 0 18px; font-size: 1.5rem; font-weight: 800; font-stretch: 110%; letter-spacing: -.02em; }

.form__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px 14px; margin-bottom: 20px; }
.field { grid-column: span 12; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
@media (min-width: 560px) {
  .field--half { grid-column: span 6; }
  .field--third { grid-column: span 4; }
  .field--twothird { grid-column: span 8; }
  .field--quarter { grid-column: span 3; }
}
@media (max-width: 559px) { .field--third { grid-column: span 4; } .field--twothird { grid-column: span 8; } .field--quarter { grid-column: span 6; } }
.field--full { grid-column: 1 / -1; }
.field label, .seg legend { font-size: .86rem; font-weight: 700; color: var(--text); }
.field__opt { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  background: #f7f8f9; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-size: 1rem; line-height: 1.3; color: var(--text);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6b6f76; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #aeb4bc; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgb(245 111 4 / .18); }
.field [aria-invalid="true"] { border-color: var(--err); background: #fff6f5; }
.field__err { min-height: 0; font-size: .82rem; font-weight: 600; color: var(--err); }
.field__err:empty { display: none; }
.field__hint { font-size: .8rem; color: var(--muted); }
.select { position: relative; }
.select select { padding-right: 42px; cursor: pointer; }
.select .ico { position: absolute; right: 14px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); pointer-events: none; color: var(--muted); }
.field input[type="date"] { min-height: 50px; }
.check { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; cursor: pointer; }
.check input { width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--orange); flex: none; }
.check a { color: var(--orange-ink); font-weight: 700; }

.seg { grid-column: 1 / -1; margin: 0; padding: 0; border: 0; min-width: 0; }
.seg legend { margin-bottom: 8px; padding: 0; }
.seg__opts { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .seg__opts { grid-template-columns: repeat(3, 1fr); } }
.seg__opt { position: relative; cursor: pointer; }
.seg__opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.seg__box { display: flex; flex-direction: column; gap: 2px; height: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius); background: #f7f8f9; transition: border-color .2s, background-color .2s, box-shadow .2s; }
.seg__box strong { font-size: 1rem; }
.seg__box small { font-size: .82rem; color: var(--muted); line-height: 1.35; }
.seg__opt input:checked + .seg__box { border-color: var(--orange); background: #fff4ea; box-shadow: inset 0 0 0 1px var(--orange); }
.seg__opt input:focus-visible + .seg__box { outline: 3px solid var(--orange); outline-offset: 2px; }

.form__unit { grid-column: 1 / -1; display: flex; align-items: center; gap: 8px; margin: 0 0 16px; padding: 10px 12px; background: var(--paper); border-radius: var(--radius); font-size: .9rem; }
.form__unit .ico { width: 16px; height: 16px; color: var(--orange-ink); }
.form__note { margin: 14px 0 0; font-size: .8rem; color: var(--muted); line-height: 1.45; }
.form__note a { color: inherit; }
.form__ok { margin-top: 16px; padding: 16px; border-radius: var(--radius); background: #eaf8ef; color: #135c31; font-weight: 600; font-size: .95rem; }
.form__ok a { color: inherit; font-weight: 800; }

/* ---------- unidades ---------- */
.units { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr)); }
.unit {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--surface-line); border-radius: var(--radius-lg);
}
.section--paper .unit { background: var(--white); }
.unit__media { position: relative; aspect-ratio: 16 / 9; background: #000; }
.unit__media img, .unit__media iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.unit__map-btn {
  position: absolute; right: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border: 0; border-radius: var(--radius); background: rgb(12 13 15 / .8); color: #fff;
  font-size: .85rem; font-weight: 700; cursor: pointer; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.unit__map-btn .ico { width: 16px; height: 16px; color: var(--orange-hi); }
.unit__map-btn:hover { background: var(--ink); }
.unit__body { display: flex; flex-direction: column; gap: 14px; padding: 24px; flex: 1; }
.unit__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.unit__dist { font-size: .82rem; font-weight: 700; color: var(--surface-muted); }
.unit__city { font-size: 1.7rem; letter-spacing: -.025em; font-stretch: 110%; }
.unit__city a { text-decoration: none; }
.unit__city a:hover span { color: var(--orange); }
.unit__city span { display: block; transition: color .2s; }
.unit__addr { display: flex; gap: 8px; margin: 0; color: var(--surface-muted); font-size: .96rem; }
.unit__addr .ico { width: 18px; height: 18px; margin-top: 3px; color: var(--orange); }
.unit__hours { display: grid; gap: 4px; font-size: .92rem; }
.unit__hours li { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 4px; border-bottom: 1px dashed var(--surface-line); }
.unit__hours li span:first-child { color: var(--surface-muted); }
.unit__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 6px; }
.unit__actions .btn { flex: 1 1 auto; }
.section--ink .unit .btn--dark { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.section--ink .unit .btn--dark:hover { --btn-bg: var(--orange); --btn-bd: var(--orange); }
.unit__route { align-self: flex-start; font-size: .92rem; }
.soon {
  grid-column: 1 / -1; display: grid; gap: 20px 40px; align-items: center;
  padding: 24px 28px; border: 1.5px dashed var(--surface-line); border-radius: var(--radius-lg);
}
@media (min-width: 900px) { .soon { grid-template-columns: 1fr auto; } }
.soon__txt { display: grid; gap: 6px; }
.soon__t { font-size: 1.35rem; letter-spacing: -.02em; }
.soon p { margin: 0; color: var(--surface-muted); font-size: .96rem; max-width: 52ch; }
.soon__list { display: flex; flex-wrap: wrap; gap: 10px; }
.soon__list li { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: var(--surface); border: 1px solid var(--surface-line); border-radius: 999px; font-weight: 700; }
.section--paper .soon__list li { background: var(--white); }
.soon__list .ico { width: 18px; height: 18px; color: var(--orange); }
.soon__list small { font-weight: 500; color: var(--surface-muted); }
.soon .tag { justify-self: start; }
/* Uma unidade só: cartão largo, foto acompanha a altura do conteúdo */
.units--solo { grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .units--solo .unit { flex-direction: row; }
  .units--solo .unit__media { flex: 1 1 52%; aspect-ratio: auto; min-height: 380px; }
  .units--solo .unit__media img, .units--solo .unit__media iframe { position: absolute; inset: 0; }
  .units--solo .unit__body { flex: 1 1 48%; padding: 36px 40px; justify-content: center; }
  .units--solo .unit__city { font-size: 2.3rem; }
  .units--solo .unit__actions { margin-top: 8px; }
}
.tag { align-self: flex-start; padding: 5px 10px; background: var(--orange); color: var(--ink); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 4px; }
.units-search { max-width: 420px; margin-bottom: 24px; }
.units-search label { display: block; margin-bottom: 6px; font-weight: 700; font-size: .9rem; }
.units-search input { width: 100%; min-height: 50px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius); }
.units-geo-msg:empty { display: none; }

.status { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 700; }
.status__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted-d); flex: none; }
.status.is-open .status__dot { background: var(--ok); box-shadow: 0 0 0 0 rgb(47 191 113 / .6); animation: pulse 2.2s infinite; }
.status.is-open .status__txt { color: var(--ok); }
.section--paper .status.is-open .status__txt, .side .status.is-open .status__txt { color: #1d7a47; }
.status.is-closed .status__dot { background: #e0564a; }
.status--sm { font-size: .8rem; font-weight: 600; }
.topbar .status__txt { color: var(--muted-d) !important; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgb(47 191 113 / 0); } 100% { box-shadow: 0 0 0 0 rgb(47 191 113 / 0); } }
@media (prefers-reduced-motion: reduce) { .status.is-open .status__dot { animation: none; } }

/* ---------- avaliações (carrossel contínuo) ---------- */
.reviews { overflow: hidden; }
.reviews__row + .reviews__row { margin-top: 56px; }
.reviews__score { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-bottom: 36px; }
.reviews__nota { margin: 0; font-size: clamp(3.6rem, 3rem + 2vw, 5rem); line-height: .85; font-weight: 850; font-stretch: 112%; letter-spacing: -.04em; }
.reviews__src { margin: 6px 0 0; color: var(--muted); font-size: .92rem; }
.reviews__score .btn { margin-left: auto; }
@media (max-width: 640px) { .reviews__score .btn { margin-left: 0; } }
.stars { display: inline-flex; gap: 2px; color: var(--orange); }
.stars .ico { width: 20px; height: 20px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; width: max-content; padding-block: 8px 24px; animation: marquee calc(var(--n) * 6s) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-100% / var(--c))); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; padding-inline: var(--gutter); }
}
.review {
  flex: none; width: min(400px, 82vw); margin: 0 16px 0 0;
  display: flex; flex-direction: column; gap: 18px; padding: 28px;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.review:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgb(0 0 0 / .06), 0 24px 48px -16px rgb(0 0 0 / .25); }
.review__top { display: flex; align-items: center; justify-content: space-between; }
.review__g { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.review blockquote { margin: 0; flex: 1; }
.review blockquote p { margin: 0; font-size: 1.15rem; line-height: 1.45; font-weight: 500; }
.review figcaption { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
.review figcaption > span:last-child { display: grid; }
.review small { color: var(--muted); font-size: .84rem; }
.review__av { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--orange-hi); font-weight: 800; font-size: 1.1rem; flex: none; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(96px, 12vw, 176px); color: #fff; text-align: center; background: var(--ink); }
.cta-final__media { position: absolute; inset: 0; z-index: -1; }
.cta-final__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-final__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgb(12 13 15 / .72) 0%, rgb(12 13 15 / .92) 70%); }
.cta-final .display { max-width: 14em; margin: 0 auto 40px; }
.cta-final .actions { justify-content: center; }

/* ---------- hero das páginas internas ---------- */
.phero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: #fff; padding-block: clamp(56px, 8vw, 112px) clamp(64px, 8vw, 112px); }
.phero__media { position: absolute; inset: 0; z-index: -1; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; }
.phero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(12 13 15 / .95) 0%, rgb(12 13 15 / .8) 45%, rgb(12 13 15 / .45) 100%); }
@media (max-width: 860px) { .phero__media::after { background: linear-gradient(0deg, rgb(12 13 15 / .96) 20%, rgb(12 13 15 / .7) 100%); } }
.phero .display { max-width: 13em; }
.phero__lead { max-width: 40em; margin: 24px 0 32px; font-size: var(--fs-lead); color: rgb(255 255 255 / .8); }
.phero--compact { padding-block: clamp(48px, 6vw, 88px) clamp(40px, 5vw, 64px); }
.phero--compact .phero__lead { margin-bottom: 0; }
.phero--404 { min-height: 60vh; display: flex; align-items: center; }
.phero__status { margin-bottom: 18px; }
.phero__split { display: grid; gap: 40px 64px; align-items: center; }
@media (min-width: 1024px) { .phero__split { grid-template-columns: 1.1fr .9fr; } }
.phero--form .card { color: var(--text); }

.crumbs { margin-bottom: 28px; font-size: .86rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; color: rgb(255 255 255 / .6); }
.crumbs li + li::before { content: "/"; color: rgb(255 255 255 / .3); }
.crumbs a { text-decoration: none; color: rgb(255 255 255 / .75); }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current] { color: #fff; }

.uinfo { display: grid; gap: 1px; margin-top: 56px; background: rgb(255 255 255 / .12); border: 1px solid rgb(255 255 255 / .12); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 900px) { .uinfo { grid-template-columns: repeat(3, 1fr); } }
.uinfo > li { display: flex; gap: 14px; padding: 22px; background: rgb(12 13 15 / .78); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.uinfo > li > .ico { width: 22px; height: 22px; color: var(--orange-hi); margin-top: 2px; }
.uinfo > li > div { display: flex; flex-direction: column; gap: 4px; flex: 1; font-size: .96rem; }
.uinfo__k { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-d); }
.uinfo a:not(.link) { text-decoration: none; }
.uinfo a:not(.link):hover { color: var(--orange-hi); }
.uinfo .link { align-self: flex-start; margin-top: 6px; font-size: .9rem; }
.uinfo .unit__hours li { border-color: rgb(255 255 255 / .12); }
.uinfo .unit__hours li span:first-child { color: var(--muted-d); }

/* hero de serviço */
.shero { background: var(--ink); color: #fff; padding-block: clamp(48px, 7vw, 96px); overflow: hidden; }
.shero__grid { display: grid; gap: 48px 72px; align-items: center; }
@media (min-width: 1024px) { .shero__grid { grid-template-columns: 1.1fr .9fr; } }
.shero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 4.4; }
@media (max-width: 1023px) { .shero__media { aspect-ratio: 16 / 11; } }
.shero__media img { width: 100%; height: 100%; object-fit: cover; }
.shero__ico { position: absolute; left: 20px; bottom: 20px; display: grid; place-items: center; width: 64px; height: 64px; background: var(--orange); color: var(--ink); border-radius: var(--radius); }
.shero__ico .ico { width: 32px; height: 32px; }

/* ---------- blocos de conteúdo ---------- */
.two-col { display: grid; gap: 48px 72px; }
@media (min-width: 960px) { .two-col { grid-template-columns: 1fr 1fr; } .two-col--wide { grid-template-columns: 1.15fr .85fr; align-items: center; } }
.checklist, .signs { display: grid; gap: 2px; margin-top: 24px; }
.checklist li, .signs li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--surface-line); }
.checklist .ico { width: 22px; height: 22px; padding: 3px; background: var(--orange); color: var(--ink); border-radius: 4px; margin-top: 1px; }
.signs .ico { width: 20px; height: 20px; color: var(--orange-ink); margin-top: 3px; }
.panel { padding: clamp(24px, 3vw, 40px); background: var(--paper); border-radius: var(--radius-lg); align-self: start; }
.panel__foot { margin: 24px 0 0; font-weight: 600; }
.flow { display: grid; gap: 1px; margin-top: 40px; background: rgb(255 255 255 / .1); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 720px) { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .flow { grid-template-columns: repeat(4, 1fr); } }
.flow li { padding: 28px; background: var(--ink-2); }
.flow span { display: block; margin-bottom: 36px; font-size: 2.6rem; font-weight: 850; font-stretch: 115%; color: var(--orange-hi); line-height: 1; letter-spacing: -.03em; }
.flow strong { display: block; font-size: 1.2rem; font-stretch: 108%; margin-bottom: 6px; }
.flow p { margin: 0; color: var(--muted-d); font-size: .96rem; }
.flow--light { background: var(--line); }
.flow--light li { background: var(--white); }
.flow--light span { color: var(--orange-ink); }
.flow--light p { color: var(--muted); }

.tiles { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }
@media (min-width: 900px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tile { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; font-weight: 700; transition: border-color .2s, background-color .2s, transform .2s var(--ease); }
.tile > .ico:first-child { width: 26px; height: 26px; color: var(--orange-ink); }
.tile__arr { margin-left: auto; width: 18px; height: 18px; color: var(--muted); transition: transform .25s var(--ease), color .2s; }
.tile:hover { border-color: var(--ink); background: var(--paper); }
.tile:hover .tile__arr { transform: translateX(3px); color: var(--ink); }

.band { background: var(--orange); color: var(--ink); padding-block: clamp(32px, 4vw, 48px); }
.band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.band__txt { display: grid; grid-template-columns: auto 1fr; gap: 4px 20px; max-width: 760px; }
.band__ico { grid-row: span 2; width: 48px; height: 48px; }
.band__t { margin: 0; font-size: clamp(1.3rem, 1rem + 1vw, 1.9rem); font-weight: 800; font-stretch: 110%; letter-spacing: -.02em; line-height: 1.1; }
.band__txt p:last-child { margin: 0; }

.promo-wrap { display: grid; gap: 32px 72px; align-items: center; }
@media (min-width: 960px) { .promo-wrap { grid-template-columns: .8fr 1.2fr; } }
.promo-wrap .lead { margin-top: 18px; }
.promos { display: grid; gap: 16px; }
.promo { position: relative; display: grid; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--radius-lg); }
@media (min-width: 600px) { .promo { grid-template-columns: 1.25fr 1fr; } }
.promo__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; padding: 32px; }
.promo__media { position: relative; min-height: 220px; }
.promo__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo__media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--ink) 0%, rgb(12 13 15 / 0) 45%); }
@media (max-width: 599px) { .promo__media { order: -1; } .promo__media::before { background: linear-gradient(0deg, var(--ink) 0%, rgb(12 13 15 / 0) 60%); } }
.promo__tag { display: inline-flex; align-items: center; gap: 6px; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-hi); }
.promo__tag .ico { width: 15px; height: 15px; }
.promo h3 { font-size: 1.9rem; }
.promo__v { margin: 4px 0 0; font-size: clamp(2.6rem, 2rem + 2vw, 3.6rem); font-weight: 850; font-stretch: 112%; letter-spacing: -.03em; line-height: 1; color: var(--orange-hi); }
.promo__v small { display: block; margin-top: 6px; font-size: 1rem; font-weight: 600; letter-spacing: 0; color: var(--muted-d); }
.promo__c { margin: 0 0 10px; color: var(--muted-d); font-size: .92rem; }
.promo .btn { align-self: flex-start; }

.gal { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .gal { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; } .gal li:first-child { grid-column: span 2; grid-row: span 2; } }
.gal__item { display: block; height: 100%; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
@media (min-width: 900px) { .gal__item { aspect-ratio: auto; } }
.gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal__item:hover img { transform: scale(1.05); }

.map { display: flex; flex-direction: column; gap: 12px; }
.map iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; border-radius: var(--radius-lg); background: var(--ink-3); filter: grayscale(.2) contrast(1.05); }
.map__ref { display: flex; gap: 8px; margin: 0; font-size: .9rem; color: var(--muted-d); }
.map__ref .ico { width: 18px; height: 18px; color: var(--orange-hi); margin-top: 2px; }

.faq { display: grid; gap: 32px 72px; }
@media (min-width: 960px) { .faq { grid-template-columns: .8fr 1.2fr; } }
.faq__list { border-top: 2px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; list-style: none; font-size: 1.12rem; font-weight: 700; font-stretch: 104%; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__ico { width: 22px; height: 22px; transition: transform .3s var(--ease); color: var(--orange-ink); }
.faq__item[open] .faq__ico { transform: rotate(45deg); }
.faq__a p { margin: 0 0 22px; max-width: 64ch; color: var(--muted); }

.about { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 800px) { .about { grid-template-columns: 1fr 1fr; } }
.about li { padding: clamp(28px, 4vw, 48px); background: var(--white); }
.about__n { display: block; margin-bottom: 24px; font-size: .85rem; font-weight: 800; color: var(--orange-ink); letter-spacing: .12em; }
.about h2 { margin-bottom: 12px; }
.about p { margin: 0; color: var(--muted); }

.prose { max-width: 760px; }
.prose h2 { margin: 40px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); }

.form-layout { display: grid; gap: 40px 72px; align-items: start; }
@media (min-width: 1024px) { .form-layout { grid-template-columns: .85fr 1.15fr; } }
.form-layout__intro .lead { margin-top: 18px; }
.mini-list { display: grid; gap: 12px; margin-top: 28px; }
.mini-list li { display: flex; gap: 10px; align-items: center; font-weight: 600; }
.mini-list .ico { width: 20px; height: 20px; color: var(--orange-hi); }
.form-page { display: grid; gap: 24px; align-items: start; }
@media (min-width: 1024px) { .form-page { grid-template-columns: 1fr 340px; } }
.side { display: grid; gap: 16px; }
.side__card { padding: 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.side__h { margin: 0 0 8px; font-size: 1.15rem; font-weight: 800; font-stretch: 108%; }
.side__card .status { margin-bottom: 10px; }
.side__card .muted { font-size: .92rem; }
.side .unit__hours { margin-top: 10px; }

.leva-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.leva-photo img { width: 100%; height: 100%; object-fit: cover; }
.steps--light { --surface-line: var(--line); --surface-muted: var(--muted); }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.duo img { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius-lg); }

/* ---------- rodapé ---------- */
.site-footer { background: #050506; color: var(--muted-d); padding-block: 72px 32px; font-size: .95rem; }
.foot__top { display: grid; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgb(255 255 255 / .08); }
@media (min-width: 720px) { .foot__top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .foot__top { grid-template-columns: 1.3fr .9fr .9fr 1.2fr; } }
.foot__brand img { width: 150px; margin-bottom: 18px; }
.foot__brand p { max-width: 26ch; color: #fff; font-weight: 700; font-size: 1.15rem; font-stretch: 108%; line-height: 1.25; }
.foot__ig { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; }
.foot__ig:hover { color: #fff; }
.foot__h { margin-bottom: 16px; color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.foot__col ul { display: grid; gap: 10px; }
.foot__col a { text-decoration: none; transition: color .2s; }
.foot__col a:hover { color: #fff; }
.foot__unit p { margin-bottom: 8px; }
.foot__city a { color: #fff; font-weight: 700; }
.foot__unit .muted { color: #80858c; font-size: .88rem; }
.foot__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: .85rem; color: #80858c; }
.foot__bottom p { margin: 0; }
@media (min-width: 861px) { .foot__bottom { padding-right: 84px; } }
.foot__bottom a { text-decoration: none; }

/* ---------- WhatsApp flutuante e barra mobile ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 40;
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff; box-shadow: 0 12px 28px -8px rgb(0 0 0 / .45);
  transition: transform .25s var(--ease), background-color .2s;
}
.wa-float .ico { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.06); background: #1fbd5a; }
.mbar { display: none; }
@media (max-width: 860px) {
  .wa-float { display: none; }
  /* Barra flutuante de vidro fosco, no mesmo estilo do menu */
  .mbar {
    position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 45;
    display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 6px; padding: 6px;
    background: linear-gradient(180deg, rgb(20 22 25 / .62), rgb(12 13 15 / .72));
    -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
    border: 1px solid rgb(255 255 255 / .12); border-radius: 18px;
    box-shadow: 0 18px 40px -12px rgb(0 0 0 / .55), inset 0 1px 0 rgb(255 255 255 / .08);
  }
  .mbar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    min-height: 56px; border-radius: 13px; text-decoration: none;
    color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .01em;
    background: rgb(255 255 255 / .07); border: 1px solid rgb(255 255 255 / .06);
    transition: background-color .2s, transform .15s var(--ease);
  }
  .mbar a:active { transform: scale(.96); }
  .mbar .ico { width: 22px; height: 22px; }
  .mbar a:first-child .ico { color: var(--wa); }
  .mbar__hl {
    flex-direction: row !important; gap: 8px !important; font-size: .9rem !important;
    background: linear-gradient(180deg, var(--orange-hi), var(--orange)) !important; color: var(--ink) !important;
    border-color: rgb(255 255 255 / .25) !important;
    box-shadow: 0 8px 20px -6px rgb(245 111 4 / .65), inset 0 1px 0 rgb(255 255 255 / .35);
  }
  body { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  .nav-open .mbar { display: none; }
}

/* ---------- galeria (lightbox) ---------- */
.lightbox { width: min(96vw, 1400px); max-height: 92vh; padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgb(0 0 0 / .88); }
.lightbox img { width: 100%; max-height: 86vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__cap { margin: 10px 0 0; color: #fff; font-size: .9rem; text-align: center; }
.lightbox__close { position: absolute; top: -52px; right: 0; display: grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; }

/* ---------- animações de entrada (só onde o navegador suporta; conteúdo nunca depende disso) ---------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .svc, .dif, .unit, .flow li, .about li, .mosaic figure, .promo, .gal li, .tile {
      animation: sobe linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 35%;
    }
    @keyframes sobe { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
  }
}

@media print {
  .topbar, .site-header, .wa-float, .mbar, .cta-final, .lead-form { display: none !important; }
  body { padding: 0; }
}

/* ---------- ajustes da rodada 4 ---------- */
.foot-split { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 48px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.foot-split p { margin: 0; color: var(--muted); max-width: 58ch; }
.foot-split .foot-split__t { color: var(--text); font-size: 1.3rem; font-weight: 800; font-stretch: 108%; letter-spacing: -.02em; margin-bottom: 4px; }

@media (min-width: 1024px) { .grid-svc--3 { grid-template-columns: repeat(3, 1fr); } .grid-svc--3 .svc { aspect-ratio: 16 / 13; } }

/* Hero dos serviços com foto de fundo */
.shero { position: relative; isolation: isolate; }
.shero__bg { position: absolute; inset: 0; z-index: -1; }
.shero__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(2px) saturate(.8); transform: scale(1.04); }
.shero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(12 13 15 / .95) 0%, rgb(12 13 15 / .85) 50%, rgb(12 13 15 / .7) 100%); }

/* A Box 73: cartões com ícone e hover */
.about li { position: relative; transition: background-color .35s var(--ease), color .35s; }
.about li::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.about__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.about__top .about__n { margin: 0; font-size: 2.4rem; font-stretch: 115%; letter-spacing: -.03em; color: var(--line); transition: color .35s; }
.about__ico { display: grid; place-items: center; width: 56px; height: 56px; border: 2px solid var(--orange); border-radius: var(--radius); color: var(--orange-ink); transition: background-color .35s, color .35s, transform .45s var(--ease); }
.about__ico .ico { width: 28px; height: 28px; }
.about li:hover { background: var(--ink); color: #fff; }
.about li:hover::before { transform: scaleX(1); }
.about li:hover p { color: var(--muted-d); }
.about li:hover .about__ico { background: var(--orange); color: var(--ink); transform: rotate(-6deg); }
.about li:hover .about__n { color: var(--orange-hi); }

/* Leva e Traz: coluna do formulário */
.form-layout__foto { position: relative; margin: 36px 0 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 10; }
.form-layout__foto img { width: 100%; height: 100%; object-fit: cover; }
.form-layout__foto figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; gap: 8px; align-items: center; padding: 10px 12px; border-radius: var(--radius); background: rgb(12 13 15 / .8); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); font-size: .86rem; color: #fff; }
.form-layout__foto figcaption .ico { width: 18px; height: 18px; color: var(--orange-hi); }
.form-layout__alt { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 20px; margin-top: 20px; padding: 18px 20px; border: 1px solid rgb(255 255 255 / .12); border-radius: var(--radius-lg); }
.form-layout__alt p { margin: 0; color: var(--muted-d); font-size: .95rem; }
.form-layout__alt strong { color: #fff; }

/* Peças: loja */
.loja { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: #fff; --surface-muted: var(--muted-d); }
.loja__bg { position: absolute; inset: 0; z-index: -1; }
.loja__bg img { width: 100%; height: 100%; object-fit: cover; }
.loja__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(12 13 15 / .96) 0%, rgb(12 13 15 / .86) 45%, rgb(12 13 15 / .6) 100%); }
.loja__grid { display: grid; gap: 40px 64px; align-items: center; }
@media (min-width: 1024px) { .loja__grid { grid-template-columns: .9fr 1.1fr; } }
.loja .lead { margin: 20px 0 28px; }
.loja__cats { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); }
.loja__cats li { display: grid; gap: 4px; padding: 20px; border: 1px solid rgb(255 255 255 / .12); border-radius: var(--radius-lg); background: rgb(12 13 15 / .55); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: border-color .3s, transform .3s var(--ease), background-color .3s; }
.loja__cats li:hover { border-color: var(--orange); transform: translateY(-3px); background: rgb(12 13 15 / .75); }
.loja__cats .ico { width: 26px; height: 26px; color: var(--orange-hi); margin-bottom: 8px; }
.loja__cats strong { font-size: 1.08rem; font-stretch: 106%; }
.loja__cats span { color: var(--muted-d); font-size: .9rem; }

/* Rodapé: bloco de atendimento na coluna da marca */
.foot__cta { margin-top: 28px; padding: 20px; border: 1px solid rgb(255 255 255 / .1); border-radius: var(--radius-lg); background: rgb(255 255 255 / .03); max-width: 340px; }
.foot__cta-t { margin: 0 0 6px !important; color: #fff !important; font-size: 1rem !important; }
.foot__cta .status { margin-bottom: 14px; }
.foot__cta-btns { display: flex; gap: 8px; }
.foot__cta-btns .btn { flex: 1; min-height: 44px; padding: .6em .9em; font-size: .9rem; }
