/* ==========================================================================
   Samir Log Express — Design System
   ========================================================================== */

:root {
  /* Cores */
  --navy: #0F2A4A;
  --navy-soft: #1A3A5F;
  --blue: #1B5FBF;
  --blue-light: #E8F0FC;
  --orange: #F7941D;
  --orange-dark: #E07E06;
  --white: #FFFFFF;
  --bg: #F6F8FB;
  --border: #E3E9F2;
  --text: #4A5568;
  /* Era #7A8798, que dava 3,4:1 sobre o cinza claro e reprovava em contraste.
     Este tom mantém o viés azulado e sobe para 4,75:1. */
  --text-light: #63707F;
  --green: #25D366;

  /* Tipografia */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaço */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;

  /* Sombras suaves */
  --shadow-sm: 0 1px 2px rgba(15, 42, 74, .06);
  --shadow: 0 4px 20px rgba(15, 42, 74, .07);
  --shadow-lg: 0 12px 40px rgba(15, 42, 74, .10);
}

/* Reset -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; font-weight: 700; letter-spacing: -.02em; }

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

.section { padding: 96px 0; }
.section--bg { background: var(--bg); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
/* Era .section-head .eyebrow, escopado só ao cabeçalho centralizado de seção.
   A seção do fundador usa o mesmo .eyebrow fora do .section-head e nunca
   recebia estilo nenhum, ficava texto puro sem querer. */
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 18px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--text-light); }

/* Botões ------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  padding: 15px 32px; border-radius: 100px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(247, 148, 29, .28); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(247, 148, 29, .36); }

.btn--ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn--light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn--light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.btn--sm { padding: 11px 22px; font-size: 14px; }

/* Header ------------------------------------------------------------------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.header__logo img { height: 42px; width: auto; transition: height .3s ease; }
.header.is-scrolled .header__logo img { height: 36px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 14px; font-weight: 600; color: var(--navy);
  position: relative; padding: 4px 0; transition: color .2s ease;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--orange); border-radius: 2px; transition: width .25s ease;
}
.nav a:hover { color: var(--blue); }
.nav a:hover::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 14px; }

/* Só aparece dentro do menu aberto no celular, onde o botão do topo some. */
.nav__cta { display: none; }

.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span {
  display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
  position: relative; transition: background .2s ease;
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: transform .25s ease;
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: translateY(7px) rotate(45deg); }
.burger.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero --------------------------------------------------------------------- */
.hero { padding: 148px 0 80px; background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  padding: 8px 18px 8px 10px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 26px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(37,211,102,.18); } 50% { box-shadow: 0 0 0 7px rgba(37,211,102,.06); } }

.hero h1 { font-size: clamp(34px, 5.2vw, 58px); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero__text { font-size: 18px; max-width: 500px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero__proof { display: flex; align-items: center; gap: 20px; }
.hero__proof-stars { display: flex; gap: 2px; }
.hero__proof-stars svg { width: 17px; height: 17px; fill: #FFB400; }
.hero__proof p { font-size: 14px; color: var(--text-light); }
.hero__proof strong { color: var(--navy); }

.hero__media { position: relative; }

/* Carrossel: as fotos ficam empilhadas absolutas e se revezam por opacidade.
   Uma por modal (rodoviário, marítimo, aéreo), mesmo espírito da seção cheia
   do Aéreo mais abaixo, só que em miniatura logo na entrada do site. */
.hero__slides {
  position: relative; width: 100%; height: 520px;
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--blue-light), #d7e4f7);
  cursor: grab; user-select: none; -webkit-user-select: none;
}
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.1s ease;
  -webkit-user-drag: none; user-drag: none; pointer-events: none;
}
.hero__slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero__slide { transition: none; } }

.hero__dots {
  position: absolute; right: 8px; top: 8px; z-index: 2;
  display: flex;
}
/* O ponto visual continua em 8px, mas o botão em volta dele tem 40px de
   alvo de toque. Fica do mesmo jeito na tela e vira alcançável no dedo. */
