/* ==========================================================================
   ROTA PRIME LOGÍSTICA — Landing Page
   Paleta: azul marinho, prata, branco, azul elétrico (acento)
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Marca */
  --navy-900: #050D1F;
  --navy-800: #08152C;
  --navy-700: #0D213D;   /* casa exatamente com o fundo de imagem-home.webp */
  --navy-600: #12294F;
  --navy-500: #1B3766;

  --blue-500: #1B6EF3;
  --blue-400: #3D89FF;
  --blue-300: #6FA8FF;
  --blue-050: #EAF2FF;

  --silver-100: #F4F6F9;
  --silver-200: #E4E9F0;
  --silver-300: #CBD4E0;
  --silver-400: #A7B3C4;
  --silver-500: #7C8AA0;

  /* Superfícies */
  --surface-white: #FFFFFF;
  --surface-gray: #F3F5F8;
  --surface-dark: var(--navy-800);

  /* Texto */
  --ink-900: #0A1526;
  --ink-700: #24344B;
  --ink-500: #566579;
  --ink-300: #8A97A8;
  --ink-on-dark: #FFFFFF;
  --ink-on-dark-soft: #B9C6D9;

  --line: #E2E7EE;
  --line-dark: rgba(255, 255, 255, .12);

  /* Tipografia
     Archivo variável. O display usa o eixo de largura estendido (wdth 112),
     que reproduz o wordmark alargado da logo. O texto corre em largura normal. */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* Espaço e forma */
  --wrap: 1400px;
  --gutter: 32px;
  --inset: 16px;   /* respiro do card do hero em relação à borda da tela */
  --r-sm: 0;
  --r-md: 0;
  --r-lg: 0;
  --r-xl: 0;

  --shadow-sm: 0 2px 8px rgba(10, 21, 38, .06);
  --shadow-md: 0 12px 32px rgba(10, 21, 38, .10);
  --shadow-lg: 0 28px 70px rgba(5, 13, 31, .22);

  --ease: cubic-bezier(.22, .68, .36, 1);

  /* Gradiente prata da marca */
  --grad-silver: linear-gradient(160deg, #FFFFFF 0%, #D6DDE7 26%, #96A3B6 52%, #EDF1F6 74%, #9FADC0 100%);
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--surface-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 112;
  color: var(--ink-900);
  line-height: 1.06;
  letter-spacing: -.022em;
  margin: 0;
  font-weight: 700;
}

/* Largura normal onde o texto é corrido ou pequeno demais para esticar */
.lead,
.h-3,
.faq-item__q,
.step p,
.svc-card > p,
.diff-card p { font-variation-settings: "wdth" 100; }

p { margin: 0; }

::selection { background: var(--blue-500); color: #fff; }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 0;
}

/* ---------- 3. Utilitários de layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 76px 0; }

/* Compensa o header fixo ao navegar pelas âncoras */
[id] { scroll-margin-top: 96px; }
#topo { scroll-margin-top: 0; }

.section--white { background: var(--surface-white); }
.section--gray { background: var(--surface-gray); }
.section--dark {
  background: var(--surface-dark);
  color: var(--ink-on-dark-soft);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--ink-on-dark); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--navy-700);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0;
}
.skip-link:focus { left: 0; }

/* ---------- 4. Componentes de texto ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue-500);
}
.section--dark .eyebrow { color: var(--blue-300); }
.section--dark .eyebrow::before { background: var(--blue-300); }

.h-display { font-size: clamp(2.6rem, 6vw, 4.3rem); }
.h-1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
.h-2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
.h-3 { font-size: 1.28rem; letter-spacing: -.01em; }

.lead {
  font-size: 1.13rem;
  color: var(--ink-500);
  max-width: 60ch;
}
.section--dark .lead { color: var(--ink-on-dark-soft); }

.section-head { max-width: 720px; margin-bottom: 58px; }
.section-head--wide { max-width: 1000px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head .lead { margin-top: 20px; }

/* Texto metálico da marca */
.metal {
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent { color: var(--blue-500); }
.section--dark .accent { color: var(--blue-300); }

/* ---------- 5. Botões ----------
   Base retangular com o canto inferior direito chanfrado, retomando o corte
   diagonal prateado da identidade. Camadas: preenchimento, brilho que
   atravessa no hover, filete superior e seta que desliza. */
.btn[hidden] { display: none; }

.btn {
  --chanfro: 12px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--chanfro)),
    calc(100% - var(--chanfro)) 100%,
    0 100%
  );
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              box-shadow .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
  transition: transform .28s var(--ease);
}
.btn:hover svg { transform: translateX(5px); }

