/* ═══════════════════════════════════════════════════════════
   CONEXLOG — Stylesheet v7
   Fontes: Montserrat (corpo) · Poppins (títulos)
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy:          #041e42;
  --navy-mid:      #0b3e7d;
  --navy-soft:     #091653;
  --navy-cta:      #00479f;
  --yellow:        #ffd227;
  --yellow-deep:   #f2be45;
  --yellow-light:  #fff9c4;
  --yellow-gradient: linear-gradient(90deg, #f9e550 0%, #f2be45 100%);
  --ink:           #0a1f44;
  --muted:         #5c6b86;
  --white:         #ffffff;
  --line:          #e3e8f2;
  --radius-btn:    15px;
}

*, *::before, *::after { box-sizing: border-box; }

/* overflow-x: clip no html bloqueia scroll horizontal sem afetar sticky */

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@keyframes page-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  margin: 0;
  font-family: 'DM Sans', 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  animation: page-fadein .5s ease-in-out both;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: 'DM Sans', 'Roboto', sans-serif;
}

img { max-width: 100%; height: auto; }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── PRELOAD ────────────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════
   SITE PRELOAD
   ═══════════════════════════════════════════════════════ */

.site-preload {
  --site-preload-scroll: 196vh;
  position: relative;
  z-index: 60;
  height: var(--site-preload-scroll);
  pointer-events: none;
}

.site-preload__sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: var(--navy);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 48px;
  touch-action: none; /* bloqueia scroll nativo no mobile */
  z-index: 400;
}

.site-preload__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.site-preload__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(4 30 66/.15) 0%, rgb(4 30 66/.55) 55%, rgb(4 30 66/.85) 100%);
  pointer-events: none;
}

.site-preload__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--yellow);
  box-shadow: 0 0 10px rgb(255 234 0/.7);
  z-index: 3;
  transition: width .1s linear;
}

.site-preload__hint {
  position: relative;
  z-index: 2;
  margin: 0 0 96px;
  padding: 0 24px;
  text-align: center;
  font-family: 'Oswald', 'DM Sans', sans-serif;
  font-size: clamp(2.16rem, 6.8vw, 6rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.08;
  color: #ffffff;
  max-width: 90vw;
  text-shadow:
    0 0 40px rgb(255 255 255 / .2),
    0 4px 32px rgb(0 0 0 / .75);
  opacity: 0;
  transform: translateY(24px) scale(.97);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
@media (pointer: coarse) {
  .site-preload__hint { font-size: clamp(2.025rem, 8.25vw, 3rem); }
}

.site-preload__skip {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding: 10px 20px;
  border: 1px solid rgb(255 255 255/.35);
  border-radius: 999px;
  background: rgb(0 0 0/.25);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.site-preload__skip:hover { background: rgb(0 0 0/.4); border-color: rgb(255 255 255/.55); }
.site-preload__skip:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.preload-cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -120%);
  opacity: 0;
  transition: opacity .25s ease;
  white-space: nowrap;
}
.preload-cursor span {
  display: block;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgb(0 0 0 / .5);
}
.preload-cursor.is-visible { opacity: 1; }
body.is-preload-ended .preload-cursor,
body.is-preload-bypassed .preload-cursor { display: none; }

/* Hint de swipe — só aparece no mobile */
.site-preload__swipe-hint {
  display: none;
}
@media (pointer: coarse) {
  .site-preload__swipe-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
  }
  .site-preload__swipe-hint.is-visible {
    animation: swipe-hint-pulse 2s ease-in-out infinite;
  }
  .site-preload__swipe-hint svg {
    width: 2rem;
    height: 2rem;
    opacity: .9;
    animation: swipe-bounce 1.4s ease-in-out infinite;
  }
  .site-preload__swipe-hint span {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgb(0 0 0/.7);
  }
  body.is-preload-ended .site-preload__swipe-hint,
  body.is-preload-bypassed .site-preload__swipe-hint { display: none; }
}
@keyframes swipe-hint-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}
@keyframes swipe-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Reveal — site aparece suavemente após o preload */
body:not(.is-preload-ended):not(.is-preload-bypassed) .prebar,
body:not(.is-preload-ended):not(.is-preload-bypassed) .site-header,
body:not(.is-preload-ended):not(.is-preload-bypassed) main {
  opacity: 0;
  transform: translateY(28px);
}

body.is-preload-ended .prebar,
body.is-preload-ended .site-header,
body.is-preload-ended main {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
body.is-preload-ended .site-header { transition-delay: .08s; }
body.is-preload-ended main         { transition-delay: .18s; }

body.is-preload-ended .site-preload__sticky {
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

body.is-preload-bypassed .prebar,
body.is-preload-bypassed .site-header,
body.is-preload-bypassed main { opacity: 1; transform: none; transition: none; }

.site-preload--bypassed {
  height: 0!important; min-height: 0!important; margin: 0!important;
  padding: 0!important; overflow: hidden!important; border: 0!important;
}
.site-preload--bypassed .site-preload__sticky { visibility: hidden; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .site-preload { display: none; height: 0!important; min-height: 0!important; overflow: hidden!important; }
}

/* ── PRELOAD GATE (tela de carregamento dos frames) ───────────────────── */
.preload-gate {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--navy, #041e42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  /* saída suave quando .is-done é adicionado */
  opacity: 1;
  transition: opacity .7s cubic-bezier(0.4, 0, 0.2, 1),
              visibility .7s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: visible;
  pointer-events: auto;
}

.preload-gate.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preload-gate__logo {
  width: clamp(140px, 40vw, 220px);
  height: auto;
  opacity: .9;
  animation: gate-logo-pulse 1.8s ease-in-out infinite;
}

@keyframes gate-logo-pulse {
  0%, 100% { opacity: .9; }
  50%       { opacity: .35; }
}

.preload-gate__bar-wrap {
  width: min(320px, 72vw);
  height: 3px;
  background: rgb(255 255 255 / .15);
  border-radius: 999px;
  overflow: hidden;
}

.preload-gate__bar {
  height: 100%;
  width: 0%;
  background: var(--yellow, #ffea00);
  box-shadow: 0 0 10px rgb(255 234 0 / .7);
  border-radius: 999px;
  transition: width .15s linear;
  /* Animação CSS começa imediatamente, antes mesmo do JS carregar */
  animation: gate-bar-css 3s cubic-bezier(0.25, 0.1, 0.1, 1) forwards;
}

@keyframes gate-bar-css {
  from { width: 0%; }
  to   { width: 65%; }
}

.preload-gate__pct {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgb(255 255 255 / .5);
  margin-top: -.8rem;
}

/* quando o site-preload é bypassed, o gate também some */
.site-preload--bypassed .preload-gate { display: none; }

/* ── PREBAR ─────────────────────────────────────────────────────────────── */
.prebar {
  background: var(--yellow);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
}

.prebar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 8px;
}

.prebar__left { white-space: nowrap; }

.prebar__right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .92;
}
.prebar__right a { color: inherit; text-decoration: none; font-weight: 600; }
.prebar__right a:hover { text-decoration: underline; }
.prebar__sep { opacity: .45; font-weight: 500; }

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgb(255 255 255/.70);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 124px;
  transition: min-height .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .site-header__row { min-height: 90px; }
.site-header.is-scrolled .site-header__logo { width: min(150px, 36vw); }
.site-header { transition: box-shadow .35s ease; }
.site-header.is-scrolled { box-shadow: 0 2px 16px rgb(4 30 66 / .1); }

.site-header__brand { display: inline-flex; align-items: center; }
.site-header__logo { display: block; width: min(200px, 48vw); height: auto; }

.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a {
  text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: .92rem;
}
.site-nav a:hover { color: var(--navy-mid); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle__bar { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-toggle__bar + .nav-toggle__bar { margin-top: 5px; }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  border: 0;
  border-radius: var(--radius-btn);
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  background: var(--yellow-gradient);
  color: var(--ink);
  width: auto;
  white-space: nowrap;
  transition: filter .3s ease, transform .2s ease;
}
.btn:hover  { filter: brightness(.96); }
.btn:active { transform: translateY(1px); }

.btn--header { padding-inline: 16px; font-size: .88rem; }
.btn--hero   { margin-top: 24px; font-size: 1rem; align-self: flex-start; }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(80vh, 720px);
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow-x: clip;
}

/* Slideshow do hero — imagens definidas no HTML como <img class="hero__slide"> */
.hero__bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 2.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }

.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgb(4 30 66/.9) 20%, rgb(4 30 66/.35) 100%);
}

.hero__body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; flex: 1;
}

