/* ===========================
   Transportadora Campinas — E.B Vieira
   Layout limpo e minimalista
   =========================== */

:root {
  --red: #e8262d;
  --red-dark: #c41a20;
  --black: #0e0f12;
  --ink: #1a1c20;
  --gray-700: #4a4d54;
  --gray-500: #777a82;
  --gray-300: #d8dadf;
  --gray-200: #e8eaee;
  --gray-100: #f1f2f5;
  --gray-50:  #f8f9fb;
  --white: #ffffff;

  --font: 'Manrope', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(14,15,18,.04);
  --shadow-md: 0 4px 16px rgba(14,15,18,.06);

  --radius: 10px;
  --radius-lg: 16px;

  --container: 1180px;
  --header-h: 76px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 .5rem;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: .92rem;
  padding: 13px 24px;
  border-radius: 999px;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-lg { padding: 16px 30px; font-size: .98rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--gray-100); }

/* ===========================
   TOPBAR — discreta
   =========================== */
.topbar {
  background: var(--gray-50);
  color: var(--gray-700);
  font-size: .8rem;
  border-bottom: 1px solid var(--gray-200);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 38px;
}
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-info i { color: var(--red); margin-right: 6px; font-size: .78rem; }
.topbar-social { display: flex; gap: 16px; align-items: center; }
.topbar-social a { color: var(--gray-700); transition: color .2s; }
.topbar-social a:hover { color: var(--red); }
.webmail-link {
  border-left: 1px solid var(--gray-300);
  padding-left: 16px;
  font-weight: 600;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: var(--shadow-md); border-bottom-color: transparent; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
.brand-logo-light {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.nav > ul { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 14px;
  color: var(--ink);
  border-radius: 8px;
  transition: color .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav a:hover { color: var(--red); }
.nav .has-sub { position: relative; }
.nav .submenu {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 12px 32px rgba(14,15,18,.10);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav .has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .submenu a { display: block; padding: 10px 18px; font-size: .9rem; border-radius: 0; }
.nav .submenu a:hover { background: var(--gray-50); }

.btn-cta-header { padding: 11px 20px; font-size: .85rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--black); transition: transform .25s, opacity .25s; }

/* ===========================
   HERO — calmo, foco no texto
   =========================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,18,.65) 0%, rgba(14,15,18,.85) 100%),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  z-index: -1;
}
.hero-overlay { display: none; }
.hero-inner { padding: 100px 24px 80px; max-width: 820px; }
.hero-logo {
  height: 44px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.hero-eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.7);
  padding: 6px 0;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 8px 0;
}
.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  font-weight: 800;
}
.hero h1 .hero-accent { color: var(--red); -webkit-text-fill-color: var(--red); }
.hero-sub {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 720px;
}
.hero-stats .stat strong {
  display: block;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.hero-stats .stat span { font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 500; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  transition: color .2s, border-color .2s;
}
.hero-scroll:hover { color: #fff; border-color: rgba(255,255,255,.6); }

/* ===========================
   SECTION BASE — generoso espaço
   =========================== */
.section { padding: 110px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 70px; }
.section-head.light h2, .section-head.light .eyebrow { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.7); }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--gray-500); font-size: 1rem; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.light { color: rgba(255,255,255,.85); }

.lead { font-size: 1.08rem; color: var(--gray-700); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ===========================
   SOBRE
   =========================== */
.section-sobre { background: var(--white); }
.sobre-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--gray-100);
}
.sobre-img .img-block {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,18,.25), rgba(14,15,18,.55)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  display: none;
}
.sobre-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,18,.20), rgba(14,15,18,.55)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}
.sobre-img .img-badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 16px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(14,15,18,.18);
}
.img-badge-logo {
  height: 38px; width: auto;
  flex-shrink: 0;
  border-right: 1px solid var(--gray-200);
  padding-right: 16px;
}
.img-badge > div { display: flex; flex-direction: column; }
.img-badge strong {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--black);
  line-height: 1;
  letter-spacing: -.02em;
}
.img-badge span { font-size: .74rem; color: var(--gray-500); font-weight: 500; margin-top: 2px; }

.check-list { margin: 22px 0 28px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 6px 0;
  font-size: .98rem;
  color: var(--gray-700);
}
.check-list i { color: var(--red); font-size: 1rem; margin-top: 6px; }

/* ===========================
   QUICK — discreto, fundo claro com borda
   =========================== */
.section-quick {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 80px 0;
}
.quick-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.quick-text h2 { color: var(--black); }
.quick-text .quick-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  margin-left: 10px;
  vertical-align: middle;
  letter-spacing: .04em;
}
.quick-text p { color: var(--gray-700); font-size: 1.02rem; max-width: 640px; margin-bottom: 22px; }
.quick-icon {
  font-size: 5rem;
  color: var(--red);
  opacity: .15;
}

/* ===========================
   SERVIÇOS
   =========================== */