/* brilho diagonal que atravessa o botão */
.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(112deg,
    transparent 26%,
    rgba(255, 255, 255, .3) 45%,
    rgba(255, 255, 255, .06) 56%,
    transparent 70%);
  transform: translateX(-130%);
  transition: transform .75s var(--ease);
}
.btn:hover::before { transform: translateX(130%); }

/* filete de luz no topo */
.btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, .32);
  pointer-events: none;
}

/* --- variantes sólidas --- */
.btn--primary {
  background: linear-gradient(180deg, var(--blue-400) 0%, var(--blue-500) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(27, 110, 243, .3), inset 0 -2px 0 rgba(6, 42, 110, .35);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #5199FF 0%, var(--blue-400) 100%);
  box-shadow: 0 16px 34px rgba(27, 110, 243, .4), inset 0 -2px 0 rgba(6, 42, 110, .3);
}

.btn--navy {
  background: linear-gradient(180deg, var(--navy-600), var(--navy-700));
  color: #fff;
  box-shadow: 0 10px 26px rgba(5, 13, 31, .3), inset 0 -2px 0 rgba(0, 0, 0, .3);
}
.btn--navy:hover { background: linear-gradient(180deg, var(--navy-500), var(--navy-600)); }

.btn--wa {
  background: linear-gradient(180deg, #26C062 0%, #1FAF54 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(31, 175, 84, .28), inset 0 -2px 0 rgba(9, 92, 44, .38);
}
.btn--wa:hover {
  background: linear-gradient(180deg, #2ED26F 0%, #23BC5C 100%);
  box-shadow: 0 16px 34px rgba(31, 175, 84, .36), inset 0 -2px 0 rgba(9, 92, 44, .32);
}

/* --- variantes de contorno ---
   O contorno não pode ser box-shadow: o clip-path corta o canto chanfrado e
   deixa a borda aberta. Aqui o fundo do botão é a própria cor da borda, e um
   pseudo-elemento recuado, com o mesmo chanfro, abre o miolo. Assim o
   contorno acompanha a diagonal e fecha o canto. */
.btn--ghost,
.btn--ghost-light,
.btn--outline-blue {
  --espessura: 1.6px;
  background: var(--btn-linha);
  color: var(--btn-texto);
  box-shadow: none;
}

/* miolo vazado */
.btn--ghost::after,
.btn--ghost-light::after,
.btn--outline-blue::after {
  content: "";
  position: absolute;
  inset: var(--espessura);
  left: var(--espessura);
  right: var(--espessura);
  top: var(--espessura);
  bottom: var(--espessura);
  height: auto;
  z-index: -2;
  background: var(--btn-miolo);
  clip-path: polygon(
    0 0, 100% 0,
    100% calc(100% - var(--chanfro)),
    calc(100% - var(--chanfro)) 100%,
    0 100%
  );
}

/* preenchimento que sobe no hover */
.btn--ghost::before,
.btn--ghost-light::before,
.btn--outline-blue::before {
  inset: var(--espessura);
  z-index: -1;
  background: var(--btn-linha);
  clip-path: polygon(
    0 0, 100% 0,
    100% calc(100% - var(--chanfro)),
    calc(100% - var(--chanfro)) 100%,
    0 100%
  );
  transform: translateY(101%);
  transition: transform .34s var(--ease);
}
.btn--ghost:hover::before,
.btn--ghost-light:hover::before,
.btn--outline-blue:hover::before { transform: translateY(0); }

.btn--ghost {
  --btn-linha: var(--silver-300);
  --btn-miolo: #fff;
  --btn-texto: var(--ink-900);
}
.btn--ghost:hover { --btn-linha: var(--navy-700); color: #fff; }

.btn--ghost-light {
  --btn-linha: rgba(255, 255, 255, .5);
  --btn-miolo: rgba(255, 255, 255, .06);
  --btn-texto: #fff;
}
.btn--ghost-light:hover { --btn-linha: #fff; color: var(--navy-800); }

.btn--outline-blue {
  --btn-linha: var(--blue-500);
  --btn-miolo: #fff;
  --btn-texto: var(--blue-500);
}
.btn--outline-blue:hover { color: #fff; }

/* sobre o azul escuro do header */
.btn--onblue {
  --espessura: 1px;
  background: rgba(255, 255, 255, .38);
  color: #fff;
  padding: 13px 24px;
  box-shadow: none;
}
.btn--onblue::after {
  content: "";
  position: absolute;
  inset: var(--espessura);
  left: var(--espessura);
  right: var(--espessura);
  top: var(--espessura);
  bottom: var(--espessura);
  height: auto;
  z-index: -2;
  background: rgba(255, 255, 255, .13);
  clip-path: polygon(
    0 0, 100% 0,
    100% calc(100% - var(--chanfro)),
    calc(100% - var(--chanfro)) 100%,
    0 100%
  );
  transition: background .22s var(--ease);
}
.btn--onblue::before { display: none; }
.btn--onblue:hover { background: #fff; color: var(--navy-700); }
.btn--onblue:hover::after { background: #fff; }

.btn--lg { padding: 19px 34px; font-size: .98rem; --chanfro: 14px; }
.btn--block { width: 100%; }

/* Link com seta */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .02em;
  color: var(--blue-500);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .22s var(--ease);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .22s var(--ease); }
.link-arrow:hover { border-bottom-color: var(--blue-500); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- 6a. Imagens de conteúdo ----------
   Cada bloco aponta para um arquivo em assets/img/.
   Enquanto o arquivo não existir, o gradiente de fallback aparece no lugar. */
.img {
  position: relative;
  background-color: var(--navy-700);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0;
  overflow: hidden;
}
.img--sobre-van    { background-image: url("../img/sobre-van.webp"); }
.img--sobre-coleta { background-image: url("../img/sobre-coleta.webp"); border-radius: 0; }
.img--sobre-carga  { background-image: url("../img/sobre-carga.webp"); border-radius: 0; }
.img--operacao     { background-image: url("../img/operacao-equipe.webp"); }

/* ---------- 6b. Proporções ---------- */
.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-4x3  { aspect-ratio: 4 / 3; }
.ratio-3x4  { aspect-ratio: 3 / 4; }
.ratio-1x1  { aspect-ratio: 1 / 1; }
.ratio-21x9 { aspect-ratio: 21 / 9; }

/* ---------- 7. Logo ---------- */
.logo { display: inline-flex; align-items: center; }
.logo img {
  height: 32px;
  width: auto;
  transition: height .3s var(--ease);
}
.footer .logo img { height: 38px; }

/* ---------- 8. Header (duas barras sobre o azul do hero) ---------- */
.header {
  position: relative;
  z-index: 100;
  background: var(--navy-700);
  color: #fff;
}

/* barra 1: no topo da página rola normal; some do fluxo (mas fica reservada
   via .header-spacer) quando a barra fixa compacta assume, ao rolar para baixo. */
.header__top { border-bottom: 1px solid rgba(255, 255, 255, .16); }

.header.is-stuck { padding-top: 78px; }
.header.is-stuck .header__top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--navy-700);
  box-shadow: 0 8px 24px rgba(3, 12, 36, .3);
}
.header__top-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 78px;
}
.header__top-inner .logo { justify-self: center; }
.header__lead {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: .93rem;
  color: rgba(255, 255, 255, .92);
  transition: color .2s var(--ease);
}
.header__phone:hover { color: #fff; }
.header__phone svg { width: 17px; height: 17px; }

/* botão Menu com ícone de três traços, só no mobile */
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  padding: 11px 4px;
  background: none;
  box-shadow: none;
  transition: opacity .2s var(--ease);
}
.burger:hover { opacity: .75; }
.burger__icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: background .2s var(--ease);
}
.burger__icon::before,
.burger__icon::after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  background: #fff;
  transition: transform .25s var(--ease), top .2s var(--ease), width .25s var(--ease);
}
.burger__icon::before { top: -6px; width: 18px; }
.burger__icon::after  { top: 6px;  width: 11px; }
.burger:hover .burger__icon::after { width: 18px; }
.burger.is-open .burger__icon { background: transparent; }
.burger.is-open .burger__icon::before { top: 0; width: 18px; transform: rotate(45deg); }
.burger.is-open .burger__icon::after  { top: 0; width: 18px; transform: rotate(-45deg); }

/* barra 2 */
.header__bottom {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  overflow: hidden;
  height: 92px;
}
.header.is-stuck .header__bottom {
  height: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

.header__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 92px;
}

/* cotação rápida */
.quick-quote {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 6px 6px 6px 8px;
  min-width: 390px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.quick-quote:focus-within { border-color: #fff; background: rgba(255, 255, 255, .18); }
.quick-quote label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
}
.quick-quote input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
  font-size: .95rem;
  padding: 9px 10px;
}
.quick-quote input::placeholder { color: rgba(255, 255, 255, .68); }
.quick-quote button {
  --chanfro: 10px;
  padding: 11px 24px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--chanfro)), calc(100% - var(--chanfro)) 100%, 0 100%);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.quick-quote button:hover { background: #fff; color: var(--navy-700); }

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}
.nav a {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }

/* menu mobile: abre por cima, sem empurrar o conteúdo */
.mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 99;
  background: var(--navy-700);
  border-top: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 26px 50px rgba(0, 0, 0, .45);
  padding: 12px var(--gutter) 26px;
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav .btn { margin-top: 22px; border-bottom: 0; }

/* ---------- 9. Hero (bloco azul chapado) ---------- */
/* No desktop o banner ocupa a seção inteira e a van já vem nele.
   No mobile o banner sai e entra o bloco de imagem, depois do texto. */
.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: 96px 0 112px;
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    url("../img/banner-hero.webp") center right / cover no-repeat,
    var(--navy-700);
}