.hero__content {
  flex: 1;
  padding-block: 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Stats: flutua meio-a-meio entre hero e próxima seção */
.hero__stats {
  position: relative;
  z-index: 10;
  padding: 0;
  margin-bottom: -54px;
}

.hero__stats .container {
  display: flex;
  justify-content: center;
}

.hero__title {
  margin: 0 0 16px;
  max-width: 540px;
  font-size: clamp(2.04rem, 4.675vw, 4.25rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: .04em;
  text-shadow: 0 4px 60px rgb(0 0 0/.8);
  /* Transition sempre presente: reage quando o seletor :not para de valer */
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1) .5s,
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) .5s;
}

/* Estado inicial: oculto enquanto o preloader está ativo */
body:not(.is-preload-ended):not(.is-preload-bypassed) .hero__title {
  opacity: 0;
  transform: translateY(22px);
}

/* Bypass: aparece imediatamente sem transição */
body.is-preload-bypassed .hero__title {
  transition: none;
}

.hero__highlight { color: var(--yellow); font-weight: 800; }

.hero__subtitle {
  margin: 0;
  max-width: 480px;
  font-size: clamp(.88rem, 1.3vw, .98rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgb(255 255 255/.86);
}

/* Stats bar — flutua entre hero e expertise */
.hero__stats-row {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgb(4 20 55 / .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgb(255 255 255 / .16);
  border-radius: 24px;
  box-shadow:
    0 24px 60px rgb(0 0 0 / .45),
    inset 0 1px 0 rgb(255 255 255 / .1);
  overflow: hidden;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 68px;
  gap: 8px;
  border-right: 1px solid rgb(255 255 255 / .08);
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__stat.is-visible {
  opacity: 1;
  transform: none;
}
.hero__stat:nth-child(2) { transition-delay: 0.22s; }
.hero__stat:nth-child(3) { transition-delay: 0.44s; }
.hero__stat:nth-child(4) { transition-delay: 0.66s; }

.hero__stat::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 3px;
  background: var(--brand-gradient);
  border-radius: 0 0 3px 3px;
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: 'DM Sans', 'Roboto', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: rgb(255 255 255 / .9);
  line-height: 1;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.hero__stat-label {
  font-size: .6rem;
  font-weight: 600;
  color: rgb(255 255 255 / .45);
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.5;
  white-space: nowrap;
}

/* expertise removed */

/* ── CARDS SLIDER ───────────────────────────────────────────────────────── */
.cards-showcase {
  padding: 0 0 48px;
  background: linear-gradient(180deg, #020a18 0%, var(--navy) 18%);
  color: var(--white);
}

.cards-slider {
  display: grid;
  grid-template-columns: 36px minmax(0,1fr) 36px;
  gap: 12px;
  align-items: center;
  padding-top: 28px;
}

.cards-slider__nav {
  border: 1px solid #7eb8ff;
  background: rgb(11 61 122/.55);
  color: #eaf3ff;
  width: 36px; height: 36px;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.cards-slider__nav:hover { background: rgb(11 61 122/.85); }

.cards-slider__track {
  display: flex;
  gap: 8px;
  height: 276px;
}

.transport-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
  min-width: 44px;
  border-radius: 16px;
  border: 1px solid #6ab0ff;
  cursor: pointer;
  transition: flex-grow .45s cubic-bezier(.05,.61,.41,.95), border-radius .45s, transform .2s;
  background: var(--card-bg), linear-gradient(120deg, #123f7a, #426fa2);
  background-size: cover;
  background-position: center;
}
.transport-card.is-active { flex: 8 1 0; }

.transport-card__shadow {
  position: absolute; inset: auto 0 0 0;
  height: 130px;
  background: linear-gradient(180deg, #0000 0%, #000d 100%);
}

.transport-card__label {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  display: flex;
  flex-direction: column-reverse; /* texto acima, dot abaixo */
  align-items: flex-start;
  gap: 8px;
}

.transport-card__dot {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--yellow);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.transport-card__dot svg,
.transport-card__dot i {
  width: 15px; height: 15px;
  stroke: var(--navy);
  flex-shrink: 0;
  display: block;
}

.transport-card__info strong {
  display: block;
  color: #fff;
  font-family: 'DM Sans', 'Roboto', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.1;
  white-space: nowrap;
  transition: opacity .35s ease, transform .35s ease;
}

.transport-card:not(.is-active) .transport-card__info strong {
  opacity: 0;
  transform: translateY(8px);
}

/* CTA abaixo do slider — alinhado ao centro, largura automática */
.cards-showcase__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* ── URGENCY ────────────────────────────────────────────────────────────── */
.urgency {
  padding: 72px 0 64px;
  background: radial-gradient(1200px 500px at 20% 0%, #0c4a9a 0%, var(--navy) 55%);
  color: var(--white);
}

.urgency { text-align: center; }

.urgency h2 {
  margin: 0 auto 12px;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  max-width: 820px;
  text-align: center;
}
.urgency h2 strong { color: var(--yellow); }
.urgency__lead { margin: 0 auto 16px; max-width: 720px; color: #c9d9f5; text-align: center; }

/* urgency container centralizado; tabs__panel-cta alinhado à direita */
.urgency > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* text-link (conversar com especialista) permanece centralizado — herda align-items: center */
.urgency > .container > .text-link {
  align-self: center;
}


/* ── TABS ───────────────────────────────────────────────────────────────── */
.tabs { margin-top: 36px; }

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tabs__btn {
  display: inline-flex; align-items: center;
  border-radius: 8px;
  border: 1px solid rgb(255 255 255/.25);
  background: rgb(4 30 66/.45);
  color: var(--white);
  font: inherit; font-weight: 600; font-size: .9rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.tabs__btn:hover:not(.is-active) { background: rgb(255 255 255/.08); border-color: rgb(255 255 255/.4); }
.tabs__btn.is-active { background: var(--navy-cta); border-color: var(--yellow); color: var(--white); }

.tabs__panels {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid var(--yellow);
  background: rgb(0 0 0/.18);
  padding: 24px;
}

.tabs__panel { color: #e8eefc; display: flex; flex-direction: column; width: 820px; max-width: 100%; }
.tabs__panel[hidden] { display: none; }
.tabs__panel.is-active { display: flex; flex-direction: column; }

.tabs__panel-layout {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
}

.tabs__panel-icon { display: flex; align-items: center; justify-content: center; }
.tabs__panel-icon img { width: 100%; height: auto; max-width: 120px; object-fit: contain; }
.tabs__panel-icon i, .tabs__panel-icon svg { font-size: 96px; width: 96px; height: 96px; }

.tabs__panel-content p { margin: 0 0 10px; line-height: 1.55; }
.tabs__panel-content p:last-child { margin-bottom: 0; }
.tabs__panel-label { color: var(--yellow); font-weight: 700; font-size: .95rem; margin-bottom: 2px!important; }

.tabs__panel-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 12px;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--navy-cta);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: .76rem;
  transition: background .2s;
  white-space: nowrap;
}
.tabs__panel-cta:hover { background: var(--navy-mid); }

/* ── PARTNERS ───────────────────────────────────────────────────────────── */
.partners {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
  align-items: center;
  justify-content: center;
}
.partners img {
  height: 64px; width: auto; max-width: 180px;
  object-fit: contain; opacity: .9;
  transition: opacity .2s;
  filter: brightness(0) invert(1);
}
.partners img:hover { opacity: 1; }

/* ── CASES ──────────────────────────────────────────────────────────────── */
.cases { padding: 64px 0 56px; background: var(--white); }

.cases__layout {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  margin-bottom: 40px;
}
.cases__heading h2 { margin: 0; color: var(--navy); font-size: clamp(1.7rem, 2.8vw, 2.2rem); line-height: 1.1; }

.cases__cards { display: flex; flex-direction: column; gap: 16px; }

.case-card {
  background: var(--yellow);
  color: var(--ink);
  border-radius: 16px;
  padding: 22px 24px 28px;
  position: relative;
  box-shadow: 0 8px 28px rgb(4 30 66/.08);
}
.case-card__tag { margin: 0 0 6px; font-size: .9rem; font-weight: 800; color: var(--navy); }
.case-card p { margin: 0 0 .5em; color: var(--ink); font-size: .92rem; line-height: 1.55; }
.case-card p:last-child { margin-bottom: 0; }
.case-card__plus {
  position: absolute; bottom: 14px; right: 18px;
  font-size: 1.4rem; font-weight: 300; line-height: 1;
  color: rgb(0 0 0/.45);
  background: none; border: none; padding: 4px 8px;
  cursor: pointer; border-radius: 50%;
  transition: color .2s, background .2s;
}
.case-card__plus:hover { color: var(--navy); background: rgb(0 0 0/.08); }

/* ── Modal de cases ─────────────────────────────────────────────────────── */
.case-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.case-modal[hidden] { display: none; }
.case-modal__backdrop { position: absolute; inset: 0; background: rgb(4 30 66 / .55); backdrop-filter: blur(4px); cursor: pointer; }
.case-modal__panel {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 16px;
  padding: 40px; width: min(520px, 92vw);
  box-shadow: 0 24px 64px rgb(4 30 66 / .22);
  animation: modal-in .3s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.case-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.1rem;
  color: var(--muted); cursor: pointer; padding: 6px 10px;
  border-radius: 8px; transition: background .2s, color .2s;
}
.case-modal__close:hover { background: var(--line); color: var(--ink); }
.case-modal__label { display: inline-block; margin-bottom: 10px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--navy-mid); }
.case-modal__title { margin: 0 0 16px; font-size: 1.3rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
.case-modal__body p { margin: 0 0 .75em; color: var(--ink); line-height: 1.6; }
.case-modal__body p:last-child { margin-bottom: 0; }
.case-modal__cta { margin-top: 24px; align-self: flex-start; }

.quote-slider { margin: 40px 0 0; overflow: hidden; }
.quote-slider__track {
  display: flex;
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.quote-slider__track .quote {
  min-width: 100%; margin: 0;
  padding-left: 28px;
  border-left: 3px solid var(--navy);
  box-sizing: border-box;
}
.quote-slider__controls {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px;
}
.quote-slider__btn {
  background: none; border: 1px solid var(--line);
  border-radius: 50%; width: 36px; height: 36px;
  cursor: pointer; font-size: 1rem; color: var(--navy);
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.quote-slider__btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.quote-slider__dots { display: flex; gap: 8px; }
.quote-slider__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); border: none; padding: 0; cursor: pointer;
  transition: background .2s, transform .2s;
}
.quote-slider__dot.is-active { background: var(--navy); transform: scale(1.25); }

.quote {
  margin: 40px 0 0; padding-left: 28px;
  border-left: 3px solid var(--navy);
  max-width: 860px;
}
.quote blockquote { margin: 0 0 20px; font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 500; color: #2a6abd; line-height: 1.55; }
.quote figcaption { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .92rem; }
.quote__avatar { width: 56px; height: 56px; min-width: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--white); box-shadow: 0 6px 20px rgb(4 30 66/.15); flex-shrink: 0; }
.quote figcaption strong { display: block; color: var(--ink); }

/* ── CTA BAND ───────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
  color: var(--white);
}
.cta-band__inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.cta-band p {
  margin: 0;
  max-width: 820px;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .02em;
  background: linear-gradient(90deg, #ffffff 0%, #ffe89a 55%, #f2a215 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── TRUST / CERTIFICAÇÕES ──────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-mid);
}
.section-label--light { color: var(--yellow); }

.about-trust {
  padding: 56px 0 48px;
  background: var(--white);
}

/* Separador visual entre seções */
.section-sep {
  width: min(1120px, 92%);
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--line);
}

.about-trust__header {
  text-align: center;
  margin-bottom: 48px;
}
.about-trust__header h2 {
  margin: 8px 0 0;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy);
  max-width: 640px;
  margin-inline: auto;
}

.about-trust__badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 8px;
}

.about-trust__badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  min-width: 120px;
  transition: transform .35s ease;
}
.about-trust__badge-item:hover { transform: translateY(-4px); }

.about-trust__badge-item img {
  height: 76px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: .88;
  transition: opacity .25s ease;
}
.about-trust__badge-item:hover img { opacity: 1; }

.about-trust__badge-item span {
  font-size: .702rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .about-trust__badges { gap: 8px; justify-content: center; flex-wrap: nowrap; overflow-x: visible; }
  .about-trust__badge-item { min-width: 0; flex: 1 1 0; }
  .about-trust__badge-item img { height: 44px; max-width: 100%; }
  .about-trust__badge-item span { font-size: .54rem; }
}

/* ── TIMELINE ───────────────────────────────────────────────────────────── */
.timeline {
  padding: 80px 0 88px;
  background: linear-gradient(180deg, #f4f6fb 0%, var(--white) 100%);
  overflow: hidden;
}

.timeline__header {
  text-align: center;
  margin-bottom: 68px;
}
.timeline__header h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.timeline__header h2 span { color: var(--navy-mid); }
.timeline__header p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Delay escalonado por step */
.timeline__step:nth-child(1) { --d: 0.05s; }
.timeline__step:nth-child(2) { --d: 0.22s; }
.timeline__step:nth-child(3) { --d: 0.39s; }
.timeline__step:nth-child(4) { --d: 0.56s; }
.timeline__step:nth-child(5) { --d: 0.73s; }
.timeline__step:nth-child(6) { --d: 0.90s; }
.timeline__step:nth-child(7) { --d: 1.07s; }

/* Grid */
.timeline__steps {
  list-style: none;
  margin: 0 0 52px;
  padding: 52px 0 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
}

/* ── Linha dotted base (estática, fade-in) ─── */
.timeline__steps::before {
  content: '';
  position: absolute;
  top: 8px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 0;
  border-top: 3px dotted rgba(242, 162, 21, 0.45);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.timeline__steps.is-animated::before { opacity: 1; }

/* ── Cometa viajando da esquerda para a direita ─── */
.timeline__steps.is-animated::after {
  content: '';
  position: absolute;
  top: 3px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg,
    transparent       0%,
    transparent      35%,
    rgba(249,229,80,.55) 43%,
    rgba(255,255,255,1)  50%,
    rgba(249,229,80,.55) 57%,
    transparent      65%,
    transparent     100%
  );
  background-size: 200% 100%;
  animation: cometH 3.2s linear infinite;
  filter: blur(1.5px);
  pointer-events: none;
  z-index: 4;
}

@keyframes cometH {
  0%   { background-position: 150% 0; }
  100% { background-position:  -50% 0; }
}

/* Step */
.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .5s ease,
    transform .5s ease;
  transition-delay: var(--d, 0s);
}
.timeline__steps.is-animated .timeline__step {
  opacity: 1;
  transform: none;
}

/* ── Ponto sobre a linha ─── */
.timeline__step-dot {
  position: absolute;
  top: -44px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid #f4f6fb;
  box-shadow: 0 0 0 2px #f2a215;
  transform: translateX(-50%) scale(0);
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--d, 0s);
  z-index: 3;
}
.timeline__step:first-child .timeline__step-dot,
.timeline__step:last-child .timeline__step-dot {
  width: 20px;
  height: 20px;
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
  top: -46px;
}
.timeline__steps.is-animated .timeline__step-dot {
  transform: translateX(-50%) scale(1);
}

/* ── Conector vertical ponto → ícone ─── */
.timeline__step::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  width: 2px;
  height: 26px;
  background: linear-gradient(180deg, #f2a215 0%, rgb(242 162 21/.2) 100%);
  border-radius: 2px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  transition: transform .35s ease;
  transition-delay: var(--d, 0s);
}
.timeline__steps.is-animated .timeline__step::before {
  transform: translateX(-50%) scaleY(1);
}

/* ── Ícone ─── */
.timeline__step-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--yellow);
  box-shadow: 0 4px 20px rgb(4 30 66/.09);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.timeline__step:hover .timeline__step-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgb(4 30 66/.16);
  border-color: #f2a215;
}
.timeline__step-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.timeline__step-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.timeline__cta { text-align: center; }

/* ── TYPEWRITER BAND ────────────────────────────────────────────────────── */
.typewriter-band {
  background: var(--navy);
  padding: 88px 24px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Glow seguindo o mouse */
.typewriter-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--mx, 50%) var(--my, 50%),
    rgb(0 55 160 / .55) 0%,
    rgb(0 30 100 / .2)  40%,
    transparent         70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}
