/* ============================================================
   TARMAC LOGÍSTICA — Design System v2
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === TOKENS === */
:root {
  /* Cores */
  --ink:        #0F0F0E;
  --ink-2:      #1E1E1B;
  --accent:     #F5C518;
  --accent-dk:  #D4A800;
  --bg:         #FAFAF9;
  --surface:    #F2F2EF;
  --text:       #1A1A18;
  --text-2:     #5C5C58;
  --text-3:     #9C9C98;
  --border:     #E2E2DD;
  --white:      #FFFFFF;

  /* Tipografia */
  --f-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;

  /* Nav */
  --nav-h: 68px;

  /* Transições */
  --t: 220ms ease;
}

/* === BASE === */
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p { max-width: 64ch; }

/* === LAYOUT === */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap--narrow { max-width: 760px; }

/* === COMPONENTES BASE === */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.eyebrow--light  { color: rgba(255,255,255,0.4); }
.eyebrow--accent { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: var(--ink);
}
.btn--primary:hover { background: var(--accent-dk); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.7); }

.btn--wa {
  background: #25D366;
  color: #fff;
  border: none;
}
.btn--wa:hover { background: #1ebe5d; transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--text); background: var(--surface); }

.btn--lg { padding: 17px 36px; font-size: 16px; }

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t);
}

.nav.scrolled {
  background: rgba(250,250,249,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 0;
}

.nav__logo img { height: 30px; width: auto; }
/* nav transparente (hero escuro) → logo dark */
.nav__logo-light { display: none; }
.nav__logo-dark  { display: block; }
/* nav scrolled (fundo claro) → logo light */
.nav.scrolled .nav__logo-light { display: block; }
.nav.scrolled .nav__logo-dark  { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a:hover { color: var(--white); }

.nav.scrolled .nav__links a { color: var(--text-2); }
.nav.scrolled .nav__links a:hover { color: var(--text); }

.nav__divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.2);
  margin: 0 4px;
}
.nav.scrolled .nav__divider { background: var(--border); }

.nav__portal {
  font-weight: 600 !important;
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px !important;
}
.nav__portal:hover { color: var(--white) !important; }
.nav__portal-arrow {
  font-size: 11px;
  opacity: 0.5;
  transition: opacity var(--t), transform var(--t);
  display: inline-block;
}
.nav__portal:hover .nav__portal-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.nav.scrolled .nav__portal {
  color: var(--text-2) !important;
}
.nav.scrolled .nav__portal:hover {
  color: var(--text) !important;
}

.nav__cta {
  margin-left: 16px;
  padding: 10px 20px;
  font-size: 14px;
}

/* Hamburguer */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.scrolled .nav__burger span { background: var(--ink); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav__overlay.is-open { opacity: 1; pointer-events: all; }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--ink);
  z-index: 195;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 32px) 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__mobile.is-open { transform: translateX(0); }

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav__mobile-link {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--t);
}
.nav__mobile-link:hover { color: var(--white); }

.nav__mobile-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav__mobile-portal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}
.nav__mobile-portal:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10,10,9,0.88) 0%,
    rgba(10,10,9,0.72) 50%,
    rgba(10,10,9,0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 100px;
}

.hero__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 28px;
  line-height: 1.1;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   DOR (seção 2)
   ============================================================ */
.pain {
  padding: 100px 0;
  background: var(--bg);
}

.pain__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pain__left h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--text);
  margin-bottom: 16px;
}

.pain__left h2 em {
  font-style: italic;
  color: var(--text-2);
  font-weight: 400;
}

.pain__left p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Grid de cards de dor */
.pain__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pain__card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color var(--t), background var(--t);
}

.pain__card:hover {
  background: var(--white);
  border-color: #d0d0ca;
}

.pain__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-3);
  margin-top: 1px;
}

.pain__card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

.pain__right {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  padding: 48px;
  background: var(--ink);
  border-radius: 16px;
  color: var(--white);
}

.pain__verdict {
  font-family: var(--f-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
}

.pain__verdict em {
  font-style: normal;
  color: var(--accent);
}

.pain__checks {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
}

.pain__checks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pain__checks li:last-child { border-bottom: none; }

.pain__checks svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.pain__checks strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  font-family: var(--f-head);
  letter-spacing: -0.01em;
}

.pain__checks span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ============================================================
   COMO FUNCIONA (seção 3)
   ============================================================ */
.how {
  padding: 100px 0;
  background: var(--surface);
}

.how__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.how__head h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--text);
}

.how__head p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 44ch;
}

/* Cabeçalho da cobertura */
.cov__top {
  max-width: 600px;
  margin-bottom: 32px;
}

.cov__top h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text);
  margin-bottom: 12px;
}

.cov__top p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: none;
}

/* Grid 3+3 */
.cov__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cov__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow var(--t), border-color var(--t);
}

.cov__card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border-color: #c8c8c2;
}

.cov__card--origin {
  background: rgba(245,197,24,0.07);
  border-color: rgba(245,197,24,0.30);
}

.cov__card--origin strong { color: var(--text); }
.cov__card--origin li { color: var(--text); }
.cov__card--origin li::before { color: var(--text-2); }

.cov__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.cov__card--origin:hover {
  border-color: rgba(245,197,24,0.45);
  box-shadow: 0 4px 16px rgba(245,197,24,0.1);
}

.cov__uf {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.cov__card strong {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 10px;
}

.cov__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,197,24,0.15);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  width: fit-content;
}

.cov__card ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cov__card li {
  font-size: 13px;
  color: var(--text-2);
  padding-left: 12px;
  position: relative;
}

.cov__card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--text-3);
}

.cov__more {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 6px;
  font-style: italic;
}