/* funde a barra do header com o topo do banner */
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(to bottom, var(--navy-700), rgba(13, 33, 61, 0));
  pointer-events: none;
}
/* reforça a leitura do texto sobre a foto */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 14, 33, .88) 0%, rgba(3, 14, 33, .6) 34%, rgba(3, 14, 33, 0) 62%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero__art { display: none; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 4.7vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.038em;
  max-width: 14ch;
  margin-bottom: 26px;
}
@media (min-width: 1081px) {
  .hero h1 {
    font-size: clamp(2rem, 3vw, 4rem);
    max-width: 18ch;
  }
}
.hero__lead {
  font-size: 1.22rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
  max-width: 44ch;
  margin-bottom: 40px;
}

/* painel branco com os dois botões */
.hero__panel {
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 10px;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(3, 12, 36, .3);
}
.hero__panel .btn {
  --chanfro: 12px;
  padding: 15px 22px;
  font-size: .93rem;
}
.hero__panel .btn svg { width: 16px; height: 16px; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 30px;
}
.hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
}
.hero__facts svg { width: 18px; height: 18px; flex: none; }

/* Foto da frota usada no mobile. O fundo do arquivo é o mesmo navy do hero,
   então a imagem funde com a seção sem borda aparente. */
.hero__art {
  justify-self: center;
  width: 100%;
  max-width: 660px;
}
.hero__art img { width: 100%; height: auto; }