.hero__dots button {
  width: 40px; height: 40px; padding: 0; background: none; border: 0;
  display: grid; place-items: center;
}
.hero__dots button::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, .5); border: 1px solid rgba(255, 255, 255, .7);
  transition: background .2s ease, transform .2s ease;
}
.hero__dots button:hover::after { transform: scale(1.25); }
.hero__dots button.is-active::after { background: var(--orange); border-color: var(--orange); }

/* Chip flutuante embaixo da foto, não mais em cima dela: sobre a imagem o
   contraste variava conforme a foto do slide (a auditoria reprovava
   "Rastreio 24 horas" em cima da mais clara); embaixo, sempre sobre o fundo
   claro da seção, o navy sólido garante contraste em qualquer situação. */
.hero__float {
  position: relative; margin-top: 20px; left: auto; bottom: auto;
  display: inline-flex; align-items: center; gap: 13px;
  padding: 13px 22px 13px 18px; border-radius: 100px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 24px rgba(15, 42, 74, .22);
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .hero__float { animation: none; } }

.hero__float-live {
  position: relative; width: 9px; height: 9px; border-radius: 50%;
  background: #3DDC7F; flex-shrink: 0;
}
.hero__float-live::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid rgba(61, 220, 127, .6);
  animation: ripple 2.2s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .hero__float-live::after { animation: none; opacity: .5; } }