.typewriter-band:hover::after { opacity: 1; }

.typewriter-band__inner {
  position: relative;
  z-index: 1;
}

.typewriter-band__eyebrow {
  margin: 0 0 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgb(255 255 255 / .35);
}

.typewriter-band__stage {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .01em;
  min-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typewriter-band__typed {
  background: linear-gradient(90deg, #7eb8ff 0%, #a8d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: .2;
}

.typewriter-band__cursor {
  display: inline-block;
  color: #f2a215;
  -webkit-text-fill-color: #f2a215;
  font-weight: 200;
  margin-left: 4px;
  animation: twCursor .75s step-end infinite;
}

@keyframes twCursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@media (max-width: 640px) {
  .typewriter-band { padding: 64px 20px; }
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq { padding: 64px 0 64px; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  background: var(--white);
  margin-bottom: 12px;
}
.faq__item summary {
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1rem; color: #2a6abd;
  padding: 20px 56px 20px 8px;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "→";
  position: absolute; right: 6px; top: 50%;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; line-height: 1; color: #2a6abd;
}
.faq__item[open] summary::after { content: "↓"; }
.faq__item p { margin: 0 0 16px; color: var(--muted); padding-left: 4px; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--brand-gradient);
  color: var(--ink);
  padding: 60px 0 32px;
  border-radius: clamp(32px, 5vw, 80px) clamp(24px, 3vw, 48px) 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: start;
}

.site-footer__left { display: grid; gap: 20px; align-self: start; margin-top: -15px; line-height: 0; }
.site-footer__left > * { line-height: normal; }
.site-footer__logo-link { display: inline-block; }
.site-footer__logo { width: min(160px, 48vw); height: auto; display: block; }

.site-footer__addresses { display: grid; gap: 14px; }
.site-footer h3 { margin: 0 0 2px; font-size: .88rem; font-weight: 700; color: #2a6abd; }
.site-footer p { margin: 0; font-size: .84rem; line-height: 1.45; color: var(--ink); }

.site-footer__contact { display: grid; gap: 6px; align-content: start; padding-left: clamp(16px, 4vw, 56px); }

/* Ícones sociais maiores */
.site-footer__social { margin-bottom: 12px; }
.site-footer__social img {
  height: 56px;
  width: auto;
  display: block;
  max-width: 100%;
}

.site-footer__contact .phone { font-size: 1.25rem; font-weight: 700; margin: 0; }
.site-footer__contact .email { color: #2a6abd; text-decoration: underline; font-size: .88rem; }

.site-footer__links { display: grid; gap: 4px; margin-top: 6px; }
.site-footer__links a { color: #2a6abd; font-size: .88rem; text-decoration: underline; }
.site-footer__links a:hover { text-decoration: none; }

.site-footer__copy {
  margin-top: 32px; padding-top: 16px;
  border-top: 1px solid rgb(10 31 68/.15);
  font-size: .82rem; opacity: .75;
}

/* ── REVEAL ON SCROLL ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: .15s; }
.reveal--delay-2 { transition-delay: .30s; }
.reveal--delay-3 { transition-delay: .45s; }
.reveal--delay-4 { transition-delay: .60s; }

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

/* ── TEXT LINK ─────────────────────────────────────────────────────────── */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  color: var(--navy-mid);
  background: linear-gradient(90deg, #f9e550 0%, #f2a215 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #f9e550 0%, #f2a215 100%);
  border-radius: 2px;
  transition: opacity .3s ease;
}
.text-link:hover::after { opacity: 0; }
.text-link--on-dark {
  background: linear-gradient(90deg, #ffffff 0%, #fff6b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-link--on-dark::after {
  background: linear-gradient(90deg, #ffffff 0%, #fff6b0 100%);
}

/* Primeira cta-band recebe espaço extra pelo overlap dos stats */
.cta-band--top {
  padding-top: calc(clamp(40px, 6vw, 72px) + 54px);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ── 760px — stats row colapsa para 2 colunas em tablets ── */
@media (max-width: 760px) {
  .hero__stats-row {
    width: 92vw;
    max-width: 480px;
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__stat {
    padding: 20px 24px;
  }
  .hero__stat:nth-child(1),
  .hero__stat:nth-child(2),
  .hero__stat:nth-child(3),
  .hero__stat:nth-child(4) { border-right: none; }
  .hero__stat:nth-child(1),
  .hero__stat:nth-child(2) { border-bottom: 1px solid rgb(255 255 255 / .08); }
}

/* ── 960px ── */
@media (max-width: 960px) {
  .coverage__grid,
  .cases__layout,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .coverage__video-wrap {
    width: min(100%, 340px);
    margin-inline: auto;
    max-height: min(44vh, 340px);
  }

  .trust__row { justify-content: center; }
  .trust p    { text-align: center; }

  /* Timeline tablet: mantém 7 colunas, reduz ícone */
  .timeline__step-icon { width: 64px; height: 64px; }
  .timeline__step-icon svg { width: 26px; height: 26px; }
}

/* ── 920px — nav mobile ── */
@media (max-width: 920px) {
  .nav-toggle { display: inline-block; }

  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 10px 4.5vw 18px;
    display: none;
    z-index: 50;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 8px; border-radius: 10px; }
  .site-nav a:hover { background: #f4f6fb; }
  .site-nav .btn { margin-top: 8px; justify-content: center; }
  .site-header__row { position: relative; }
}

/* ── 640px — mobile ── */
@media (max-width: 640px) {

  /* Prebar: empilhado compacto */
  .prebar__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    padding-block: 6px;
    min-height: unset;
  }
  .prebar__left { display: none; }
  .prebar__right { font-size: .75rem; }

  /* Hero: 70vh no mobile */
  .hero {
    min-height: 70vh;
  }
  .hero__content { padding-block: 48px 32px; }
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); }

  .hero__stats-row { width: 92vw; max-width: 400px; grid-template-columns: repeat(2, 1fr); }
  .hero__stat { padding: 14px 12px; }
  .hero__stat:nth-child(1),
  .hero__stat:nth-child(2),
  .hero__stat:nth-child(3),
  .hero__stat:nth-child(4) { border-right: none; }
  .hero__stat:nth-child(1),
  .hero__stat:nth-child(2) { border-bottom: 1px solid rgb(255 255 255 / .08); }
  .hero__stat-num { font-size: clamp(1.1rem, 4.5vw, 1.6rem); }
  .hero__stat-label { font-size: .52rem; letter-spacing: .07em; white-space: normal; }

  /* Cards slider: sem nav, título sempre visível */
  .cards-slider { grid-template-columns: minmax(0,1fr); }
  .cards-slider__nav { display: none; }
  .cards-slider__track { height: 200px; }
  .transport-card__info strong {
    font-size: clamp(.6rem, 2.5vw, .77rem);
    white-space: normal;
  }
  /* Mobile inativo: nome acima do dot, texto menor */
  .transport-card:not(.is-active) .transport-card__info {
    display: block;
  }
  .transport-card:not(.is-active) .transport-card__info strong {
    font-size: .41rem; /* −15% em relação ao .48rem anterior */
    opacity: 1;
    transform: none;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
    letter-spacing: 0;
  }
  .transport-card:not(.is-active) .transport-card__label {
    left: 4px;
    right: 4px;
    bottom: 10px;
    align-items: center;
    gap: 4px;
  }
  .transport-card__dot {
    width: 32px; height: 32px;
  }
  .transport-card__dot svg,
  .transport-card__dot i {
    width: 17px; height: 17px;
  }

  /* Tabs */
  .tabs__panel { width: 100%; }
  .tabs__panel-layout { grid-template-columns: 1fr; }
  .tabs__panel-icon { display: none; }
  .tabs__panel-cta { display: flex; width: 100%; justify-content: center; }
  .tabs__list { justify-content: center; }

  /* CTA band */
  .cta-band__inner { align-items: stretch; }
  .cta-band .btn { align-self: center; }

  /* Trust: 2×2 centralizado já pelo grid, ajuste tamanho */
  .trust__badge-img { height: 52px; }

  /* Timeline mobile: layout vertical com linha animada */
  .timeline { padding: 56px 0 64px; }
  .timeline__header { margin-bottom: 40px; }
  .timeline__header h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  .timeline__steps {
    grid-template-columns: 1fr;
    padding: 0 0 0 40px;
    gap: 0;
    margin-bottom: 36px;
  }

  /* Linha vertical dotted base */
  .timeline__steps::before {
    top: 10px;
    left: 20px;
    right: auto;
    width: 0;
    height: calc(100% - 20px);
    border-top: none;
    border-left: 3px dotted rgba(242, 162, 21, 0.45);
    background: none;
    transform: none;
    animation: none;
    transition: opacity 0.5s ease;
  }
  .timeline__steps.is-animated::before { opacity: 1; animation: none; }

  /* Cometa descendo de cima para baixo */
  .timeline__steps.is-animated::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 16px;
    width: 10px;
    height: calc(100% - 20px);
    border-radius: 5px;
    background: linear-gradient(180deg,
      transparent       0%,
      transparent      35%,
      rgba(249,229,80,.55) 43%,
      rgba(255,255,255,1)  50%,
      rgba(249,229,80,.55) 57%,
      transparent      65%,
      transparent     100%
    );
    background-size: 100% 200%;
    animation: cometV 3.2s linear infinite;
    filter: blur(1.5px);
    pointer-events: none;
    z-index: 4;
  }

  @keyframes cometV {
    0%   { background-position: 0 150%; }
    100% { background-position: 0  -50%; }
  }

  /* Steps deslizam da esquerda */
  .timeline__step {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    min-height: 72px;
    transform: translateX(-10px);
  }
  .timeline__steps.is-animated .timeline__step { transform: none; }

  /* Ponto sobre a linha vertical */
  .timeline__step-dot {
    position: absolute;
    top: 50%;
    left: -22px;
    transform: translateY(-50%) scale(0);
  }
  .timeline__step:first-child .timeline__step-dot,
  .timeline__step:last-child .timeline__step-dot {
    left: -22px;
    top: 50%;
  }
  .timeline__steps.is-animated .timeline__step-dot {
    transform: translateY(-50%) scale(1);
  }

  /* Oculta conector vertical (não faz sentido no layout horizontal dos steps) */
  .timeline__step::before { display: none; }

  .timeline__step-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
  }
  .timeline__step-icon svg { width: 24px; height: 24px; }
  .timeline__step-label { text-align: left; font-size: .8rem; letter-spacing: .03em; }

  /* Cases */
  .cases__layout { grid-template-columns: 1fr; }
  .cases__heading h2 { margin-bottom: 16px; }

  /* Coverage */
  .coverage__grid { grid-template-columns: 1fr; }
  .coverage__video-wrap { width: min(100%, 300px); margin-inline: auto; }
  .coverage__video { transform: none; }

  /* Footer */
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer { padding-top: 48px; }
  .site-footer__social img { height: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   v8 — 7 novos ajustes
   ═══════════════════════════════════════════════════════════ */

/* ── 5. Substituir amarelo puro pelo degradê dos botões ──────────────────
   Tudo que usava #ffea00 / var(--yellow) como background sólido
   passa a usar o gradient amarelo→laranja                              */
:root {
  --brand-gradient: linear-gradient(90deg, #f9e550 0%, #f2a215 100%);
  --brand-gradient-text: linear-gradient(90deg, #f9e550 0%, #f2a215 100%);
}

/* Prebar */
.prebar { background: var(--brand-gradient); }

/* Dot dos cards */
.transport-card__dot { background: var(--brand-gradient); }

/* Linha conectora da timeline */
.timeline__steps::before { background: var(--brand-gradient); }

/* Borda do card ativo na timeline */
.timeline__step-icon { border-color: #f2a215; }

/* Botões: já usavam gradient, mantém mas atualiza para novo laranja */
.btn { background: var(--brand-gradient); }


/* Hero highlight */
.hero__highlight { color: #ffd227; }

/* FAQ seta */
.faq__item summary::after { background: var(--brand-gradient); }

/* Case card */
.case-card { background: var(--brand-gradient); }

/* ── 6. Glassmorphism + brilho em movimento nos botões CTA ──────────────*/
.btn--cta-glass {
  position: relative;
  overflow: hidden;
  background: var(--brand-gradient);
  backdrop-filter: blur(6px);
  border: 1px solid rgb(255 255 255 / .35);
  box-shadow:
    0 4px 24px rgb(242 162 21 / .35),
    inset 0 1px 0 rgb(255 255 255 / .3);
}

/* Brilho deslizante em loop — sem hover */
.btn--cta-glass::before {
  content: '';
  position: absolute;
  top: 0; left: -180%;
  width: 50%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 30%,
    rgb(255 255 255 / .38) 50%,
    transparent 70%,
    transparent 100%
  );
  animation: btnShine 5.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

@keyframes btnShine {
  0%   { left: -180%; opacity: 0; }
  8%   { opacity: 1; }
  38%  { left: 160%; opacity: 1; }
  45%  { left: 160%; opacity: 0; }
  100% { left: 160%; opacity: 0; }
}

/* ── 2. Marquee de logos ─────────────────────────────────────────────── */
.partners-marquee {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  /* fade lateral */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.partners-marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 150s linear infinite;
}

.partners-marquee__track img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .45;
  padding: 0 32px;
  transition: opacity .5s ease, transform .5s ease;
  flex-shrink: 0;
}

/* Logo central maior — só escala e opacidade, mantém branco */
.partners-marquee__track img.is-center {
  opacity: 1;
  transform: scale(1.38);
  filter: brightness(0) invert(1);
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-marquee:hover .partners-marquee__track { animation-play-state: paused; }

/* ── COVERAGE ──────────────────────────────────────────────────────────────*/
.coverage {
  padding: 72px 0 64px;
  background: var(--white);
}

.coverage__grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  gap: clamp(20px,3vw,40px);
  align-items: center;
}

.coverage__label {
  margin: 0 0 10px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #2a6abd;
}
.coverage h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem,3vw,2.3rem);
  line-height: 1.15; color: var(--navy);
}
.coverage h2 em {
  font-style: normal; color: var(--navy-mid);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #f2a215;
  text-underline-offset: 4px;
}
.coverage p { margin: 0 0 16px; color: var(--muted); max-width: 520px; }

.coverage__visual { display: flex; justify-content: center; align-items: stretch; }

.coverage__video-wrap {
  position: relative;
  width: min(100%, clamp(280px,34vw,400px));
  aspect-ratio: 1/1;
  max-height: min(52vh,400px);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: none;
}
.coverage__map,
.coverage__video {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%;
  margin: 0; border: 0;
  object-position: center;
}
.coverage__map {
  object-fit: contain;
  background-color: var(--white);
  opacity: .15;
}
.coverage__video {
  object-fit: contain;
  background: transparent;
  z-index: 1;
}
/* garante que o wrap não vaze cor escura */
.coverage__video-wrap { background: var(--white); }
.coverage__video-wrap.is-video-active .coverage__map { opacity: 0; pointer-events: none; }
.coverage__video-wrap:not(.is-video-active) .coverage__video { display: none; }

/* ── 4. Cards auto-rotate ───────────────────────────────────────────────*/
/* Já tratado no JS — apenas garante transição suave */
.transport-card {
  transition: flex-grow .6s cubic-bezier(.05,.61,.41,.95),
              border-radius .6s,
              transform .2s;
}

/* ── 7. Selos MESC ──────────────────────────────────────────────────────*/
.mesc-strip {
  margin-top: 24px;
  padding: 20px 0 8px;
  text-align: center;
}

.mesc-strip__label {
  margin: 0 0 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  background: linear-gradient(135deg, #3a80c4 0%, #1a4f8a 45%, #041e42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.mesc-strip__seals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 24px 32px;
}

.mesc-seal {
  opacity: 0;
  transform: translateY(28px) scale(.94);
  transition:
    opacity 1.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.65s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
}

.mesc-strip__seals.seals-animated .mesc-seal:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.mesc-strip__seals.seals-animated .mesc-seal:nth-child(2) { opacity: 1; transform: none; transition-delay: .6s; }
.mesc-strip__seals.seals-animated .mesc-seal:nth-child(3) { opacity: 1; transform: none; transition-delay: 1.2s; }

.mesc-seal img {
  height: 240px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  object-position: center top;
  background: none;
  filter: none;
  transition: transform .4s cubic-bezier(0.16,1,.3,1);
}
.mesc-seal img:hover {
  transform: scale(1.08) translateY(-6px);
}

/* Selo do meio: destaque 20% maior, sobressai acima e abaixo */
.mesc-seal:nth-child(2) {
  z-index: 2;
}
.mesc-seal:nth-child(2) img {
  height: 320px;
  max-width: 254px;
}

/* ── 1. Footer 3 colunas ────────────────────────────────────────────────*/
.site-footer__grid {
  grid-template-columns: 1.1fr 1fr 1.1fr;
}

.site-footer__podcast-title {
  margin: 0 0 4px;
  font-family: 'DM Sans', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.site-footer__podcast-sub {
  margin: 0 0 16px;
  font-size: .82rem;
  color: rgb(10 31 68 / .6);
  line-height: 1.4;
}

.yt-embed { display: flex; flex-direction: column; gap: 10px; }

.yt-embed__thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #041e42 0%, #0b3e7d 100%);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.yt-embed__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.yt-embed__preview {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #041e42 0%, #1a4a8a 100%);
}
.yt-embed__preview-inner {
  text-align: center; color: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.yt-embed__preview-inner span { font-size: 2rem; opacity: .4; }
.yt-embed__preview-inner p {
  margin: 0;
  font-family: 'DM Sans', 'Roboto', sans-serif;
  font-size: .95rem; font-weight: 700;
}
.yt-embed__preview-inner small {
  font-size: .72rem; opacity: .6; text-transform: uppercase; letter-spacing: .08em;
}

.yt-embed__overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgb(0 0 0 / 0);
  transition: background .25s;
}
.yt-embed__thumb:hover .yt-embed__overlay { background: rgb(0 0 0 / .18); }

.yt-embed__play {
  filter: drop-shadow(0 4px 14px rgb(0 0 0 / .5));
  transform: scale(.9);
  transition: transform .25s;
}
.yt-embed__thumb:hover .yt-embed__play { transform: scale(1.05); }

.yt-embed__link {
  font-size: .8rem;
  font-weight: 700;
  color: #2a6abd;
  text-decoration: none;
  text-align: center;
}
.yt-embed__link:hover { text-decoration: underline; }

/* ── Responsive v8 ──────────────────────────────────────────────────────*/
@media (max-width: 960px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__podcast { grid-column: 1 / -1; }
  .mesc-strip__seals { flex-wrap: wrap; gap: 32px; justify-content: center; }
}

@media (max-width: 640px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .mesc-strip { padding: 24px 16px; }
  .mesc-strip__seals {
    gap: 10px;
    justify-content: center;
    padding: 12px 8px;
    overflow-x: hidden;
    align-items: center;
  }
  .mesc-seal {
    flex: 1;
    min-width: 0;
    padding: 4px;
  }
  .mesc-seal img {
    width: 100%;
    height: auto;
    max-height: 130px;
    max-width: none;
  }
  .mesc-seal:nth-child(2) img {
    max-height: 155px;
  }
  .coverage__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PARALLAX VIDEO BAND
   ═══════════════════════════════════════════════════════ */
.parallax-band {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-band__video {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 160%;
  object-fit: cover;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

.parallax-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgb(4 30 66 / .82) 0%,
    rgb(11 62 125 / .60) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.parallax-band__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.parallax-band__eyebrow {
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / .55);
}

.parallax-band__content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff 0%, #fff6b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.parallax-band__content h2 strong {
  font-weight: 800;
}
.parallax-band__content p {
  margin: 0 0 24px;
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  color: rgb(255 255 255 / .78);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .parallax-band { height: 320px; }
  .parallax-band__video { top: -20%; height: 140%; }

}

/* ═══════════════════════════════════════════════════════════
   PÁGINA EMPRESA — estilos mesclados de empresa.css
   Fontes padronizadas: DM Sans (corpo) · Oswald (destaques)
   ═══════════════════════════════════════════════════════════ */

/* ── Link ativo no menu ─────────────────────────────────────────────────── */
.site-nav a.is-current {
  color: var(--navy-mid);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

/* Degradê nas letras em contextos escuros */
.about-mvv__header h2,
.about-presence__text h2,
.about-clients__header h2 {
  background: linear-gradient(90deg, #ffffff 0%, #fff6b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: min(41vh, 312px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgb(4 30 66 / .93) 0%, rgb(4 30 66 / .65) 55%, rgb(11 62 125 / .4) 100%);
}

.page-hero__body { position: relative; z-index: 1; padding-block: 67px 53px; }

.page-hero__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 0;
  border: 1px solid rgb(255 234 0 / .5);
  background: rgb(255 234 0 / .1);
  font-size: .56rem; font-weight: 700;
  letter-spacing: .14em;
  color: var(--yellow);
  backdrop-filter: blur(6px);
}

.page-hero__title {
  margin: 0 0 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: .96;
  letter-spacing: .03em;
  text-shadow: 0 4px 40px rgb(0 0 0 / .6);
  max-width: 620px;
}
.page-hero__title strong { color: var(--yellow); font-weight: 800; }

.page-hero__sub {
  margin: 0;
  max-width: 500px;
  font-size: clamp(.88rem, 1.3vw, 1rem);
  line-height: 1.65;
  color: rgb(255 255 255 / .82);
}

.page-hero__scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.page-hero__scroll-hint span {
  display: block; width: 1px; height: 52px;
  background: linear-gradient(180deg, rgb(255 234 0 / .8), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1.5); transform-origin: top; }
}

/* ── NUMBERS STRIP ──────────────────────────────────────────────────────── */
.about-numbers { background: var(--navy); padding: 0; }

.about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-numbers__item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 32px 16px; gap: 6px;
  border-right: 1px solid rgb(255 255 255 / .1);
}
.about-numbers__item:last-child { border-right: none; }

.about-numbers__val {
  font-family: 'Oswald', 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -.01em;
}

.about-numbers__label {
  font-size: .7rem; font-weight: 600;
  color: rgb(255 255 255 / .6);
  letter-spacing: .08em; text-transform: uppercase; line-height: 1.4;
}

/* ── HISTÓRIA ───────────────────────────────────────────────────────────── */
.about-story { padding: 32px 0 40px; background: var(--white); }

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.about-story__visual { position: relative; }

.about-story__img-wrap { position: relative; border-radius: 20px; overflow: visible; }

.about-story__img {
  display: block; width: 100%; border-radius: 20px;
  object-fit: cover; aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgb(4 30 66 / .18);
}

.about-story__badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--brand-gradient);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 12px 36px rgb(4 30 66 / .2); gap: 2px;
}
.about-story__badge-num {
  font-family: 'Oswald', 'DM Sans', sans-serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.about-story__badge-text {
  font-size: .62rem; font-weight: 700; color: var(--ink);
  line-height: 1.3; text-transform: uppercase; letter-spacing: .04em;
}

.about-story__text h2 { margin: 8px 0 18px; font-size: clamp(1.65rem, 2.8vw, 2.2rem); color: var(--navy); line-height: 1.15; }
.about-story__text p  { margin: 0 0 14px; color: var(--muted); line-height: 1.7; font-size: .97rem; }
.about-story__text p strong { color: var(--navy); }
.about-story__text .btn { margin-top: 10px; }

/* ── MISSÃO / VISÃO / VALORES ───────────────────────────────────────────── */
.about-mvv {
  padding: 80px 0 88px;
  background: radial-gradient(1400px 600px at 15% 20%, #0c4a9a 0%, var(--navy) 60%);
  color: var(--white);
}

.about-mvv__header { text-align: center; margin-bottom: 48px; }
.about-mvv__header h2 { margin: 8px 0 0; font-size: clamp(2rem, 3.5vw, 2.9rem); color: var(--white); }

.about-mvv__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.about-mvv__card {
  background: rgb(255 255 255 / .06);
  border: 1px solid rgb(255 255 255 / .14);
  border-radius: 20px; padding: 36px 28px 32px;
  backdrop-filter: blur(6px);
  transition: transform .4s cubic-bezier(0.16,1,0.3,1), background .4s ease;
}
.about-mvv__card:hover { transform: translateY(-6px); background: rgb(255 255 255 / .1); }
.about-mvv__card--featured { border-color: var(--yellow); background: rgb(255 234 0 / .06); }
.about-mvv__card--featured:hover { background: rgb(255 234 0 / .1); }
.about-mvv__icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.about-mvv__card h3 { margin: 0 0 14px; font-size: 1.45rem; font-weight: 700; color: var(--yellow); }
.about-mvv__card p  { margin: 0; color: rgb(255 255 255 / .8); line-height: 1.7; font-size: 1.1rem; }

.about-mvv__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.about-mvv__list li { color: rgb(255 255 255 / .82); font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.about-mvv__list li::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

/* ── DIFERENCIAIS ───────────────────────────────────────────────────────── */
.about-diff { padding: 80px 0 88px; background: #f7f9fd; }

.about-diff__header { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 52px; }
.about-diff__header h2 { margin: 8px 0 12px; font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--navy); }
.about-diff__header p  { margin: 0; color: var(--muted); font-size: .97rem; line-height: 1.65; }

.about-diff__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }

.about-diff__item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 20px 14px 18px;
  transition: box-shadow .45s cubic-bezier(0.16,1,0.3,1), transform .45s cubic-bezier(0.16,1,0.3,1), border-color .45s ease;
}
.about-diff__item:hover { box-shadow: 0 12px 32px rgb(4 30 66 / .1); transform: translateY(-4px); border-color: var(--yellow); }
.about-diff__icon { width: 28px; height: 28px; margin-bottom: 10px; display: block; color: var(--navy); }
.about-diff__item h3 { margin: 0 0 6px; font-size: .85rem; font-weight: 700; color: var(--navy); }
.about-diff__item p  { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }

/* ── PRESENÇA ───────────────────────────────────────────────────────────── */
.about-presence { padding: 64px 0 64px; background: var(--navy); color: var(--white); }

.about-presence__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.about-presence__text h2 { margin: 8px 0 14px; font-size: clamp(1.65rem, 2.8vw, 2.2rem); color: var(--white); line-height: 1.15; }
.about-presence__text > p { margin: 0 0 32px; color: rgb(255 255 255 / .7); line-height: 1.65; }

.about-presence__units { display: flex; flex-direction: column; gap: 18px; }
.about-presence__unit  { display: flex; gap: 16px; align-items: flex-start; }
.about-presence__unit-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; margin-top: 5px; box-shadow: 0 0 10px rgb(255 234 0 / .5); }
.about-presence__unit strong { display: block; color: var(--white); font-weight: 700; font-size: .95rem; margin-bottom: 3px; }
.about-presence__unit span   { display: block; color: rgb(255 255 255 / .6); font-size: .85rem; line-height: 1.45; }

.about-presence__map-wrap { border-radius: 20px; overflow: hidden; background: rgb(255 255 255 / .04); border: 1px solid rgb(255 255 255 / .1); display: flex; align-items: center; justify-content: center; padding: 24px; }
.about-presence__map { display: block; width: 100%; max-width: min(400px, 100%); }

/* ── CLIENTES ───────────────────────────────────────────────────────────── */
.about-clients { padding: 80px 0 72px; background: #f7f9fd; }

.about-clients__header { text-align: center; margin-bottom: 44px; }
.about-clients__header h2 { margin: 8px 0 0; font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: var(--navy); }

.about-clients__logos { display: flex; flex-wrap: wrap; gap: 24px 28px; justify-content: center; align-items: center; margin-bottom: 52px; }
.about-clients__logos img { height: 60px; width: auto; max-width: 170px; object-fit: contain; filter: grayscale(1) opacity(.6); transition: filter .25s ease; }
.about-clients__logos img:hover { filter: grayscale(0) opacity(1); }

.about-clients__quote { max-width: 820px; margin-inline: auto; }

/* ── RESPONSIVE EMPRESA ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-story__grid,
  .about-presence__grid   { grid-template-columns: 1fr; }
  .about-mvv__grid  { grid-template-columns: 1fr 1fr; }
  .about-diff__grid { grid-template-columns: repeat(3, 1fr); }
  .about-numbers__grid     { grid-template-columns: repeat(2, 1fr); }
  .about-numbers__item:nth-child(2) { border-right: none; }
  .about-numbers__item:nth-child(1),
  .about-numbers__item:nth-child(2) { border-bottom: 1px solid rgb(255 255 255 / .1); }
  .about-story__badge { right: 8px; bottom: -14px; width: 92px; height: 92px; }
  .about-story__badge-num { font-size: 1.3rem; }
  .about-presence__grid { direction: ltr; }
  .about-presence__visual { order: -1; }
}

@media (max-width: 640px) {
  .page-hero { min-height: min(34vh, 264px); }
  .page-hero__body { padding-block: 53px 43px; }
  .page-hero__title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .about-mvv__grid  { grid-template-columns: 1fr; }
  .about-mvv__row-top { grid-template-columns: 1fr !important; }
  .about-mvv__list { grid-template-columns: 1fr !important; }
  .about-diff__grid { grid-template-columns: repeat(2, 1fr); }
  .about-numbers__grid     { grid-template-columns: repeat(2, 1fr); }
  .about-story__grid       { grid-template-columns: 1fr; }
  .about-story__badge      { width: 82px; height: 82px; right: 4px; bottom: -12px; }
  .servico__grid { grid-template-columns: 1fr; }
  .servico--alt .servico__visual { order: -1; }

  /* Empresa — reduz espaçamento excessivo entre seções */
  .about-story    { padding: 44px 0 40px; }
  .about-mvv      { padding: 44px 0 48px; }
  .about-diff     { padding: 44px 0 48px; }
  .about-presence { padding: 36px 0 40px; }
  .about-clients  { padding: 44px 0 40px; }
  .about-numbers__item { padding: 20px 12px; }
}

/* ═══════════════════════════════════════════════════════════
   PÁGINA SERVIÇOS
   ═══════════════════════════════════════════════════════════ */

/* Nav de âncoras entre serviços */
.servicos-nav {
  position: sticky;
  top: 0;
  z-index: 39;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgb(4 30 66 / .06);
}
.servicos-nav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.servicos-nav__inner::-webkit-scrollbar { display: none; }
.servicos-nav__item {
  flex-shrink: 0;
  padding: 14px 20px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.servicos-nav__item:hover,
.servicos-nav__item.is-active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.servico {
  padding: 88px 0;
  background: var(--white);
  opacity: 0;
  transform: translateX(-160px);
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.servico--alt {
  background: #f7f9fd;
  transform: translateX(160px);
}

.servico.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

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

.servico__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.servico__visual { position: relative; }

.servico__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgb(4 30 66 / .14);
}

.servico__content { display: flex; flex-direction: column; gap: 0; }

.servico__content h2 {
  margin: 8px 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.servico__content > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.7;
}

.servico__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.servico__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .93rem;
  color: var(--ink);
  line-height: 1.5;
}

.servico__list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gradient);
}

@media (max-width: 960px) {
  .servico__grid { gap: 40px; }
}

@media (max-width: 640px) {
  .servico { padding: 56px 0; }
  .servico__grid { grid-template-columns: 1fr; gap: 28px; }
  .servico--alt .servico__visual { order: -1; }
  /* Mobile: reduz distância da animação para não extravazar viewport */
  .servico     { transform: translateX(-40px); }
  .servico--alt { transform: translateX(40px); }
}

/* ═══════════════════════════════════════════════════════════
   PÁGINA COTAÇÃO
   ═══════════════════════════════════════════════════════════ */

/* ── Hero compacto ─────────────────────────────────────────── */
.cot-hero {
  position: relative;
  min-height: min(26vh, 180px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.cot-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.cot-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgb(4 30 66 / .93) 0%, rgb(4 30 66 / .65) 55%, rgb(11 62 125 / .45) 100%);
}

.cot-hero__body {
  position: relative; z-index: 1;
  padding-block: 32px 28px;
}

/* ── Seção do formulário ───────────────────────────────────── */
.cotacao-section {
  padding: 16px 0 32px;
  background: #f4f6fb;
}

/* ── Indicador de progresso ───────────────────────────────── */
.cot-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 18px;
}

/* ── Upload de arquivo ────────────────────────────────────── */
.cot-file { padding: 10px 14px; cursor: pointer; }
.cot-file::file-selector-button {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  background: var(--brand-gradient);
  color: var(--ink);
  cursor: pointer;
  margin-right: 12px;
  transition: filter .2s;
}
.cot-file::file-selector-button:hover { filter: brightness(.95); }

.cot-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.cot-progress__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .75rem;
  color: var(--muted);
  transition: background .3s, border-color .3s, color .3s;
}

.cot-progress__step span {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}

.cot-progress__step.is-active .cot-progress__dot {
  background: var(--brand-gradient);
  border-color: transparent;
  color: var(--ink);
}
.cot-progress__step.is-active span { color: var(--navy); }

.cot-progress__step.is-done .cot-progress__dot {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.cot-progress__step.is-done span { color: var(--navy-mid); }

.cot-progress__line {
  flex: 1;
  height: 2px;
  max-width: 80px;
  background: var(--line);
  margin-bottom: 24px;
}

/* ── Bloco de formulário ──────────────────────────────────── */
.cot-block {
  background: linear-gradient(var(--white), var(--white)) padding-box,
              var(--brand-gradient) border-box;
  border-radius: 20px;
  border: 2px solid transparent;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 4px 28px rgb(4 30 66 / .06),
              0 0 0 1px rgb(249 229 80 / .18),
              0 10px 40px rgb(242 162 21 / .14);
  backdrop-filter: blur(6px);
}

.cot-block__header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cot-block__title {
  margin: 0 0 6px;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--navy);
}

.cot-block__sub {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
}

/* ── Sub-bloco (dentro do bloco 3) ──────────────────────── */
.cot-subblock {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.cot-subblock:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cot-subblock__title {
  margin: 0 0 18px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

/* ── Grid de campos ──────────────────────────────────────── */
.cot-row {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.cot-row--2 { grid-template-columns: 1fr 1fr; }
.cot-row--top { align-items: start; }

/* ── Campo individual ────────────────────────────────────── */
.cot-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.cot-row .cot-field { margin-bottom: 0; }

.cot-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}

.cot-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #f2a215;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.cot-input:focus {
  outline: none;
  border-color: #f9e550;
  box-shadow: 0 0 0 3px rgb(249 229 80 / .25);
}
.cot-input[readonly] {
  background: #f4f6fb;
  border-color: #d0d8e8;
  color: var(--muted);
  cursor: default;
}
.cot-input[readonly]:focus { box-shadow: none; border-color: #d0d8e8; }
.cot-input--half { max-width: 320px; }

/* CEP + cidade na mesma linha */
.cot-cep-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
}
.cot-input--city {
  background: #f4f6fb;
  color: var(--muted);
  cursor: default;
  font-style: italic;
}

.cot-select { cursor: pointer; }

.cot-textarea { resize: vertical; min-height: 100px; line-height: 1.55; }

/* ── Hint e notas ────────────────────────────────────────── */
.cot-hint {
  margin: 0 0 12px;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
}

.cot-required-note {
  font-size: .78rem;
  font-weight: 400;
  color: var(--muted);
}

.cot-tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--line);
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  cursor: help;
  margin-left: 4px;
  vertical-align: middle;
}

/* ── Radios ──────────────────────────────────────────────── */
.cot-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cot-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.cot-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: .85rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, background .2s;
  user-select: none;
}
.cot-radio:hover {
  border-color: #f2a215;
  background: #f8f9fd;
}