/* ---------- 11. Sobre ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 70px;
  align-items: center;
}
.about__points { display: grid; gap: 22px; margin: 34px 0; }
.about__point { display: flex; gap: 16px; }
.about__point-icon {
  width: 46px;
  height: 46px;
  border-radius: 0;
  background: var(--blue-050);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  flex: none;
}
.about__point-icon svg { width: 21px; height: 21px; }
.about__point h3 { font-size: 1.02rem; margin-bottom: 4px; }
.about__point p { font-size: .95rem; color: var(--ink-500); }

.about__media {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 520px;
}
.about__media > *:first-child { grid-row: span 2; }

.stat-badge {
  position: absolute;
  left: -28px;
  bottom: 42px;
  background: var(--navy-700);
  color: #fff;
  border-radius: 0;
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
}
.stat-badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-badge span { font-size: .82rem; color: var(--silver-400); }

/* ---------- 12. Serviços ---------- */
/* Cabeçalho em duas colunas: tag e título à esquerda, descrição à direita */
.section-head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: none;
  margin-bottom: 52px;
}
.section-head--split .lead { margin-top: 0; padding-bottom: 6px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 0;
  overflow: hidden;
  padding: 32px 30px 30px;
  color: #fff;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Fotos dos serviços: assets/img/servico-1.jpg até servico-6.jpg */
.svc-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--navy-800);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(160deg, var(--navy-600), var(--navy-900));
  transition: transform .6s var(--ease);
}
.svc-card:hover .svc-card__media { transform: scale(1.06); }

