/* =========================================================================
   CARRARO FINANCIAMENTOS — Landing Page
   Tokens extraídos do Figma (file 8ja8CwWt0Gm7w6AQJYK5q3)
   ========================================================================= */

:root {
  /* Cores */
  --navy-900: #021533;   /* mais escuro — botão topo, textos profundos */
  --navy-800: #0d2549;   /* navy corpo / cards de stat / footer */
  --navy-700: #143568;   /* títulos, cards escuros, faixas CTA */
  --accent:   #2ca2df;   /* CTA, ícones, links */
  --accent-dark: #1f8ec9;
  --header-bg: #ecf4ff;
  --header-navy: #2A416A; /* fundo do topo e rodapé (contraste com a logo) */
  --tint:     #e1e9f4;   /* pills, feature cards, chips */
  --tint-soft:#eef3fb;   /* fundos de seção claros */
  --tint-2:   #f5f8fd;
  --white:    #ffffff;

  --txt-on-light: var(--navy-700);
  --txt-muted-light: rgba(20, 53, 104, 0.7);
  --txt-on-dark: #ffffff;
  --txt-muted-dark: rgba(255, 255, 255, 0.7);

  /* Tipografia — stack Helvetica/Arial do sistema (substitui Helvetica Neue / Now Display) */
  --font: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1080px;
  --gutter: 24px;
  --radius: 15px;
  --radius-sm: 8px;
  --header-h: 80px;

  --shadow-card: -2px 8px 18px rgba(0,0,0,0.05), -6px 33px 34px rgba(0,0,0,0.05);
  --shadow-soft: 0 10px 40px rgba(13,37,73,0.10);
}

/* ----------------------------- Reset / Base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3 { line-height: 1.2; font-weight: 500; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ----------------------------- Botões ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 68px;
  padding: 0 32px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  border-radius: 0;
  transition: background-color .2s ease, transform .15s ease, opacity .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--dark { background: var(--navy-900); color: #fff; height: 50px; font-size: 16px; padding: 0 24px; }
.btn--dark:hover { background: #0a214a; }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--ghost svg { width: 20px; height: 20px; }

/* ----------------------------- Pills / Badges ----------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: .7px;
  white-space: nowrap;
}
.pill--light { background: var(--tint); color: var(--navy-700); }
.pill--white { background: #fff; color: var(--navy-800); }
.pill--tint  { background: var(--tint); color: rgba(2,21,51,.8); }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 59px; height: 59px;
  border-radius: 8px;
  background: var(--accent);
  flex: none;
}
.icon-badge--sm { width: 43px; height: 43px; border-radius: 6.6px; overflow: hidden; }
.icon-badge--round { width: 64px; height: 64px; border-radius: 50%; }
.icon-badge img { display: block; }
.icon-badge--sm img { width: 24px; height: 24px; }
.icon-badge > img[src*="trust-badge"] { width: 32px; height: 32px; }

/* ----------------------------- Cabeçalho de seção ----------------------------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.section-title { font-size: clamp(30px, 4.6vw, 48px); color: var(--navy-700); text-transform: uppercase; letter-spacing: -0.5px; }
.section-title--center { text-align: center; }
.section-sub { font-size: 18px; color: var(--txt-muted-light); max-width: 600px; }

section { position: relative; }

/* ========================================================================
   HEADER / NAV
   ======================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-navy);
  height: var(--header-h);
  display: flex; align-items: center;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { height: 43px; width: auto; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav__list { display: flex; align-items: center; gap: 32px; }
.nav__list a { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.88); transition: color .2s; }
.nav__list a:hover { color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ========================================================================
   HERO
   ======================================================================== */