.cot-radio input[type="radio"] { display: none; }

.cot-radio:has(input:checked) {
  border-color: #f2a215;
  background: #fffbf0;
  color: var(--navy);
  font-weight: 700;
}

/* ── Mensagem de erro do CEP ─────────────────────────────── */
.cot-cep-error {
  font-size: .78rem;
  color: #c0392b;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}
.cot-cep-error.is-visible { display: block; }

/* Erros de validação inline */
.cot-field-error {
  display: block;
  font-size: .78rem;
  color: #c0392b;
  font-weight: 600;
  margin-top: 5px;
  min-height: 1em;
}
.cot-input.is-invalid {
  border-color: #c0392b !important;
  background: #fff8f8;
}

/* ── Animações da sticky bar ──────────────────────────────── */
@keyframes cot-bar-glow {
  0%, 100% { box-shadow: 0 -2px 12px rgb(255 234 0 / .0); border-top-color: rgb(255 255 255 / .1); }
  50%       { box-shadow: 0 -2px 18px rgb(255 234 0 / .25); border-top-color: rgb(255 234 0 / .45); }
}
@keyframes cot-chevrons {
  from { background-position-x: 0; }
  to   { background-position-x: 20px; }
}
@keyframes cot-cta-pulse {
  0%, 100% { opacity: .5; }
  50%       { opacity: 1; }
}

/* ── Barra de progresso sticky (fundo do viewport) ────────── */
.cot-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: rgb(4 30 66 / .97);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgb(255 255 255 / .1);
  padding: 10px 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* O __inner herda largura do .container — mesma largura do formulário */
.cot-sticky-bar__inner.container {
  padding-top: 0;
  padding-bottom: 0;
}
.cot-sticky-bar.is-visible {
  transform: translateY(0);
  animation: cot-bar-glow 2.8s ease-in-out infinite;
}

.cot-sticky-bar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cot-sticky-bar__steps {
  display: flex;
  gap: 6px;
}

.cot-sticky-bar__step {
  font-size: .75rem;
  font-weight: 700;
  color: rgb(255 255 255 / .35);
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .3s;
  white-space: nowrap;
}
.cot-sticky-bar__step.is-done {
  color: rgb(255 255 255 / .65);
}
.cot-sticky-bar__step.is-active {
  background: var(--brand-gradient);
  color: var(--ink);
  border-color: transparent;
}

.cot-sticky-bar__track {
  flex: 1;
  height: 5px;
  background: rgb(255 255 255 / .1);
  border-radius: 3px;
  overflow: hidden;
}
.cot-sticky-bar__fill {
  position: relative;
  height: 100%;
  background: var(--brand-gradient);
  border-radius: 3px;
  width: 33.33%;
  transition: width .5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.cot-sticky-bar__fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    68deg,
    transparent        0px,
    transparent        7px,
    rgb(255 255 255 / .28) 7px,
    rgb(255 255 255 / .28) 11px
  );
  background-size: 20px 100%;
  animation: cot-chevrons .45s linear infinite;
}