.svc-card:nth-child(1) .svc-card__media { background-image: url("../img/servico-1.webp"), linear-gradient(160deg, var(--navy-600), var(--navy-900)); }
.svc-card:nth-child(2) .svc-card__media { background-image: url("../img/servico-2.webp"), linear-gradient(160deg, var(--navy-600), var(--navy-900)); }
.svc-card:nth-child(3) .svc-card__media { background-image: url("../img/servico-3.webp"), linear-gradient(160deg, var(--navy-600), var(--navy-900)); }
.svc-card:nth-child(4) .svc-card__media { background-image: url("../img/servico-4.webp"), linear-gradient(160deg, var(--navy-600), var(--navy-900)); }
.svc-card:nth-child(5) .svc-card__media { background-image: url("../img/servico-5.webp"), linear-gradient(160deg, var(--navy-600), var(--navy-900)); }
.svc-card:nth-child(6) .svc-card__media { background-image: url("../img/servico-6.webp"), linear-gradient(160deg, var(--navy-600), var(--navy-900)); }

/* Sombra de baixo para cima, escurece no hover */
.svc-card__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(6, 16, 36, .96) 0%,
    rgba(6, 16, 36, .86) 32%,
    rgba(6, 16, 36, .42) 64%,
    rgba(6, 16, 36, .12) 100%
  );
  transition: opacity .35s var(--ease), background .35s var(--ease);
}
.svc-card:hover .svc-card__scrim {
  background: linear-gradient(
    to top,
    rgba(5, 13, 31, .97) 0%,
    rgba(5, 13, 31, .94) 40%,
    rgba(5, 13, 31, .86) 74%,
    rgba(5, 13, 31, .74) 100%
  );
}

/* Ícone pequeno no canto superior direito */
.svc-card__icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.svc-card__icon svg { width: 19px; height: 19px; }
.svc-card:hover .svc-card__icon {
  background: var(--blue-500);
  border-color: var(--blue-500);
}

.svc-card h3 {
  color: #fff;
  font-size: 1.32rem;
  margin-bottom: 10px;
}
.svc-card > p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .76);
  line-height: 1.6;
}

/* Bullets só no hover */
.svc-card ul {
  display: grid;
  gap: 9px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .42s var(--ease), opacity .3s var(--ease), margin-top .42s var(--ease);
  margin-top: 0;
}
.svc-card:hover ul,
.svc-card:focus-within ul {
  max-height: 230px;
  opacity: 1;
  margin-top: 20px;
}
.svc-card li {
  display: flex;
  gap: 10px;
  font-size: .89rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.5;
}
.svc-card li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-400);
  margin-top: 9px;
  flex: none;
}

/* ---------- 13. Como funciona ---------- */
.section--how { padding-bottom: 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  --dot: 60px;                                  /* diâmetro do círculo do passo */
  --track: calc(var(--dot) / 2);                /* altura da trilha */
  --edge: calc((100% - 3 * 24px) / 8);          /* centro da primeira coluna */
}

/* Trilha pontilhada, do centro do passo 1 ao centro do passo 4 */
.steps::before {
  content: "";
  position: absolute;
  top: var(--track);
  left: var(--edge);
  right: var(--edge);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.26) 0 9px, transparent 9px 18px);
  z-index: 0;
}