.hero { position: relative; min-height: 777px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; color: #fff; }
.hero__inner { width: 100%; }
.hero__bg {
  position: absolute; inset: 0;
  background-image: url("../assets/images/hero-truck.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 90%;  /* X: direita (motorista) · Y: 80% mostra mais o corpo (sobe a imagem) */
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(-90deg, rgba(0,0,0,0) 30%, rgba(2,12,38,0.72) 62%, rgba(2,12,38,0.94) 100%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 600px; display: flex; flex-direction: column; gap: 32px; }
.hero__title { font-size: clamp(34px, 4.4vw, 48px); letter-spacing: -1.5px; }
.hero__sub { font-size: 20px; line-height: 1.4; color: var(--txt-muted-dark); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 22px; }
.hero__actions .btn { min-width: 249px; }
.hero__stats { display: flex; gap: 60px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat__num { font-size: 32px; line-height: 1.25; color: #fff; white-space: nowrap; }
.hero-stat__label { font-size: 16px; color: rgba(255,255,255,.6); white-space: nowrap; }

/* ========================================================================
   QUEM PODE (band navy)
   ======================================================================== */
.quem-pode { background: var(--navy-700); padding: 85px 0; }
.quem-pode .container { display: flex; flex-direction: column; align-items: center; gap: 56px; }
.quem-pode__title { font-size: clamp(32px, 4vw, 48px); color: var(--header-bg); text-transform: uppercase; text-align: center; }
.quem-pode__chips { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--tint); border-radius: 8px;
  width: 339px; max-width: 100%; height: 111px; padding: 0 29px;
}
.chip__icon { width: 43px; height: 43px; flex: none; }
.chip span { font-size: 22px; font-weight: 500; color: #0a0a0a; }

/* ========================================================================
   QUEM SOMOS + TIMELINE
   ======================================================================== */
.historia { padding: 96px 0; background: var(--white); }
.timeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 21px 24px; max-width: 1060px; margin: 0 auto; }
.tl-card { background: #dbe7f6; border-radius: 5px; padding: 32px 40px; display: flex; flex-direction: column; gap: 8px; }
.tl-card__head { display: flex; align-items: center; gap: 14px; }
.tl-card__ic { width: 43px; height: 43px; border-radius: 6.6px; background: var(--accent); flex: none; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.tl-card__ic img { width: 28px; height: 28px; }
.tl-card__year { font-size: 27px; font-weight: 700; color: var(--navy-800); line-height: 32px; }
.tl-card__text { font-size: 16px; color: var(--txt-muted-light); }

/* ========================================================================
   TRUST — NENHUMA TAXA
   ======================================================================== */
.trust { padding: 0 0 96px; background: var(--white); }
.trust .container { max-width: 1326px; }   /* card 1278px (Figma), mais largo que a coluna padrão */
.trust__card {
  display: grid; grid-template-columns: 1fr 571px; align-items: stretch;
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 567px;
}
.trust__body { padding: 80px 110px; display: flex; flex-direction: column; gap: 27px; justify-content: center; }
.trust__title { font-size: clamp(32px, 4vw, 48px); color: var(--navy-700); text-transform: uppercase; max-width: 497px; }
.trust__text { font-size: 20px; line-height: 1.4; color: rgba(13,37,73,.7); max-width: 533px; }
.trust__media { position: relative; overflow: hidden; }
.trust__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.trust__float {
  position: absolute; right: 56px; top: 54%; transform: translateY(-50%);
  width: 64px; height: 64px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(13,37,73,.22);
}

/* ========================================================================
   PRODUTOS
   ======================================================================== */
.produtos { padding: 96px 0; background: var(--tint-2); }
.produtos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1060px; margin: 0 auto; }
.prod-card { border-radius: var(--radius); padding: 40px; display: flex; flex-direction: column; gap: 21px; }
.prod-card--dark { background: var(--navy-700); color: #fff; }
.prod-card--light { background: #fff; border: 1px solid var(--navy-700); }
.prod-card__title { font-size: 36px; }
.prod-card--dark .prod-card__title { color: #fff; }
.prod-card--light .prod-card__title { color: var(--navy-700); }
.prod-card__lead { font-size: 18px; line-height: 1.55; }
.prod-card--dark .prod-card__lead { color: rgba(255,255,255,.9); }
.prod-card--light .prod-card__lead { color: rgba(20,53,104,.7); }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { position: relative; padding-left: 36px; font-size: 16px; line-height: 1.5; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px;
  background: no-repeat center / contain;
}
.check-list--light li { color: #fff; }
.check-list--light li::before { background-image: url("../assets/icons/check-white.svg"); }
.check-list--dark li { color: var(--navy-700); }
.check-list--dark li::before { background-image: url("../assets/icons/check-accent.svg"); }

/* ========================================================================
   4 PASSOS
   ======================================================================== */
.passos { padding: 96px 0; background: var(--white); }
.passos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 30px; max-width: 1060px; margin: 0 auto; }
.step-card { background: var(--tint-soft); border-radius: var(--radius); padding: 40px; }
.step-card__head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.step-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 59px; height: 59px; border-radius: 12px;
  background: var(--accent); color: #fff; font-size: 26px; font-weight: 600; flex: none;
}
.step-card__title { font-size: clamp(20px, 2.4vw, 26px); color: var(--navy-700); }
.step-card__text { font-size: 18px; line-height: 1.5; color: var(--txt-muted-light); }

/* ========================================================================
   POR QUE ESCOLHER
   ======================================================================== */
.porque { padding: 96px 0; background: var(--tint-2); }
.porque__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1060px; margin: 0 auto; }
.feature-card { background: var(--tint); border-radius: var(--radius-sm); padding: 36px 29px; display: grid; grid-template-columns: 43px 1fr; gap: 27px 12px; align-items: center; }
.feature-card .icon-badge--sm, .feature-card__badge { grid-column: 1; grid-row: 1; width: 43px; height: 43px; flex: none; }
.feature-card__badge img { width: 43px; height: 43px; display: block; }
.feature-card__title { grid-column: 2; grid-row: 1; font-size: 22px; line-height: 28px; color: #0a0a0a; }
.feature-card__text { grid-column: 1 / -1; font-size: 18px; line-height: 1.4; color: rgba(38,38,38,.7); }

/* ========================================================================
   CTA STATS BAND
   ======================================================================== */
.cta-stats { background: var(--navy-700); padding: 90px 0; }
.cta-stats__inner { display: flex; flex-direction: column; align-items: center; gap: 44px; }
.cta-stats__head { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.cta-stats__title { font-size: clamp(30px, 4vw, 48px); color: #fff; text-transform: uppercase; }
.cta-stats__sub { font-size: 20px; line-height: 1.4; color: rgba(255,255,255,.7); max-width: 569px; }
.cta-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; max-width: 1060px; }
.stat-box { background: var(--navy-800); border-radius: 10px; padding: 25px 27px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.stat-box__num { font-size: clamp(36px, 4vw, 52px); font-weight: 600; color: #fff; line-height: 1; }
.stat-box__label { font-size: 16px; color: rgba(255,255,255,.7); letter-spacing: .5px; }

/* ========================================================================
   DEPOIMENTOS
   ======================================================================== */
.cases { padding: 96px 0; background: var(--tint-soft); }
.rating-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--navy-700); font-weight: 500; font-size: 16px;
  padding: 8px 20px; border-radius: 100px; box-shadow: var(--shadow-card);
}
.rating-pill__stars { color: var(--navy-700); letter-spacing: 2px; }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1060px; margin: 0 auto; }
.review { background: var(--tint); border-radius: 12px; padding: 25px 26px; display: flex; flex-direction: column; gap: 14px; }
.review__head { display: flex; align-items: center; gap: 16px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 16px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.review__name { font-size: 16px; font-weight: 600; color: var(--navy-700); }
.review__city { font-size: 14px; color: var(--txt-muted-light); }
.stars { color: var(--navy-700); letter-spacing: 3px; font-size: 15px; }
.review__text { font-size: 16px; line-height: 1.5; color: var(--txt-muted-light); }

/* ========================================================================
   BLOCO NAVY  (Região + Localização + Contato + CTA final)
   ======================================================================== */
.navy-block { position: relative; background: var(--navy-700); overflow: hidden; }
.navy-block::before {
  content: ""; position: absolute; left: 50%; top: -8%; transform: translateX(-50%);
  width: 1500px; height: 1100px; max-width: 130%; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(44,162,223,.18) 0%, rgba(44,162,223,0) 68%);
}
.navy-block > section { position: relative; z-index: 1; }
.section-head--dark .section-title { color: #fff; }
.section-head--dark .section-sub { color: rgba(255,255,255,.7); }
.section-title--white { color: #fff; }

/* Região */
.regiao { padding: 96px 0 56px; }
.regiao__pin { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.regiao__pin img { width: 32px; height: 32px; }
.regiao__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1060px; margin: 0 auto; }
.city { display: flex; align-items: center; justify-content: center; gap: 12px; height: 60px; background: var(--header-bg); border-radius: 100px; padding: 0 12px; }
.city img { width: 28px; height: 28px; flex: none; }
.city span { font-size: 18px; color: var(--navy-800); text-align: center; }

/* Localização */
.local { padding: 16px 0 64px; }
.local .section-title { margin-bottom: 40px; }
.local__map { max-width: 700px; margin: 0 auto; background: #eef3fb; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-soft); }
.local__map iframe { width: 100%; height: 384px; border: 0; display: block; }
.local__addr { font-size: 16px; color: var(--txt-muted-light); text-align: center; padding: 16px 20px; background: #fff; }

/* Barra de contato */
.contact-bar { padding: 8px 0 56px; }
.contact-bar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 22px; }
.contact-bar__item { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; color: #fff; transition: opacity .2s; }
.contact-bar__item:hover { opacity: .8; }
.contact-bar__item img { width: 20px; height: 20px; }

/* ========================================================================
   CTA FINAL
   ======================================================================== */
.cta-final { padding: 0 0 90px; }
.cta-final__box { position: relative; background: var(--navy-800); border-radius: var(--radius); overflow: hidden; padding: 72px 24px; }
.cta-final__art {
  position: absolute; inset: 0;
  background: url("../assets/images/cta-art-fill.svg") no-repeat;
  background-position: right -120px top -180px;
  background-size: 1100px auto;
  opacity: .12; pointer-events: none;
}
.cta-final__content { position: relative; z-index: 2; max-width: 706px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; color: #fff; }
.cta-final__title { font-size: clamp(30px, 4.2vw, 52px); }
.cta-final__sub { font-size: 20px; line-height: 1.4; max-width: 494px; }
.cta-final__content .btn { min-width: 302px; margin-top: 14px; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer { background: var(--header-navy); color: rgba(255,255,255,.75); padding: 49px 0 40px; }
.footer__cols { display: grid; grid-template-columns: 251px 1fr 1fr; gap: 40px; padding-bottom: 32px; }
.footer__logo { height: 43px; width: auto; margin-bottom: 12px; }
.footer__tagline { font-size: 14px; line-height: 1.45; color: rgba(255,255,255,.7); max-width: 251px; }
.footer__col h3 { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.8); text-decoration: underline; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__contact li { font-size: 14px; color: rgba(255,255,255,.8); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px; text-align: center; display: flex; flex-direction: column; gap: 6px; }
.footer__bottom p { font-size: 14px; color: rgba(255,255,255,.55); }

/* ========================================================================
   MICROINTERAÇÕES / ANIMAÇÕES DE SCROLL
   ======================================================================== */
.site-header { transition: box-shadow .3s ease; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(2,21,51,.10); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ========================================================================
   RESPONSIVO
   ======================================================================== */
@media (max-width: 1024px) {
  .trust__card { grid-template-columns: 1fr; }
  .trust__body { padding: 48px; }
  .trust__media { min-height: 360px; }
  .porque__grid, .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .regiao__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --gutter: 18px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--header-navy);
    padding: 12px 18px 24px;
    box-shadow: 0 18px 30px rgba(2,21,51,.28);
    transform: translateY(-150%); transition: transform .35s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a { display: block; padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 17px; }
  .nav__cta { margin-top: 16px; width: 100%; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Hero mobile — conforme frame Figma 2017:607 (conteúdo no topo, imagem visível embaixo) */
  .hero { min-height: 88vh; min-height: calc(100svh - var(--header-h)); justify-content: flex-start; padding: 0; }
  .hero__inner { padding-top: 36px; padding-bottom: 40px; }
  .hero__bg { background-image: url("../assets/images/hero-truck-mobile.jpg"); background-position: center; }
  .hero__overlay { background: linear-gradient(to top, rgba(0,0,0,0) 44%, rgba(0,0,0,.5) 64%, rgba(2,12,38,.9) 100%); }
  .hero__content { gap: 20px; }
  .hero__title { font-size: 27px; letter-spacing: -1px; }
  .hero__sub { font-size: 13px; line-height: 1.45; max-width: 100%; }
  .hero__actions { flex-wrap: nowrap; gap: 12px; }
  .hero__actions .btn { flex: 1 1 0; min-width: 0; width: auto; height: 44px; font-size: 12px; padding: 0 12px; gap: 6px; }
  .hero__actions .btn--ghost svg { width: 14px; height: 14px; }
  .hero__stats { gap: 22px; flex-wrap: nowrap; }
  .hero-stat { max-width: 104px; }
  .hero-stat__num { font-size: 19px; line-height: 1.2; }
  .hero-stat__label { font-size: 10px; line-height: 1.3; white-space: normal; }

  /* Seções: empilhar */
  .historia, .produtos, .passos, .porque, .cases, .regiao { padding: 64px 0; }
  .quem-pode { padding: 56px 0; }
  .cta-stats { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .timeline, .produtos__grid, .passos__grid,
  .porque__grid, .cases__grid, .regiao__grid,
  .cta-stats__grid, .footer__cols { grid-template-columns: 1fr; }

  .footer__cols { gap: 32px; text-align: left; }
  .quem-pode__chips { flex-direction: column; align-items: center; width: 100%; }
  .chip { width: 100%; }

  .prod-card, .step-card, .feature-card { padding: 28px 24px; }
  .trust__body { padding: 36px 24px; }
  .trust__media { min-height: 280px; }
  .cta-final__box { padding: 48px 20px; }
  .cta-final__content .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 25px; }
  .hero__actions .btn { font-size: 11px; padding: 0 10px; }
  .hero__stats { gap: 16px; }
  .hero-stat__label { font-size: 9.5px; }
}

@media (max-width: 480px) {
  .prod-card__title { font-size: 30px; }
  .stat-box__num { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