.cot-sticky-bar__cta {
  font-size: .78rem;
  font-weight: 600;
  color: rgb(255 255 255 / .5);
  white-space: nowrap;
  animation: cot-cta-pulse 2.8s ease-in-out infinite;
}

@media (max-width: 640px) {
  .cot-sticky-bar__cta { display: none; }
  .cot-sticky-bar__inner { gap: 12px; }
}

/* ── Botão flutuante WhatsApp ─────────────────────────────── */
/* ── WhatsApp balão + botão (ambos position:fixed independentes) ─ */
.wa-bubble {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 55;
  background: #fff;
  border-radius: 16px 16px 0 16px;
  box-shadow: 0 8px 32px rgb(0 0 0 / .18);
  padding: 14px 16px 12px;
  max-width: 220px;
  font-size: .88rem;
  line-height: 1.45;
  color: var(--ink);
  opacity: 0;
  transform: translateY(12px) scale(.95);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.wa-bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-bubble p { margin: 0 0 10px; }
.wa-bubble__close {
  position: absolute;
  top: 6px; right: 8px;
  background: none; border: none;
  font-size: .75rem; color: var(--muted);
  cursor: pointer; line-height: 1;
  padding: 2px 4px;
}
.wa-bubble__close:hover { color: var(--ink); }
.wa-bubble__cta {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
}
.wa-bubble__cta:hover { background: #1ebe5d; }

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 55;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgb(0 0 0 / .22);
  animation: waPulse 2.6s ease-in-out infinite;
  transition: transform .2s ease, bottom .4s cubic-bezier(0.16,1,0.3,1);
}
.wa-float:hover { transform: scale(1.1); animation-play-state: paused; }

@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgb(0 0 0 / .22), 0 0 0 0 rgb(37 211 102 / .55); }
  60%  { box-shadow: 0 4px 20px rgb(0 0 0 / .22), 0 0 0 16px rgb(37 211 102 / 0); }
  100% { box-shadow: 0 4px 20px rgb(0 0 0 / .22), 0 0 0 0 rgb(37 211 102 / 0); }
}