/* Moto percorrendo a trilha */
.steps__rider {
  position: absolute;
  top: var(--track);
  left: var(--edge);
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 3;
  pointer-events: none;
  animation: rideAcross 7s cubic-bezier(.5, 0, .5, 1) infinite;
}
.steps__rider svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 10px rgba(61, 137, 255, .95));
}
/* rastro de luz atrás da moto */
.steps__rider::before {
  content: "";
  position: absolute;
  right: 62%;
  top: 50%;
  width: 70px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(to left, rgba(61, 137, 255, .9), transparent);
}

@keyframes rideAcross {
  0%   { left: var(--edge); opacity: 0; }
  8%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: calc(100% - var(--edge)); opacity: 0; }
}

.step { position: relative; z-index: 1; }
.step__num {
  width: var(--dot);
  height: var(--dot);
  border-radius: 0;
  background: var(--navy-800);
  border: 1.5px solid rgba(111, 168, 255, .45);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
  /* neon */
  box-shadow:
    0 0 0 5px rgba(8, 21, 44, 1),
    0 0 14px rgba(61, 137, 255, .45),
    inset 0 0 12px rgba(61, 137, 255, .3);
  text-shadow: 0 0 12px rgba(111, 168, 255, .8);
  transition: background .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.step:hover .step__num {
  background: var(--blue-500);
  border-color: var(--blue-300);
  box-shadow:
    0 0 0 5px rgba(8, 21, 44, 1),
    0 0 26px rgba(61, 137, 255, .85),
    inset 0 0 16px rgba(255, 255, 255, .28);
}
.step h3 { font-size: 1.06rem; margin-bottom: 10px; }
.step p { font-size: .94rem; color: var(--ink-on-dark-soft); }

/* Imagem ocupando toda a largura da seção, colada na base: assets/img/como-funciona.jpg */
.how__media {
  margin-top: 72px;
  aspect-ratio: 32 / 9;
  background:
    url("../img/como-funciona.webp") center / cover no-repeat,
    linear-gradient(160deg, var(--navy-600), var(--navy-900));
}

/* ---------- 14. Calculadora ---------- */
.calc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.calc-card__head {
  background: var(--navy-700);
  color: #fff;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.calc-card__head h3 { color: #fff; font-size: 1.16rem; }
.calc-card__head p { font-size: .87rem; color: var(--silver-400); margin-top: 4px; }
.calc-card__seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue-300);
  border: 1px solid rgba(111, 168, 255, .35);
  border-radius: 0;
  padding: 7px 14px;
}
.calc-card__seal svg { width: 14px; height: 14px; }

.calc-card__body { padding: 30px 34px 32px; }

.form-block + .form-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.form-block__title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-block__title span {
  width: 22px; height: 22px;
  border-radius: 0;
  background: var(--blue-050);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  font-size: .72rem;
  letter-spacing: 0;
}

.form-grid { display: grid; gap: 14px; }
.form-grid--2 { grid-template-columns: repeat(2, 1fr); }
.form-grid--3 { grid-template-columns: repeat(3, 1fr); }
.form-grid--4 { grid-template-columns: repeat(4, 1fr); }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-700);
}
.field small { font-size: .76rem; color: var(--ink-300); }
.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--line);
  border-radius: 0;
  padding: 13px 15px;
  font-size: .95rem;
  background: #fff;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(27, 110, 243, .12);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }
.field select { appearance: none; background-image: none; cursor: pointer; }
.field--select { position: relative; }
.field--select::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 21px;
  width: 8px; height: 8px;
  border-right: 2px solid var(--ink-300);
  border-bottom: 2px solid var(--ink-300);
  transform: rotate(45deg);
  pointer-events: none;
}
.field.is-invalid input,
.field.is-invalid select { border-color: #E0483B; }
.field__error {
  font-size: .76rem;
  color: #E0483B;
  display: none;
}
.field.is-invalid .field__error { display: block; }

.calc-card__foot {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.calc-card__foot p { font-size: .84rem; color: var(--ink-300); max-width: 42ch; }

.calc-estimate {
  display: none;
  margin-top: 26px;
  border-radius: 0;
  background: var(--surface-gray);
  border: 1px solid var(--line);
  padding: 24px 26px;
}
.calc-estimate.is-visible { display: block; }
.calc-estimate h4 {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 16px;
}
.calc-estimate__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dotted var(--silver-300);
  font-size: .87rem;
  color: var(--ink-500);
}
.calc-estimate__row b { font-size: .95rem; font-weight: 600; color: var(--ink-900); }
.calc-estimate__row--valor { border-bottom: none; }
.calc-estimate__row--valor b { font-size: 1.3rem; color: var(--blue-500); }
.calc-estimate__nota { margin-top: 12px; font-size: .78rem; color: var(--ink-300); }

.calc-erro {
  display: none;
  margin-top: 26px;
  border-radius: 0;
  background: #FDECEA;
  border: 1px solid #F3B7B0;
  color: #9A2C21;
  padding: 16px 20px;
  font-size: .9rem;
}
.calc-erro.is-visible { display: block; }

/* ---------- 15. Área de atendimento ---------- */
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.coverage__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 28px;
}
.coverage__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-700);
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.coverage__list svg { width: 16px; height: 16px; color: var(--blue-500); flex: none; }
.coverage__map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--silver-200);
}
.coverage__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- 16. Diferenciais ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.diff-card {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line-dark);
  border-radius: 0;
  padding: 32px 26px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.diff-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(111, 168, 255, .4);
  transform: translateY(-5px);
}
.diff-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 0;
  border: 1.5px solid rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
}
.diff-card__icon svg { width: 26px; height: 26px; }
.diff-card h3 { font-size: 1.04rem; margin-bottom: 9px; }
.diff-card p { font-size: .92rem; color: var(--ink-on-dark-soft); }

.diff__quote {
  margin-top: 62px;
  padding-top: 40px;
  border-top: 1px solid var(--line-dark);
  text-align: center;
}
.diff__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: -.02em;
}