.section-servicos { background: var(--white); }
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: border-color .25s, transform .25s;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.service-card .service-icon {
  width: 48px; height: 48px;
  color: var(--red);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.service-card h3 { color: var(--black); margin-bottom: 8px; }
.service-card p { color: var(--gray-500); font-size: .94rem; margin: 0; line-height: 1.6; }

/* ===========================
   ONDE ATUAMOS — fundo escuro liso
   =========================== */
.section-onde {
  background: var(--black);
  color: var(--white);
}
.onde-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: center;
}
.onde-map {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 70px 30px;
  text-align: center;
}
.onde-map i {
  font-size: 3.6rem; color: var(--red);
  display: block; margin-bottom: 18px;
}
.onde-map strong {
  display: block;
  font-weight: 800;
  font-size: 1.8rem; color: var(--white); margin-bottom: 4px;
  letter-spacing: -.02em;
}
.onde-map span { color: rgba(255,255,255,.55); font-size: .9rem; }
.onde-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.onde-item {
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .94rem;
  display: flex; align-items: center; gap: 10px;
  transition: border-color .2s, color .2s;
  color: rgba(255,255,255,.85);
}
.onde-item:hover { border-color: var(--red); color: #fff; }
.onde-item i { color: var(--red); font-size: .85rem; }

/* ===========================
   FROTA
   =========================== */
.section-frota { background: var(--gray-50); }
.frota-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.frota-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: border-color .25s, transform .25s;
}
.frota-card:hover { border-color: var(--red); transform: translateY(-2px); }
.frota-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  color: var(--red);
  font-size: 1.6rem;
}
.frota-card h3 { margin-bottom: 6px; }
.frota-card p { color: var(--gray-500); font-size: .88rem; margin: 0; }

/* ===========================
   DIFERENCIAIS — fundo claro, sem gradiente
   =========================== */
.section-diff {
  background: var(--white);
}
.section-diff .section-head h2,
.section-diff .section-head .eyebrow,
.section-diff .section-head p { color: inherit; }
.section-diff .eyebrow { color: var(--red); }
.section-diff .section-head h2 { color: var(--black); }
.section-diff .section-head p { color: var(--gray-500); }
.diff-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  transition: background-color .25s;
}
.diff-card:hover { background: var(--gray-100); }
.diff-card i {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 18px;
  display: block;
}
.diff-card h3 { color: var(--black); margin-bottom: 8px; }
.diff-card p { color: var(--gray-700); font-size: .92rem; margin: 0; line-height: 1.6; }

/* ===========================
   PROCESSO
   =========================== */
.section-processo { background: var(--gray-50); }
.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.processo-step {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  position: relative;
}
.processo-step .step-num {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  color: var(--red);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.processo-step h3 { margin-bottom: 6px; }
.processo-step p { color: var(--gray-500); font-size: .9rem; margin: 0; line-height: 1.6; }

/* ===========================
   CLIENTES
   =========================== */
.section-clientes { background: var(--white); }
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cliente-logo {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gray-500);
  letter-spacing: -.01em;
  transition: border-color .2s, color .2s;
}
.cliente-logo:hover { border-color: var(--red); color: var(--black); }

/* ===========================
   CTA BAND — sem parallax, sem foto
   =========================== */
.section-cta-band {
  padding: 80px 0;
  background: var(--black);
  color: var(--white);
}
.cta-band {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.7); margin: 0; }

/* ===========================
   CONTATO
   =========================== */
.section-contato { background: var(--gray-50); }
.contato-list { margin: 24px 0; }
.contato-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contato-list li:last-child { border: 0; }
.contato-list i {
  width: 40px; height: 40px;
  color: var(--red);
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contato-list strong { display: block; font-weight: 600; color: var(--gray-500); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.contato-list span { font-size: 1rem; color: var(--black); font-weight: 500; }

.contato-social { display: flex; gap: 10px; margin-top: 18px; }
.contato-social a {
  width: 40px; height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gray-700);
  transition: border-color .2s, color .2s;
}
.contato-social a:hover { border-color: var(--red); color: var(--red); }

.contato-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.contato-form h3 {
  font-size: 1.2rem; margin-bottom: 22px;
  font-weight: 700;
}
.contato-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.contato-form input, .contato-form textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: inherit; font-size: .94rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 12px;
  transition: border-color .2s;
  color: var(--ink);
}
.contato-form input::placeholder, .contato-form textarea::placeholder { color: var(--gray-500); }
.contato-form input:focus, .contato-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contato-form button { margin-top: 6px; }
.contato-form small { display: block; margin-top: 14px; color: var(--gray-500); font-size: .78rem; text-align: center; }

/* ===========================
   FOOTER — minimalista
   =========================== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding-top: 80px;
  font-size: .92rem;
}
.footer h4 {
  color: #fff;
  font-size: .9rem;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-about { font-size: .92rem; margin: 18px 0; line-height: 1.7; max-width: 320px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,.7);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }

.footer-links li { padding: 5px 0; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: #fff; }

.footer-contact li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
}
.footer-contact i { color: var(--red); width: 16px; font-size: .85rem; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}

/* ===========================
   WHATSAPP FLOAT — sem pulso
   =========================== */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 54px; height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
  z-index: 99;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.06); }

/* ===========================
   ANIMATIONS
   =========================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .grid-cards, .frota-grid, .diff-grid, .processo-grid, .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 820px) {
  .topbar-inner { font-size: .75rem; }
  .topbar-info { gap: 14px; }
  .hide-mobile { display: none; }

  .brand-logo { height: 32px; }
  .hero-logo { height: 36px; margin-bottom: 20px; }
  .img-badge-logo { height: 28px; padding-right: 12px; }
  .img-badge strong { font-size: 1.2rem; }

  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--white);
    padding: 90px 24px 24px;
    box-shadow: -8px 0 24px rgba(14,15,18,.12);
    transition: right .3s ease;
    overflow-y: auto;
  }
  .nav.open { right: 0; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .nav .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 0 14px; border: 0; }
  .btn-cta-header { display: none; }

  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .grid-2, .quick-inner, .onde-grid, .cta-band {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .quick-icon { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 50px; }
}

@media (max-width: 560px) {
  .grid-cards, .frota-grid, .diff-grid, .processo-grid, .clientes-grid,
  .footer-grid, .onde-list, .contato-form .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .contato-form { padding: 24px; }
}