/* Sobe quando a sticky bar da cotação estiver visível */
.cot-sticky-bar.is-visible ~ * .wa-float,
body.cot-bar-active .wa-float { bottom: 82px; }
.cot-sticky-bar.is-visible ~ * .wa-bubble,
body.cot-bar-active .wa-bubble { bottom: 150px; }

@media (max-width: 640px) {
  .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .wa-bubble { max-width: 180px; font-size: .82rem; right: 16px; bottom: 76px; }
}

/* ── Ícones sociais do rodapé ─────────────────────────────── */
.site-footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.footer-social__link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgb(10 31 68 / .1);
  border: 1px solid rgb(10 31 68 / .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: background .25s, transform .25s, border-color .25s;
  flex-shrink: 0;
}
.footer-social__link:hover {
  background: var(--brand-gradient);
  border-color: transparent;
  transform: translateY(-3px);
}
.footer-social__link svg { width: 13px; height: 13px; }

.footer-mesc { display: none; }

/* ── Tabela de volumes ───────────────────────────────────── */
.cot-volumes {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--white);
}

.cot-volumes__header {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr 1fr 36px;
  gap: 8px;
  padding: 10px 12px;
  background: #f4f6fb;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Label dentro da célula — oculta no desktop, visível no mobile */
.cot-vol-label {
  display: none;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Célula de volume (wrapping do input) */
.cot-vol-cell { display: contents; } /* no desktop, sem efeito no grid */

.cot-volume-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr 1fr 36px;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cot-volume-row:last-child { border-bottom: none; }

.cot-vol {
  padding: 8px 10px;
  font-size: .88rem;
  border-radius: 8px;
}

.cot-vol-remove {
  width: 28px; height: 28px;
  border: none;
  border-radius: 6px;
  background: #fee;
  color: #c0392b;
  cursor: pointer;
  font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cot-vol-remove:hover { background: #fcc; }

.cot-add-vol {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px dashed var(--navy-mid);
  border-radius: 8px;
  background: transparent;
  color: var(--navy-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.cot-add-vol:hover { background: rgb(11 62 125 / .06); border-style: solid; }

/* ── Navegação entre blocos ──────────────────────────────── */
.cot-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.btn-ghost {
  padding: 12px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--navy-mid); color: var(--navy); }

/* ── Privacidade ─────────────────────────────────────────── */
.cot-privacy {
  margin: 24px 0 0;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.55;
}
.cot-privacy a { color: var(--navy-mid); text-decoration: underline; }
.cot-privacy a:hover { text-decoration: none; }

/* ── Responsive cotação ──────────────────────────────────── */
@media (max-width: 760px) {
  .cot-row--2 { grid-template-columns: 1fr; }
  .cot-cep-row { grid-template-columns: 130px 1fr; }

  .cot-volumes__header,
  .cot-volume-row {
    grid-template-columns: 60px 1fr 1fr 1fr 1fr 28px;
    font-size: .78rem;
  }

  .cot-progress__line { max-width: 40px; }

  .cot-nav { flex-direction: column-reverse; align-items: stretch; }
  .btn-ghost, .cot-nav .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .cot-hero { min-height: 44vh; }
  .cot-hero__body { padding-block: 80px 56px; }

  .cot-volumes__header { display: none; }

  /* No mobile: cada célula vira um bloco com label + input empilhados */
  .cot-vol-cell {
    display: flex;
    flex-direction: column;
  }
  .cot-vol-label { display: block; }

  .cot-volume-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }
  .cot-volume-row:first-of-type { border-radius: 8px 8px 0 0; }
  .cot-volume-row:last-of-type  { border-bottom: none; border-radius: 0 0 8px 8px; }

  /* Qtd ocupa linha inteira no mobile */
  .cot-vol-cell:first-child { grid-column: 1 / -1; }

  .cot-vol-remove {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 8px;
    margin-top: 4px;
  }

  .cot-radio-grid { grid-template-columns: 1fr; }
  .cot-input--half { max-width: 100%; }
}