/* ---------- 17. Números ---------- */
.stats__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.stats__nums {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 30px;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.stat span { font-size: .92rem; color: var(--ink-500); }
.stat { padding-left: 20px; border-left: 3px solid var(--blue-500); }

/* ---------- 19. FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.faq__list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item.is-open { border-color: var(--silver-300); box-shadow: var(--shadow-sm); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 26px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
}
.faq-item__icon {
  width: 26px; height: 26px;
  border-radius: 0;
  background: var(--surface-gray);
  display: grid;
  place-items: center;
  flex: none;
  position: relative;
  transition: background .2s var(--ease);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--ink-700);
  transition: transform .25s var(--ease), background .2s var(--ease);
}
.faq-item__icon::before { width: 11px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 11px; }
.faq-item.is-open .faq-item__icon { background: var(--blue-500); }
.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after { background: #fff; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .34s var(--ease);
}
.faq-item__a p {
  padding: 0 26px 24px;
  font-size: .95rem;
  color: var(--ink-500);
  max-width: 68ch;
}

.faq__help {
  background: var(--navy-700);
  color: #fff;
  border-radius: 0;
  padding: 38px 34px;
}
.faq__help h3 { color: #fff; margin-bottom: 12px; }
.faq__help p { font-size: .95rem; color: var(--silver-400); margin-bottom: 26px; }

/* ---------- 20. CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-900);
  color: #fff;
  padding: 128px 0;
  text-align: center;
}

/* Foto de fundo do CTA: assets/img/cta.jpg */
.cta__photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    url("../img/cta.webp") center / cover no-repeat,
    linear-gradient(120deg, #071227 0%, #14294D 50%, #071227 100%);
}
.cta__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at center, rgba(6, 16, 36, .82) 0%, rgba(6, 16, 36, .94) 72%),
    linear-gradient(180deg, rgba(6, 16, 36, .58), rgba(6, 16, 36, .84));
}
.cta__glow {
  position: absolute;
  z-index: -1;
  width: 760px; height: 760px;
  left: 50%; bottom: -460px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(27, 110, 243, .35), transparent 66%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .eyebrow { justify-content: center; }
.cta h2 { color: #fff; margin-bottom: 22px; }
.cta p {
  color: var(--ink-on-dark-soft);
  font-size: 1.1rem;
  margin-bottom: 34px;
  max-width: 54ch;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- 21. Footer ---------- */
.footer { background: var(--navy-900); color: var(--silver-400); padding: 74px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 46px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-dark);
}
.footer__about { font-size: .93rem; margin: 22px 0 24px; max-width: 34ch; }
.footer h4 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer__links { display: grid; gap: 12px; }
.footer__links a { font-size: .93rem; transition: color .2s var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 0;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.footer__social a:hover { background: var(--blue-500); border-color: var(--blue-500); }
.footer__social svg { width: 17px; height: 17px; }

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 0 34px;
  font-size: .84rem;
  color: var(--silver-500);
}
.footer__bar a:hover { color: #fff; }

/* ---------- 23. Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 0;
  background: #1FAF54;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(31, 175, 84, .4);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 29px; height: 29px; }

/* ---------- 24. Animação de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 25. Responsivo ---------- */
@media (max-width: 1330px) {
  .nav { gap: 26px; }
  .nav a { font-size: .9rem; }
  .quick-quote { min-width: 320px; }
  .header__phone { display: none; }
}

@media (max-width: 1080px) {
  .header__bottom { display: none; }
  .header.is-stuck { padding-top: 70px; }
  .header__top-inner {
    grid-template-columns: 1fr auto;
    height: 70px;
    gap: 16px;
  }
  .header__top-inner .logo { order: 1; justify-self: start; }
  .header__lead { order: 2; justify-self: end; }
  .header__actions { display: none; }
  .header__phone { display: none; }
  .burger { display: inline-flex; }

  /* sem banner: a imagem vira bloco acima do texto, tudo centralizado */
  .hero {
    background-image: none;
    background-color: var(--navy-700);
    min-height: 0;
    display: block;
    padding: 28px 0 72px;
    text-align: center;
  }
  .hero::before, .hero::after { display: none; }
  .hero__art { display: block; order: -1; justify-self: center; max-width: 520px; }
  .hero h1 { max-width: none; margin-inline: auto; }
  .hero__lead { max-width: 44ch; margin-inline: auto; }
  .hero__panel { margin-inline: auto; }
  .hero__facts { justify-content: center; }
  .hero__grid,
  .about__grid,
  .coverage__grid,
  .stats__grid,
  .faq__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__grid { gap: 10px; }
  .section-head--split { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .svc-grid, .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .steps::before, .steps__rider { display: none; }
  .stats__grid > *:first-child { order: 2; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .about__media { height: 420px; }
  .stat-badge { left: 0; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  :root { --inset: 10px; --gutter: 20px; }
  .section { padding: 72px 0; }
  .section--tight { padding: 54px 0; }
  .hero { padding: 20px 0 56px; }
  .hero h1 { max-width: none; }
  .hero__panel { max-width: none; padding: 14px; }
  .hero__art { max-height: 300px; }
  .hero__facts { gap: 10px 22px; margin-top: 24px; }
  .hero__facts li { font-size: .86rem; }
  .header__top-inner { height: 62px; }
  .header.is-stuck { padding-top: 62px; }
  .burger__texto { display: none; }
  .burger { gap: 0; padding: 10px 0 10px 14px; }
  .logo img { height: 27px; }
  .svc-grid, .diff-grid, .steps { grid-template-columns: 1fr; }
  .svc-card { min-height: 400px; }
  .svc-card ul { max-height: 230px; opacity: 1; margin-top: 18px; }
  .diff__quote p { white-space: normal; }
  .how__media { aspect-ratio: 16 / 10; margin-top: 52px; }
  .cta { padding: 82px 0; }
  .cta__photo::after { display: none; }
  .form-grid--2, .form-grid--3, .form-grid--4 { grid-template-columns: 1fr; }
  .calc-estimate__row { flex-direction: column; gap: 2px; }
  .coverage__list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__media { grid-template-columns: 1fr; grid-template-rows: 240px 180px; height: auto; }
  .about__media > *:first-child { grid-row: auto; }
  .calc-card__body { padding: 22px; }
  .calc-card__head { padding: 22px 24px; }
  .stats__nums { grid-template-columns: 1fr; gap: 26px; }
  .btn { width: 100%; }
  .btn--auto { width: auto; }
  .wa-float { right: 16px; bottom: 16px; }
}