@media (max-width: 900px) {
  .cov__top  { grid-template-columns: 1fr; }
  .cov__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cov__grid { grid-template-columns: 1fr; }
}

.how__close {
  margin-top: 40px;
  padding: 20px 28px;
  background: rgba(245,197,24,0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}

.how__close span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  font-style: italic;
}

/* ============================================================
   PROVA REAL (seção 4)
   ============================================================ */
.proof {
  padding: 100px 0 100px;
  background: var(--bg);
}

.proof__top {
  margin-bottom: 40px;
}

.proof__top h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-top: 8px;
}

/* Viewer: palco + sidebar */
.proof__viewer {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 12px;
  height: 320px;
}

/* Palco */
.proof__stage {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  height: 100%;
}

.proof__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.proof__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.proof__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proof__slide-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 20px;
  background: linear-gradient(to top, rgba(8,8,6,0.80), transparent);
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

/* Dots */
.proof__dots {
  position: absolute;
  bottom: 18px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.proof__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background var(--t);
}

.proof__dot.is-active { background: var(--white); }

/* Sidebar filmstrip */
.proof__sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  height: 100%;
}

.proof__sgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof__scat {
  font-family: var(--f-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
}

.proof__srow {
  display: flex;
  gap: 4px;
}

.proof__sthumb {
  flex: 1;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 5px;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--surface);
  transition: border-color var(--t);
}

.proof__sthumb.is-active {
  border-color: var(--accent);
}

.proof__sthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .proof__viewer {
    grid-template-columns: 1fr;
    height: auto;
  }
  .proof__stage { height: 260px; }
  .proof__sidebar {
    flex-direction: row;
    gap: 12px;
    height: auto;
  }
  .proof__sgroup { flex: 1; }
}

/* ============================================================
   SISTEMA (seção 5)
   ============================================================ */
.system {
  padding: 100px 0;
  background: var(--surface);
}

.system__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.system__text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 20px;
}

.system__text > p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.system__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.system__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.system__list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%230F0F0E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.system__visual {
  position: relative;
}

.system__screen {
  background: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}

.system__screen-placeholder {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.system__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   MOTORISTAS (seção 6)
   ============================================================ */
/* Portal do cliente */
.portal {
  padding: 100px 0;
  background: var(--ink-2);
}

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

.portal__text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}

.portal__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
}

.portal__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.portal__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.portal__features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.btn--portal-cta {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(245, 197, 24, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.btn--portal-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn--portal-cta .btn-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.btn--portal-cta:hover .btn-arrow {
  transform: translateX(4px);
}

.portal__cta { display: inline-flex; }

/* Screenshots empilhadas */
.portal__screens {
  position: relative;
  height: 380px;
}

.portal__screen {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.portal__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.portal__screen--back {
  width: 62%;
  height: 88%;
  top: 0;
  right: 0;
  opacity: 0.7;
}

.portal__screen--front {
  width: 75%;
  height: 82%;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .portal__inner { grid-template-columns: 1fr; gap: 48px; }
  .portal__screens { height: 300px; }
}

/* ============================================================
   EQUIPE / CONTATO (seção 7)
   ============================================================ */
.team {
  padding: 100px 0;
  background: var(--bg);
}

.team__head {
  max-width: 600px;
  margin-bottom: 64px;
}

.team__head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
}

.team__head p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

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

.team__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--t), transform var(--t);
}

.team__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.team__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-3);
}

.team__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__name {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}

.team__role {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}

.team__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25D366;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--t);
  width: fit-content;
}

.team__wa:hover { background: #1DA851; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding: 56px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img { height: 28px; margin-bottom: 16px; }

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 30ch;
}

.footer__col h4 {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }

.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.footer__cnpj {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   MODAL DE COTAÇÃO
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10,10,9,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform var(--t);
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 20px;
  color: var(--text-3);
  padding: 8px;
}

.modal h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.modal p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 32px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--t);
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--text);
}

.form-field textarea { min-height: 100px; resize: vertical; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact { padding: 100px 0; background: var(--surface); }

.contact__head { text-align: center; margin-bottom: 56px; }
.contact__head h2 { margin-top: 12px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact__card {
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__card--dark {
  background: var(--ink);
  color: var(--white);
}

.contact__card--light {
  background: var(--white);
  border: 1.5px solid var(--border);
}

.contact__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(245,197,24,0.18);
  color: var(--accent-dk);
  width: fit-content;
}

.contact__badge--outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-3);
}

.contact__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(245,197,24,0.5);
}

.contact__person {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__person strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.contact__person span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.contact__quote {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  margin: 0;
}

.contact__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

.contact__form-intro {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact__field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.contact__field input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--t);
}

.contact__field input:focus {
  outline: none;
  border-color: var(--text);
}

.contact__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 900px) {
  .pain__wrap      { grid-template-columns: 1fr; }
  .pain__right     { position: static; }
  .how__head       { grid-template-columns: 1fr; }
  .how__items      { grid-template-columns: 1fr; }
  .proof__head     { flex-direction: column; align-items: flex-start; }
  .proof__grid     { grid-template-columns: 1fr 1fr; }
  .proof__img--tall  { grid-row: span 1; aspect-ratio: 4/3; }
  .proof__img--wide  { grid-column: span 2; }
  .system__inner   { grid-template-columns: 1fr; }
  .drivers__inner  { grid-template-columns: 1fr; }
  .team__grid      { grid-template-columns: 1fr 1fr; }
  .footer__inner   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav__links { display: none; }
  .hero__sub br { display: none; }
  .proof__grid { grid-template-columns: 1fr; }
  .proof__img--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .team__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .proof__stats { gap: 24px; }
}