.hero__float b { display: block; font-size: 14.5px; color: #fff; letter-spacing: -.01em; }
.hero__float span { font-size: 12.5px; color: rgba(255, 255, 255, .72); }

/* Stats -------------------------------------------------------------------- */
/* Faixa navy: era um cartão branco boiando sobre o degradê claro do hero, e
   ficava um branco emendado no outro. Números grandes pedem mais peso mesmo,
   então virou uma banda de cor cheia, no mesmo tom das seções de modal. */
.stats {
  padding: 64px 0; background: var(--navy); position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(27, 95, 191, .28), transparent 70%);
  pointer-events: none;
}
.stats__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 12px 28px; text-align: center; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 10px; bottom: 10px; width: 1px; background: rgba(255, 255, 255, .14);
}
.stat__num {
  font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; color: var(--orange);
  letter-spacing: -.03em; line-height: 1; margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat__num sup { font-size: .5em; vertical-align: super; }
.stat__label { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.stat__desc { font-size: 13px; color: rgba(255, 255, 255, .62); line-height: 1.5; }

/* Serviços ----------------------------------------------------------------- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service__icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--blue-light);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: background .22s ease;
}
.service__icon svg { width: 27px; height: 27px; stroke: var(--blue); transition: stroke .22s ease; }
.service:hover .service__icon { background: var(--blue); }
.service:hover .service__icon svg { stroke: #fff; }
.service h3 { font-size: 20px; margin-bottom: 10px; }
.service p { font-size: 15px; margin-bottom: 22px; flex: 1; }
.service__link {
  font-size: 14px; font-weight: 600; color: var(--blue);
  display: inline-flex; align-items: center; gap: 7px;
  transition: gap .2s ease;
}
.service:hover .service__link { gap: 12px; }
.service__link svg { width: 15px; height: 15px; stroke: currentColor; }

/* Modais em destaque ---------------------------------------------------------
   Um só bloco cheio com os três modais em carrossel horizontal (arraste,
   setas ou pontinhos), no molde do "carro-chefe" aéreo que o Édi elogiou
   ("ficou muito bom... arrepia"). Rodoviário troca a foto por um mapa do
   Brasil com pontos nos 27 estados; Aéreo e Marítimo usam foto cheia com
   véu navy por cima. */
.modal-hero-carousel {
  position: relative; overflow: hidden;
  height: clamp(560px, 92vh, 780px);
  background-color: var(--navy);
  cursor: grab; user-select: none; -webkit-user-select: none;
}
.modal-hero-carousel.is-dragging { cursor: grabbing; }
.modal-hero-carousel__viewport { position: relative; width: 100%; height: 100%; overflow: hidden; }
.modal-hero-carousel__track {
  display: flex; width: 300%; height: 100%;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.modal-hero-carousel.is-dragging .modal-hero-carousel__track { transition: none; }
@media (prefers-reduced-motion: reduce) {
  .modal-hero-carousel__track { transition: none; }
}

.modal-hero {
  position: relative; overflow: hidden;
  width: 33.3334%; height: 100%; flex: 0 0 33.3334%;
  display: flex; align-items: flex-end;
  background-color: var(--navy);
}

/* Setas ---------------------------------------------------------------- */
.modal-hero-carousel__arrow {
  position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(9, 27, 50, .55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #fff; display: grid; place-items: center; cursor: pointer; padding: 0;
  transition: background .2s ease, border-color .2s ease;
}
.modal-hero-carousel__arrow svg { width: 22px; height: 22px; }
.modal-hero-carousel__arrow:hover { background: rgba(18, 48, 86, .8); border-color: rgba(255, 255, 255, .5); }
.modal-hero-carousel__arrow--prev { left: 20px; }
.modal-hero-carousel__arrow--next { right: 20px; }

/* Abas / pontinhos com o nome do modal ---------------------------------- */
.modal-hero-carousel__dots {
  position: absolute; right: 32px; bottom: 32px; z-index: 3;
  display: flex; gap: 22px;
}
.modal-hero-carousel__dots button {
  padding: 0 0 9px; border: 0; background: none; cursor: pointer;
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255, 255, 255, .58); position: relative;
  transition: color .2s ease;
}
.modal-hero-carousel__dots button::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: rgba(255, 255, 255, .28); transition: background .2s ease;
}
.modal-hero-carousel__dots button:hover { color: rgba(255, 255, 255, .85); }
.modal-hero-carousel__dots button.is-active { color: #fff; }
.modal-hero-carousel__dots button.is-active::after { background: var(--orange); }

.modal-hero--aereo { background: var(--navy) url('img/aereo.jpg?v=1bf32c3f') center 38% / cover no-repeat; }
.modal-hero--maritimo { background: var(--navy) url('img/maritimo-hero.jpg?v=1987a257') center 42% / cover no-repeat; }

/* Rodoviário: sem foto de verdade pra esse trecho, então o "carro-chefe"
   visual vira o próprio mapa: silhueta do Brasil (PNG, extraída de um SVG
   cartográfico real) com um ponto em cada um dos 27 estados + DF e linhas
   finas saindo de Itajaí, nossa base. Imagem e SVG de pontos por cima usam
   o mesmo recorte "cover" pra ficarem sempre alinhados um sobre o outro. */
.modal-hero__mapa { position: absolute; inset: 0; z-index: 0; }
.modal-hero__mapa-img, .modal-hero__mapa-pontos {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 72%;
  pointer-events: none; -webkit-user-drag: none; user-drag: none;
}
.rodo-mapa__hub circle,
.modal-hero__mapa-pontos circle:not(.rodo-mapa__hub) {
  transition: r .2s ease;
}

.modal-hero__scrim {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(0deg, rgba(6, 16, 30, .94) 0%, rgba(6, 16, 30, .55) 46%, rgba(6, 16, 30, .18) 72%, rgba(10, 22, 40, .38) 100%),
    linear-gradient(100deg, rgba(10, 22, 40, .5) 0%, transparent 45%);
}
.modal-hero--rodoviario .modal-hero__scrim {
  background:
    linear-gradient(0deg, rgba(6, 16, 30, .92) 0%, rgba(6, 16, 30, .58) 50%, rgba(6, 16, 30, .3) 100%),
    linear-gradient(100deg, rgba(6, 16, 30, .55) 0%, transparent 48%);
}
/* padding-top/bottom só, nunca o atalho de 3 valores: "padding: A 0 B" zera
   o padding esquerdo/direito e engole o respiro lateral que o .container já
   dá (foi exatamente esse bug que cortou o texto rente à borda no celular). */
.modal-hero__inner { position: relative; z-index: 1; padding-top: 120px; padding-bottom: 72px; color: #fff; }

.modal-hero__eyebrow {
  display: inline-block; margin-bottom: 20px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: var(--orange);
  padding: 7px 18px; border-radius: 100px;
}
.modal-hero h2 {
  color: #fff; font-size: clamp(32px, 4.8vw, 54px); line-height: 1.08;
  margin-bottom: 20px; text-wrap: balance; max-width: 700px;
}
.modal-hero__inner p {
  font-size: 17px; color: rgba(255, 255, 255, .78); max-width: 480px;
  margin-bottom: 40px;
}

.modal-hero__stats {
  display: flex; gap: 40px; margin-bottom: 40px; flex-wrap: wrap;
}
.modal-hero__stats div { min-width: 120px; }
.modal-hero__stats b {
  display: block; font-size: clamp(26px, 3vw, 34px); font-weight: 700;
  color: var(--orange); letter-spacing: -.02em; line-height: 1;
  font-variant-numeric: tabular-nums; margin-bottom: 6px;
}
.modal-hero__stats span { font-size: 13.5px; color: rgba(255, 255, 255, .68); }

/* Timeline ----------------------------------------------------------------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.timeline::before {
  content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__icon {
  width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 20px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow);
  display: grid; place-items: center; position: relative;
  transition: transform .22s ease, border-color .22s ease;
}
.step:hover .step__icon { transform: translateY(-5px); border-color: var(--blue); }
.step__icon svg { width: 30px; height: 30px; stroke: var(--blue); }
.step__num {
  position: absolute; top: -8px; right: -8px;
  width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 700; display: grid; place-items: center;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-light); }

/* Fundador em destaque ---------------------------------------------------
   Hero igual às de modal, mas centralizada: no desktop, a faixa navy sólida
   esticada de ponta a ponta da tela ficou pesada demais e sem graça. Virou
   um cartão largo e centralizado (como um .container, mas com padding
   próprio), com bordas arredondadas — a foto e o véu navy ficam contidos
   nele, então a "parede azul" nunca fica maior que o cartão. No celular
   (abaixo de 720px) volta a ser de ponta a ponta, sem cartão. */
.founder-hero { background: var(--bg); padding: 72px 24px; }
.founder-hero__card {
  position: relative; overflow: hidden;
  max-width: 1160px; margin: 0 auto; border-radius: 28px; box-shadow: var(--shadow-lg);
  min-height: 600px; max-height: 680px;
  display: flex; align-items: flex-end;
  background: var(--navy);
}
/* A foto é retrato (900x1200), não paisagem: esticar ela cover 100% da
   largura numa faixa bem baixa cortava quase só o queixo dele. Em vez
   disso ela ocupa boa parte da largura, na altura inteira do cartão, e o
   véu garante navy sólido do lado esquerdo pro texto nunca perder contraste. */
.founder-hero__photo {
  position: absolute; top: 0; right: 0; bottom: 0; z-index: 0;
  width: 56%; height: 100%; object-fit: cover; object-position: center 36%;
}
.founder-hero__scrim {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(100deg, var(--navy) 0%, var(--navy) 30%, rgba(15, 42, 74, .35) 54%, transparent 72%),
    linear-gradient(0deg, rgba(6, 16, 30, .85) 0%, rgba(6, 16, 30, .35) 55%, transparent 80%);
}
/* max-width em % (não px fixo) porque a foto também é % da largura do
   cartão: assim o texto nunca alcança a foto, não importa a largura da
   tela. Antes, com 600px fixo, em telas de ~1024-1300px o texto entrava
   por baixo da foto. */
.founder-hero__inner { position: relative; z-index: 1; padding: 56px 56px; color: #fff; max-width: 42%; }
.founder-hero__eyebrow {
  display: inline-block; margin-bottom: 20px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: var(--orange);
  padding: 7px 18px; border-radius: 100px;
}
.founder-hero h2 {
  color: rgba(255, 255, 255, .68); font-size: clamp(17px, 1.6vw, 20px); font-weight: 600;
  margin-bottom: 16px; text-wrap: balance;
}
.founder-hero__quote {
  color: #fff; font-size: clamp(28px, 3.6vw, 42px); font-weight: 700;
  line-height: 1.22; letter-spacing: -.01em; margin-bottom: 36px; text-wrap: balance;
}
.founder-hero__sign {
  display: flex; flex-direction: column; gap: 3px;
  padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .22); max-width: 320px;
}
.founder-hero__sign b { color: #fff; font-size: 16px; }
.founder-hero__sign span { font-size: 13.5px; color: rgba(255, 255, 255, .62); }

/* Depoimentos -------------------------------------------------------------- */
.google-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  border-radius: 100px; padding: 10px 24px 10px 14px; margin-top: 22px;
}
.google-badge img, .google-badge svg.g { width: 26px; height: 26px; }
.google-badge .score { font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1; }
.google-badge .stars { display: flex; gap: 1px; }
.google-badge .stars svg { width: 15px; height: 15px; fill: #FFB400; }
.google-badge .meta { font-size: 12px; color: var(--text-light); }

/* Esteira de depoimentos: com 58 avaliações no Google, grade fixa mostraria
   três. Duas faixas rolando em sentidos opostos cabem muito mais no mesmo
   espaço vertical. */
.reviews-rail { overflow: hidden; position: relative; padding: 6px 0; }
.reviews-rail + .reviews-rail { margin-top: 20px; }
.reviews-rail::before, .reviews-rail::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 2; pointer-events: none;
}
.reviews-rail::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.reviews-rail::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }

/* Margem por cartão em vez de gap: com gap, o translateX(-50%) do loop fica
   meio espaçamento fora e a emenda salta a cada volta. */
.reviews-rail__track {
  display: flex; align-items: stretch; width: max-content;
  animation: slide 68s linear infinite;
}
.reviews-rail--reverse .reviews-rail__track { animation-direction: reverse; animation-duration: 76s; }
.reviews-rail:hover .reviews-rail__track { animation-play-state: paused; }

.review {
  flex-shrink: 0; width: 372px; margin-right: 20px;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

@media (prefers-reduced-motion: reduce) {
  .reviews-rail { overflow-x: auto; }
  .reviews-rail__track { animation: none; }
  .reviews-rail::before, .reviews-rail::after { display: none; }
}
.review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 16px;
  background: var(--blue);
}
.review__name { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.review__date { font-size: 12.5px; color: var(--text-light); }
.review__badge {
  margin-left: auto; font-size: 11px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-light); padding: 4px 9px; border-radius: 6px;
  white-space: nowrap;
}
/* Avaliação de poucos dias atrás vale destacar: mostra operação ativa. */
.review__badge--novo { color: var(--orange-dark); background: rgba(247, 148, 29, .14); }
.review__stars { display: flex; gap: 1px; margin-bottom: 10px; }
.review__stars svg { width: 15px; height: 15px; fill: #FFB400; }
/* Corta em 6 linhas para as fileiras ficarem parelhas. O texto completo
   segue no HTML, isso é só o recorte visual, igual ao "Mais" do Google. */
.review p {
  font-size: 14.5px; line-height: 1.6;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6;
  overflow: hidden;
}

/* Galeria de entregas -------------------------------------------------------
   Mosaico em colunas (não grade uniforme): as fotos são reais, vieram de
   celular em orientações e proporções bem diferentes entre si. Recortar tudo
   pro mesmo formato ia tirar a autenticidade que é o ponto da seção. */
.gallery { column-count: 4; column-gap: 18px; margin-top: 8px; }
.gallery__item {
  display: block; width: 100%; margin: 0 0 18px; padding: 0; break-inside: avoid;
  border: 0; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in;
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease;
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery__item img { width: 100%; height: auto; transition: transform .3s ease; }
.gallery__item:hover img { transform: scale(1.04); }

@media (max-width: 1024px) { .gallery { column-count: 3; } }
@media (max-width: 720px) { .gallery { column-count: 2; column-gap: 12px; } .gallery__item { margin-bottom: 12px; } }
@media (max-width: 420px) { .gallery { column-count: 1; } }

/* Lightbox ------------------------------------------------------------------
   Um único overlay reaproveitado pra qualquer foto da galeria, em vez de um
   por imagem: mais leve e mais simples de manter. */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 32px;
  background: rgba(6, 16, 30, .92);
}
.lightbox.is-open { display: flex; }
body.lightbox-aberto { overflow: hidden; }
.lightbox__img {
  max-width: 100%; max-height: 100%; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.lightbox__close {
  position: absolute; top: 24px; right: 24px; width: 46px; height: 46px;
  border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff;
  display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .2);
  transition: background .2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .2); }
.lightbox__close svg { width: 20px; height: 20px; }

/* Marquee de logos --------------------------------------------------------- */
/* Fundo de rotas: globo em wireframe + linhas pontilhadas atrás da seção de
   cias aéreas. Opacidade bem baixa de propósito, é textura, não desenho. */
/* Navy também aqui: era a seção mais branca do site, um globo quase
   invisível sobre fundo claro. Mesmo tom das outras faixas de cor, com o
   globo e as rotas agora em branco/laranja, bem mais presentes. */
.section--map { position: relative; overflow: hidden; background: var(--navy); }
.section--map__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  color: #fff; opacity: .12; pointer-events: none;
}
.section--map > .container,
.section--map > .marquee { position: relative; z-index: 1; }
.section--map .eyebrow { color: var(--navy); background: var(--orange); }
.section--map .section-head h2 { color: #fff; }
.section--map .section-head p { color: rgba(255, 255, 255, .68); }
.section--map .marquee--white::before { background: linear-gradient(90deg, var(--navy), transparent); }
.section--map .marquee--white::after { background: linear-gradient(270deg, var(--navy), transparent); }

.marquee { overflow: hidden; position: relative; padding: 8px 0; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee--white::before { background: linear-gradient(90deg, #fff, transparent); }
.marquee--white::after { background: linear-gradient(270deg, #fff, transparent); }

.marquee__track { display: flex; width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 50s; }
@keyframes slide { to { transform: translateX(-50%); } }

/* Cartão branco por logo: as marcas dos clientes chegam com fundos diferentes
   (branco, preto, vermelho, amarelo) e o cartão é o que faz todas conviverem
   na mesma faixa. Cor mantida de propósito, Toyota e Gucci na lista são
   argumento de credibilidade e em escala de cinza isso se perde. */
.marquee__item {
  flex-shrink: 0; width: 168px; height: 96px; margin: 0 9px;
  display: grid; place-items: center; padding: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
/* Teto de altura igual à área interna do cartão (96 menos os 14 de padding
   dos dois lados). Assim a logo quadrada cresce até encher a altura e a
   deitada até encher a largura. Antes o teto era 54px fixo, bem abaixo do
   espaço disponível, e as quadradas (Unimed, Tedesco) saíam bem menores que
   as horizontais.
   Em px e não em %: dentro do grid a porcentagem não resolve e a imagem
   vazava para fora do cartão. */
.marquee__item img {
  max-height: 68px; max-width: 100%;
  width: auto; height: auto; object-fit: contain;
}
.marquee__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* FAQ ---------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item.is-open { border-color: var(--blue); box-shadow: var(--shadow); }
.faq__q {
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 16px; font-weight: 600; color: var(--navy);
}
.faq__icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--blue-light);
  display: grid; place-items: center; flex-shrink: 0; transition: background .2s ease, transform .25s ease;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--blue); border-radius: 2px; transition: opacity .2s ease, background .2s ease;
}
.faq__icon::before { width: 11px; height: 2px; }
.faq__icon::after { width: 2px; height: 11px; }
.faq__item.is-open .faq__icon { background: var(--blue); }
.faq__item.is-open .faq__icon::before { background: #fff; }
.faq__item.is-open .faq__icon::after { opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq__a-corpo { padding: 0 24px 24px; }
.faq__a p { font-size: 15px; }
.faq__a p + p { margin-top: 12px; }

/* Resposta com lista: usada onde comparar opções lado a lado explica melhor
   que um parágrafo corrido. */
.faq__lista { margin-top: 14px; display: grid; gap: 10px; }
.faq__lista li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.55;
}
.faq__lista li::before {
  content: ''; flex-shrink: 0; margin-top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.faq__lista b { color: var(--navy); }

.faq__nota {
  margin-top: 16px; padding: 13px 16px;
  background: var(--blue-light); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--navy);
}
.faq__nota a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* CTA final ---------------------------------------------------------------- */
.cta {
  background: var(--navy);
  background-image: radial-gradient(circle at 12% 20%, rgba(27,95,191,.35), transparent 45%),
                    radial-gradient(circle at 88% 80%, rgba(247,148,29,.20), transparent 45%);
  padding: 88px 0; text-align: center;
}
.cta h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,.72); font-size: 17px; max-width: 560px; margin: 0 auto 34px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Footer ------------------------------------------------------------------- */
.footer { background: #0B2039; color: rgba(255,255,255,.62); padding: 64px 0 0; font-size: 14.5px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: 0; }
.footer__logo img { height: 46px; margin-bottom: 20px; }
.footer__about { max-width: 300px; line-height: 1.7; }
.footer ul li { margin-bottom: 11px; }
.footer a { transition: color .2s ease; }
.footer a:hover { color: var(--orange); }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; stroke: var(--orange); flex-shrink: 0; margin-top: 4px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.07);
  display: grid; place-items: center; transition: background .2s ease, transform .2s ease;
}
.footer__social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; fill: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.45);
}

/* WhatsApp flutuante + topo ------------------------------------------------ */
/* Halo escuro em volta do círculo verde, como no botão que o Édi mandou. */
.float-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--green);
  display: grid; place-items: center;
  box-shadow: 0 0 0 8px rgba(15, 42, 74, .16), 0 8px 24px rgba(37, 211, 102, .42);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-wa:hover {
  transform: scale(1.07);
  box-shadow: 0 0 0 11px rgba(15, 42, 74, .2), 0 10px 30px rgba(37, 211, 102, .5);
}
.float-wa svg { width: 31px; height: 31px; fill: #fff; }
.float-wa::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: waPing 2.8s ease-out infinite;
}
@keyframes waPing {
  0% { transform: scale(.85); opacity: .8; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .float-wa::after { animation: none; opacity: 0; } }

/* bottom calculado para sobrar folga real do botão do WhatsApp (58 + 24 de
   base), senão os dois alvos ficam colados e o polegar erra. */
.to-top {
  position: fixed; right: 24px; bottom: 98px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%; background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 19px; height: 19px; stroke: var(--navy); }

/* Reveal ------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   Toque
   ==========================================================================
   Auditoria de mobile acusou vários links com menos de 44px de altura, que é
   o mínimo para o dedo acertar sem erro. Onde dava, o alvo cresceu por dentro
   (padding) sem mexer no espaçamento visual.
   ========================================================================== */
@media (hover: none), (max-width: 860px) {
  .service__link { padding: 11px 0; margin-bottom: -11px; }

  .header__logo { display: inline-flex; align-items: center; padding: 6px 0; }

  .footer ul li { margin-bottom: 2px; }
  .footer ul li a,
  .footer__contact li > a { display: inline-block; padding: 11px 0; }
  .footer__contact li { align-items: center; }
  .footer__contact svg { margin-top: 0; }

  .footer__social a { width: 46px; height: 46px; }

  .faq__nota a { display: inline-block; padding: 11px 0; }

  /* Rótulos secundários: 12,5px passa no desktop, mas em tela de toque fica
     no limite do desconforto. */
  .review__date { font-size: 13px; }
  .modal-hero__eyebrow { font-size: 13px; letter-spacing: .1em; }
  .hero__float span { font-size: 13px; }
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__slides { height: 400px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .timeline::before { display: none; }
  .review { width: 330px; }
  .modal-hero-carousel { height: clamp(500px, 84vh, 640px); }
  .modal-hero--aereo { background-position: center 30%; }
  .modal-hero--maritimo { background-position: center 30%; }
  .modal-hero__inner { padding-top: 90px; padding-bottom: 56px; }
  .modal-hero__stats { gap: 30px; }
  .founder-hero { padding: 56px 20px; }
  .founder-hero__card { min-height: 500px; }
  .founder-hero__photo { width: 64%; object-position: center 36%; }
  .founder-hero__inner { padding: 44px 40px; max-width: 34%; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 auto; top: 0; padding: 96px 24px 32px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; box-shadow: var(--shadow-lg);
    transform: translateY(-110%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
  .nav a::after { display: none; }
  .nav__cta { display: flex; margin-top: 22px; }
  .nav__cta .btn { width: 100%; }
  .burger { display: flex; }

  body.nav-aberto { overflow: hidden; }

  /* Quatro números em 768px davam 192px por célula e a descrição quebrava em
     quatro linhas. Em duas colunas cada um respira. */
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .stat + .stat::before { display: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--border); }
  .header__cta .btn { display: none; }
  .header { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--border); }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero { padding: 120px 0 56px; }
  .hero__text { font-size: 16.5px; }
  .hero__actions .btn { width: 100%; }
  .hero__slides { height: 300px; border-radius: 20px; }
  .hero__float { padding: 11px 18px 11px 15px; }
  .hero__float b { font-size: 13.5px; }
  .hero__float span { font-size: 12px; }
  .stats { padding-bottom: 60px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }
  .stat { border-top: 1px solid var(--border); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--border); }
  .services__grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .review { width: 300px; }
  .reviews-rail::before, .reviews-rail::after { width: 48px; }

  /* Tela estreita não tem espaço pra dividir foto e texto lado a lado, e o
     cartão centralizado também sai de cena: a foto volta a ocupar a seção
     inteira, ponta a ponta, como as de modal fazem no mobile. */
  .founder-hero { padding: 0; background: none; }
  .founder-hero__card {
    max-width: none; margin: 0; border-radius: 0; box-shadow: none; min-height: 500px; max-height: none;
  }
  .founder-hero__photo { position: absolute; inset: 0; width: 100%; right: auto; object-position: 65% 12%; }
  .founder-hero__scrim {
    background:
      linear-gradient(0deg, rgba(6, 16, 30, .92) 0%, rgba(6, 16, 30, .5) 55%, rgba(6, 16, 30, .18) 80%, transparent 100%);
  }
  .founder-hero__inner { padding: 56px 24px 36px; max-width: none; }
  .founder-hero__quote { font-size: clamp(20px, 5vw, 24px); margin-bottom: 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cta__actions .btn { width: 100%; }

  .modal-hero--aereo { background-position: 62% center; }
  .modal-hero--maritimo { background-position: 58% center; }
  .modal-hero__inner { padding-top: 28px; padding-bottom: 32px; }
  .modal-hero__inner p { font-size: 15.5px; }
  .modal-hero__stats { gap: 18px 28px; margin-bottom: 28px; }
  .modal-hero .btn { width: 100%; }

  /* No celular a aba flutuando por cima do texto ficava sobrepondo o título
     em telas mais curtas (o texto some por baixo do nome do modal). Solução:
     as abas saem do overlay e viram uma barra própria, embaixo do outro em
     vez de em cima, com a foto/mapa ocupando o resto da altura. As setas
     somem de vez: quem passa o slide no touch é o dedo, arrastando. */
  .modal-hero-carousel {
    display: flex; flex-direction: column;
    height: clamp(600px, 92vh, 780px);
  }
  .modal-hero-carousel__arrow { display: none; }
  .modal-hero-carousel__dots {
    position: static; order: -1; flex: 0 0 auto;
    display: flex; justify-content: center; gap: 22px;
    background: var(--navy); margin: 0; padding: 16px 16px 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .modal-hero-carousel__dots button { font-size: 11px; padding: 9px 2px 8px; }
  .modal-hero-carousel__viewport { flex: 1 1 auto; min-height: 0; height: auto; }
}

/* Telas estreitas (iPhone SE, Galaxy A pequeno) ---------------------------- */
@media (max-width: 400px) {
  .container { padding: 0 18px; }

  /* O cartão de 300px ficava mais largo que a área visível da esteira e
     nascia cortado nos dois lados. */
  .review { width: 262px; margin-right: 14px; }
  .review p { -webkit-line-clamp: 8; }
  .reviews-rail::before, .reviews-rail::after { width: 28px; }

  .hero { padding: 112px 0 48px; }
  .hero__slides { height: 240px; }
  .hero__proof-stars svg { width: 15px; height: 15px; }

  .stat { padding: 26px 14px; }
  .stat__desc { font-size: 13px; }

  .service { padding: 26px 20px; }

  .faq__q { padding: 17px 16px; font-size: 15px; }
  .faq__a-corpo { padding: 0 16px 20px; }

  .marquee__item { width: 146px; height: 86px; margin: 0 7px; padding: 12px; }
  .marquee__item img { max-height: 62px; }

  .founder-hero__card { min-height: 440px; }
  .founder-hero__inner { padding: 44px 20px 30px; }

  .float-wa { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .to-top { right: 21px; bottom: 86px; }
}
