/* =========================================================
   FELLIPE CONSÓRCIOS — Caminhões & Carretas
   style.css — Mobile First
   ========================================================= */

/* --- Variáveis --- */
:root {
  --bg:        #0A0A0A;
  --bg-2:      #0D0D0D;
  --bg-card:   #111111;
  --bg-card-2: #161616;
  --border:    #222222;
  --border-2:  #2A2A2A;
  --amber:     #F59E0B;
  --amber-h:   #FBBF24;
  --green:     #22C55E;
  --red:       #EF4444;
  --text:      #FFFFFF;
  --text-2:    #D1D5DB;
  --text-3:    #9CA3AF;
  --text-4:    #6B7280;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:    12px;
  --radius-sm: 8px;
  --max-w:     1280px;
  --t:         0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--amber); color: #000; }

.desktop-break { display: none; }
@media (min-width: 640px) { .desktop-break { display: inline; } }
@media (max-width: 639px) {
  #hero .hero-title br:first-of-type,
  #como-funciona .section-title br,
  #especialistas .section-title br:first-of-type,
  #especialistas .section-title br:last-of-type,
  #contato .section-title br,
  #cta-final .cta-final-title br:first-of-type,
  #cta-final .cta-final-title br:last-of-type {
    display: none;
  }
}

/* --- Scrollbar (desktop only) --- */
@media (min-width: 1024px) {
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--amber); }
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 480px)  { .container { padding: 0 1.25rem; } }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Padding de seção: mobile 3rem → desktop 5.5rem */
.section { padding: 3rem 0; }
@media (min-width: 640px)  { .section { padding: 4.5rem 0; } }
@media (min-width: 1024px) { .section { padding: 5.5rem 0; } }

.section--alt { background: var(--bg-2); }

/* =========================================================
   TIPOGRAFIA E UTILITÁRIOS
   ========================================================= */
.amber { color: var(--amber); }

.tag-label {
  display: inline-block;
  color: var(--amber);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-3);
  font-size: 1rem;
  max-width: 42rem;
  line-height: 1.65;
  text-wrap: balance;
}
@media (min-width: 640px) { .section-desc { font-size: 1.05rem; } }

.section-header { margin-bottom: 2.5rem; }
@media (min-width: 640px) { .section-header { margin-bottom: 3rem; } }
@media (min-width: 1024px) { .section-header { margin-bottom: 3.5rem; } }

.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--t);
  cursor: pointer;
  font-size: .95rem;
  padding: .9rem 1.75rem;
  /* Sem white-space:nowrap — permite wrap em telas pequenas */
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 640px) {
  .btn { font-size: 1rem; padding: 1rem 2rem; }
}

.btn:hover { transform: translateY(-1px); }

.btn-amber  { background: var(--amber); color: #000; }
.btn-amber:hover { background: var(--amber-h); box-shadow: 0 6px 20px rgba(245,158,11,.3); }

.btn-outline { border: 2px solid var(--amber); color: var(--amber); background: transparent; }
.btn-outline:hover { background: var(--amber); color: #000; }

.btn-dark  { background: #000; color: #fff; }
.btn-dark:hover { background: #111; }

.btn-sm { padding: .6rem 1.1rem; font-size: .82rem; white-space: nowrap; }
@media (min-width: 640px) { .btn-sm { padding: .65rem 1.25rem; font-size: .875rem; } }

.btn-full { width: 100%; display: flex; justify-content: center; }

/* =========================================================
   HEADER
   ========================================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
#header.scrolled {
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.75rem;
  padding: .5rem 0;
  gap: .75rem;
}
@media (min-width: 1024px) { .header-inner { min-height: 5rem; padding: 0; } }

.logo {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
@media (max-width: 639px) {
  .logo { padding-left: .25rem; }
}
.logo-img {
  display: block;
  width: clamp(9rem, 34vw, 13.5rem);
  height: auto;
  max-width: 100%;
}
@media (min-width: 640px) {
  .logo-img { width: clamp(10rem, 20vw, 14rem); }
}
footer .logo {
  flex: 0 1 auto;
  padding-left: 0;
}
footer .logo-img {
  width: clamp(10rem, 24vw, 15rem);
}

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
}
.nav-desktop a {
  color: var(--text-3);
  font-size: .85rem;
  font-weight: 500;
  transition: color var(--t);
  white-space: nowrap;
}
.nav-desktop a:hover { color: var(--amber-h); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; flex-shrink: 0; } }

/* Hamburger */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: .5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }

.menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
  transform-origin: center;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0f0f0f;
  border-top: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
  max-height: calc(100svh - 4rem);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }

.mobile-menu nav a {
  display: block;
  padding: .9rem 1.25rem;
  color: var(--text-2);
  font-size: .9rem;
  border-bottom: 1px solid #181818;
  transition: color var(--t), background var(--t);
  /* Área de toque: mínimo 44px */
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu nav a:hover { color: var(--text); background: #1a1a1a; }
.mobile-menu .btn { margin: 1rem 1.25rem 1.25rem; width: calc(100% - 2.5rem); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--bg);
  padding-top: 5.25rem;
  padding-bottom: 2.75rem;
}
@media (min-width: 640px)  {
  .hero {
    min-height: 100svh; /* svh = short viewport height, fallback abaixo */
    min-height: 100vh;
    align-items: center;
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) { .hero { padding-top: 6.5rem; padding-bottom: 5rem; } }

/* Grade sutil — asfalto/metal */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
@media (min-width: 640px) { .hero::before { background-size: 60px 60px; } }

/* Brilho âmbar lateral */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at right 40%, rgba(245,158,11,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.75rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr auto; gap: 4rem; }
}

.hero-content {
  min-width: 0;
  max-width: 42rem;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--amber);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .4rem .85rem;
  border-radius: var(--radius); /* retangular para mobile (evita quebra do pill) */
  margin-bottom: 1.25rem;
  max-width: 100%;
}
@media (min-width: 480px) {
  .hero-badge { font-size: .7rem; border-radius: 999px; letter-spacing: .12em; }
}
.hero-badge span {
  width: 7px; height: 7px;
  flex-shrink: 0;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Headline */
.hero-title {
  font-size: clamp(1.95rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.06;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero-sub {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: .6rem;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.1rem; max-width: 36rem; } }

.hero-sub-2 {
  color: var(--text-4);
  font-size: .9rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero-sub-2 { font-size: 1rem; margin-bottom: 2.5rem; } }

/* Botões do hero: empilhados em mobile, lado a lado em sm+ */
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.25rem;
}
.hero-btns > * { width: 100%; }
@media (min-width: 480px) {
  .hero-btns { flex-direction: row; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.75rem; }
  .hero-btns > * { width: auto; }
}

/* Trust indicators */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
@media (min-width: 480px) {
  .hero-trust { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--text-3);
  font-size: .8rem;
}
.hero-trust-item svg { color: var(--amber); flex-shrink: 0; }

/* Monograma decorativo — só desktop */
.hero-deco {
  display: none;
  font-size: 14vw;
  font-weight: 900;
  color: rgba(245,158,11,.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .hero-deco { display: block; } }

/* Fade inferior */
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

/* =========================================================
   SEÇÃO DOR
   ========================================================= */
.pain-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--t), background var(--t);
}
@media (min-width: 640px) { .pain-card { padding: 1.5rem; } }
.pain-card:hover { border-color: rgba(245,158,11,.35); background: var(--bg-card-2); }

.pain-icon  { font-size: 1.75rem; margin-bottom: .75rem; }
@media (min-width: 640px) { .pain-icon { font-size: 2rem; margin-bottom: 1rem; } }

.pain-title { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
@media (min-width: 640px) { .pain-title { font-size: .95rem; } }
.pain-card:hover .pain-title { color: var(--amber-h); }
.pain-text  { color: var(--text-3); font-size: .82rem; line-height: 1.6; }

.pain-bridge { margin-top: 2.5rem; text-align: center; }
@media (min-width: 640px) { .pain-bridge { margin-top: 3rem; } }

.pain-bridge-box {
  display: inline-block;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem;
  max-width: 100%;
  width: 100%;
  text-align: center;
}
@media (min-width: 480px) { .pain-bridge-box { padding: 1.5rem 2rem; width: auto; } }

.pain-bridge-box p:first-child {
  color: var(--text); font-size: .95rem; font-weight: 600; line-height: 1.4;
}
.pain-bridge-box p:last-child {
  color: var(--amber); font-size: .95rem; font-weight: 700; margin-top: .25rem;
}
@media (min-width: 640px) {
  .pain-bridge-box p:first-child,
  .pain-bridge-box p:last-child { font-size: 1.05rem; }
}

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.solution-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .solution-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }

.solution-steps { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .solution-steps { gap: 1rem; } }

.step {
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem;
  transition: border-color var(--t);
}
@media (min-width: 640px) { .step { padding: 1.25rem; gap: 1.25rem; } }
@media (max-width: 379px) { .step { flex-direction: column; } }
.step:hover { border-color: rgba(245,158,11,.35); }

.step-num {
  width: 2.75rem; height: 2.75rem;
  flex-shrink: 0;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--amber); font-size: .75rem;
}
@media (min-width: 640px) { .step-num { width: 3rem; height: 3rem; font-size: .8rem; } }

.step-title { font-weight: 700; font-size: .9rem; margin-bottom: .3rem; }
@media (min-width: 640px) { .step-title { font-size: .95rem; margin-bottom: .35rem; } }
.step:hover .step-title { color: var(--amber); }
.step-text { color: var(--text-3); font-size: .82rem; line-height: 1.6; }

.disclaimer-box {
  margin-top: 2.5rem;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--bg-card);
  font-size: .82rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.65;
}
@media (min-width: 640px) { .disclaimer-box { padding: 1.5rem; font-size: .875rem; margin-top: 3.5rem; } }
.disclaimer-box strong { color: var(--text); }
.disclaimer-box a { color: var(--amber); font-weight: 600; }
.disclaimer-box a:hover { color: var(--amber-h); }

/* =========================================================
   VÍDEO RESPONSIVO
   ========================================================= */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 56rem;
  margin: 0 auto;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* =========================================================
   PARA QUEM É
   ========================================================= */
.forwho-grid {
  display: grid;
  gap: .875rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .forwho-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .forwho-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1280px) { .forwho-grid { grid-template-columns: repeat(4, 1fr); } }

.forwho-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--t), background var(--t), transform var(--t);
  color: inherit;
  /* tap highlight para mobile */
  -webkit-tap-highlight-color: rgba(245,158,11,.1);
}
@media (min-width: 640px) { .forwho-card { padding: 1.5rem; } }

@media (hover: hover) {
  .forwho-card:hover {
    border-color: rgba(245,158,11,.5);
    background: var(--bg-card-2);
    transform: translateY(-2px);
  }
  .forwho-card:hover .forwho-title { color: var(--amber-h); }
  .forwho-card:hover .forwho-cta   { gap: .6rem; }
}
/* Estado ativo (mobile tap) */
.forwho-card:active {
  background: var(--bg-card-2);
  border-color: rgba(245,158,11,.4);
}

.forwho-icon  { font-size: 2.25rem; margin-bottom: .875rem; }
@media (min-width: 640px) { .forwho-icon { font-size: 2.5rem; margin-bottom: 1rem; } }
.forwho-title { font-weight: 700; font-size: .9rem; margin-bottom: .4rem; }
@media (min-width: 640px) { .forwho-title { font-size: .95rem; } }
.forwho-desc  { color: var(--text-3); font-size: .78rem; line-height: 1.55; margin-bottom: .875rem; flex: 1; }
.forwho-models { margin-bottom: .875rem; }
.forwho-model {
  display: flex; align-items: center; gap: .35rem;
  font-size: .7rem; color: var(--text-4); margin-bottom: .2rem;
}
.forwho-model::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--amber); border-radius: 50%; flex-shrink: 0;
}
.forwho-cta {
  display: flex; align-items: center; gap: .35rem;
  color: var(--amber); font-size: .78rem; font-weight: 700;
  transition: gap var(--t); margin-top: auto;
}

/* =========================================================
   VEÍCULOS
   ========================================================= */
.vehicles-grid {
  display: grid;
  gap: .875rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .vehicles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vehicles-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1280px) { .vehicles-grid { grid-template-columns: repeat(4, 1fr); } }

.vehicle-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
  border: 1px solid;
}
.vehicle-card--heavy   { background: linear-gradient(135deg,#0a1628,#0d2444); border-color:#1a3a6a; }
.vehicle-card--heavy:hover   { border-color:#2a5aa0; }
.vehicle-card--truck   { background: linear-gradient(135deg,#0a2010,#0d3318); border-color:#1a4a2a; }
.vehicle-card--truck:hover   { border-color:#2a7a40; }
.vehicle-card--light   { background: linear-gradient(135deg,#281a08,#3d2a10); border-color:#5a3a18; }
.vehicle-card--light:hover   { border-color:#8a5a28; }
.vehicle-card--van     { background: linear-gradient(135deg,#1a0a28,#2a1040); border-color:#3a1860; }
.vehicle-card--van:hover     { border-color:#6a30a0; }
.vehicle-card--trailer { background: linear-gradient(135deg,#280a0a,#401010); border-color:#601818; }
.vehicle-card--trailer:hover { border-color:#a02828; }
.vehicle-card--bus     { background: linear-gradient(135deg,#0a2828,#0d3a3a); border-color:#1a5050; }
.vehicle-card--bus:hover     { border-color:#2a8080; }
.vehicle-card--microbus{ background: linear-gradient(135deg,#0a2028,#0d3040); border-color:#1a4058; }
.vehicle-card--microbus:hover{ border-color:#2a6090; }

.vehicle-header { padding: 1rem 1.1rem .65rem; }
@media (min-width: 640px) { .vehicle-header { padding: 1.25rem 1.25rem .75rem; } }
.vehicle-tag  { color: rgba(255,255,255,.5); font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.vehicle-name { font-weight: 700; font-size: .82rem; margin-top: .2rem; }
@media (min-width: 640px) { .vehicle-name { font-size: .875rem; } }

/* Cores por tipo (bug corrigido: espaço antes de .vehicle-name) */
.vehicle-card--heavy   .vehicle-name { color: #7BB5FF; }
.vehicle-card--truck   .vehicle-name { color: #6BDD90; }
.vehicle-card--light   .vehicle-name { color: #FFB86B; }
.vehicle-card--van     .vehicle-name { color: #BB86FC; }
.vehicle-card--trailer .vehicle-name { color: #FF8585; }
.vehicle-card--bus     .vehicle-name { color: #6BDDD8; }
.vehicle-card--microbus .vehicle-name { color: #6BB5DD; }

.vehicle-models { background: var(--bg-card); padding: .875rem 1.1rem; }
@media (min-width: 640px) { .vehicle-models { padding: 1rem 1.25rem; } }

.vehicle-model-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  margin-bottom: .45rem;
}
@media (min-width: 640px) {
  .vehicle-model-item {
    flex-direction: row;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .3rem;
  }
}
.vehicle-model-item:last-child { margin-bottom: 0; }
.model-name {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--text-2); font-weight: 500;
}
@media (min-width: 640px) { .model-name { font-size: .82rem; gap: .5rem; } }
.model-name::before {
  content: ''; width: 5px; height: 5px;
  background: var(--amber); border-radius: 50%; flex-shrink: 0;
}
.model-note {
  font-size: .68rem;
  color: var(--text-4);
  flex-shrink: 0;
  padding-left: .75rem;
}
@media (min-width: 640px) {
  .model-note {
    white-space: nowrap;
    padding-left: 0;
  }
}

.vehicles-footer {
  text-align: center; margin-top: 1.75rem;
  color: var(--text-4); font-size: .82rem;
}
@media (min-width: 640px) { .vehicles-footer { margin-top: 2rem; font-size: .875rem; } }
.vehicles-footer a { color: var(--amber); font-weight: 600; }
.vehicles-footer a:hover { color: var(--amber-h); }

/* =========================================================
   VANTAGENS — COMPARATIVO
   ========================================================= */

/* Mobile: empilha cada linha em card simples */
.comparison-header { display: none; }

@media (min-width: 640px) {
  .comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: .75rem;
    padding: 0 1rem .5rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-4);
  }
  .comparison-header span:last-child { color: var(--amber); }
}

.comparison-rows { display: flex; flex-direction: column; gap: .5rem; }

.comparison-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1rem;
  transition: border-color var(--t);
  /* Mobile: stack vertical */
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
@media (min-width: 640px) {
  .comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: .75rem;
    align-items: start;
    padding: 1rem;
  }
}
.comparison-row.winner { background: rgba(245,158,11,.05); border-color: rgba(245,158,11,.2); }
.comparison-row:hover  { border-color: rgba(245,158,11,.25); }

.c-topic { font-weight: 700; font-size: .88rem; color: var(--amber); }
@media (min-width: 640px) { .c-topic { color: var(--text); font-size: .9rem; } }

.c-bad, .c-good {
  font-size: .78rem; line-height: 1.5;
  display: flex; gap: .35rem; align-items: flex-start;
}
@media (min-width: 640px) { .c-bad, .c-good { font-size: .8rem; gap: .4rem; } }
.c-bad  { color: var(--text-3); }
.c-good { color: var(--text-2); }
.c-icon-bad  { color: var(--red);   flex-shrink: 0; margin-top: .1rem; }
.c-icon-good { color: var(--green); flex-shrink: 0; margin-top: .1rem; }

/* Labels em mobile para c-bad e c-good */
@media (max-width: 639px) {
  .c-bad::before  {
    content: 'Financiamento: ';
    font-weight: 700;
    color: var(--text-4);
    flex-shrink: 0;
  }
  .c-good::before {
    content: 'Consórcio: ';
    font-weight: 700;
    color: var(--amber);
    flex-shrink: 0;
  }
}

/* =========================================================
   AUTORIDADE
   ========================================================= */
.authority-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .authority-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }

.authority-cards {
  display: grid;
  gap: .875rem;
  grid-template-columns: 1fr;          /* 1 col mobile */
}
@media (min-width: 640px) { .authority-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .authority-cards { gap: 1rem; } }

.stack-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.stack-actions > * { width: 100%; }
@media (min-width: 480px) {
  .stack-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .stack-actions > * { width: auto; }
}

.authority-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  transition: border-color var(--t);
}
@media (min-width: 640px) { .authority-card { padding: 1.25rem; } }
.authority-card:hover { border-color: rgba(245,158,11,.35); }
.authority-icon  { font-size: 1.4rem; margin-bottom: .6rem; }
@media (min-width: 640px) { .authority-icon { font-size: 1.5rem; margin-bottom: .75rem; } }
.authority-title { font-weight: 700; font-size: .82rem; margin-bottom: .3rem; }
@media (min-width: 640px) { .authority-title { font-size: .875rem; } }
.authority-card:hover .authority-title { color: var(--amber); }
.authority-text  { color: var(--text-4); font-size: .75rem; line-height: 1.55; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: rgba(245,158,11,.3); }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .875rem;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  text-align: left;
  transition: background var(--t);
  color: var(--text);
  font-weight: 600;
  font-size: .85rem;
  line-height: 1.45;
  min-height: 48px; /* touch target */
}
@media (min-width: 640px) { .faq-btn { padding: 1.25rem 1.5rem; font-size: .9rem; } }
.faq-btn:hover { background: var(--bg-card-2); }

.faq-icon {
  width: 1.4rem; height: 1.4rem;
  flex-shrink: 0;
  margin-top: .1rem;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  transition: transform var(--t);
  font-size: .95rem;
  line-height: 1;
}
@media (min-width: 640px) { .faq-icon { width: 1.5rem; height: 1.5rem; } }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding: 0 1.1rem 1.1rem;
  color: var(--text-3);
  font-size: .82rem;
  line-height: 1.7;
  background: #0e0e0e;
}
@media (min-width: 640px) {
  .faq-answer p { padding: 0 1.5rem 1.25rem; font-size: .875rem; }
}

/* =========================================================
   CONTATO
   ========================================================= */
.contact-grid {
  display: grid;
  gap: 2rem;                    /* menor gap no mobile */
}
@media (min-width: 640px)  { .contact-grid { gap: 2.5rem; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }

.contact-perks { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .contact-perks { gap: 1.25rem; margin-top: 2rem; } }

.contact-perk { display: flex; gap: .875rem; align-items: flex-start; }
.contact-perk-icon {
  width: 2.25rem; height: 2.25rem;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
@media (min-width: 640px) { .contact-perk-icon { width: 2.5rem; height: 2.5rem; font-size: 1.1rem; } }
.contact-perk-title { font-weight: 700; font-size: .82rem; margin-bottom: .1rem; }
.contact-perk-text  { color: var(--text-3); font-size: .78rem; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  order: -1;
}
@media (min-width: 480px) { .contact-form-wrap { padding: 1.5rem; } }
@media (min-width: 640px) { .contact-form-wrap { padding: 2rem; } }
@media (min-width: 1024px) { .contact-form-wrap { order: 0; } }
.contact-form-wrap h3 { font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .contact-form-wrap h3 { font-size: 1.1rem; margin-bottom: 1.5rem; } }

.form-group { margin-bottom: 1rem; }
@media (min-width: 640px) { .form-group { margin-bottom: 1.25rem; } }

.form-label {
  display: block; font-size: .78rem; font-weight: 600;
  color: var(--text-3); margin-bottom: .35rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  color: var(--text);
  font-size: 1rem;      /* mínimo 16px — evita zoom no iOS Safari */
  transition: border-color var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: #444; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(245,158,11,.6);
}
.form-select { cursor: pointer; }
.form-select option { background: #1a1a1a; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-note {
  color: var(--text-4); font-size: .7rem; text-align: center; margin-top: .625rem;
  line-height: 1.5;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
#cta-final {
  position: relative;
  background: var(--amber);
  padding: 3.5rem 0;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 640px)  { #cta-final { padding: 5rem 0; } }
@media (min-width: 1024px) { #cta-final { padding: 7rem 0; } }

#cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 18px,
    rgba(0,0,0,.05) 18px, rgba(0,0,0,.05) 36px
  );
  pointer-events: none;
}

.cta-final-inner {
  position: relative; z-index: 2;
  max-width: 52rem; margin: 0 auto;
}

.cta-final-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,0,0,.15);
  border-radius: 999px;
  padding: .35rem .875rem;
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: #000; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .cta-final-badge { font-size: .7rem; margin-bottom: 2rem; } }
.cta-final-badge span {
  width: 7px; height: 7px; background: #000;
  border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0;
}

.cta-final-title {
  font-size: clamp(1.6rem, 5vw, 3.25rem);
  font-weight: 900; line-height: 1.1; color: #000;
  margin-bottom: 1.1rem;
  text-wrap: balance;
}
.cta-final-sub   { color: rgba(0,0,0,.7); font-size: .95rem; margin-bottom: .6rem; line-height: 1.5; }
.cta-final-sub-2 { color: #000; font-weight: 600; margin-bottom: 2rem; font-size: .95rem; }
@media (min-width: 640px) {
  .cta-final-sub, .cta-final-sub-2 { font-size: 1.1rem; }
  .cta-final-sub-2 { margin-bottom: 2.5rem; }
}

/* Botões do CTA final: empilhados em mobile */
.cta-final-btns {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.25rem;
  align-items: center;
}
.cta-final-btns > * { width: 100%; }
@media (min-width: 480px) {
  .cta-final-btns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}
/* Botão principal do CTA final: 100% em mobile */
.cta-final-btns > *:first-child { width: 100%; }
@media (min-width: 480px) {
  .cta-final-btns > *:first-child { width: auto; }
  .cta-final-btns > * { width: auto; }
}

.cta-final-note { color: rgba(0,0,0,.55); font-size: .78rem; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 3rem 0 0;
}
@media (min-width: 640px) { footer { padding: 4rem 0 0; } }

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; } }

.footer-brand p {
  color: var(--text-4); font-size: .82rem; line-height: 1.65; margin: 1rem 0 1.25rem;
}
@media (min-width: 640px) { .footer-brand p { font-size: .85rem; margin: 1.25rem 0 1.5rem; } }

.footer-wa-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--green); font-size: .82rem; font-weight: 600;
  transition: color var(--t);
  min-height: 44px;
}
.footer-wa-link:hover { color: #4ade80; }

.footer-col h4 {
  color: var(--text); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  color: var(--text-4); font-size: .82rem; transition: color var(--t);
  min-height: 44px; display: flex; align-items: center;
}
@media (min-width: 1024px) { .footer-col ul a { min-height: unset; } }
.footer-col ul a:hover { color: var(--amber-h); }

.footer-cta-col p { color: var(--text-4); font-size: .82rem; margin-bottom: 1.1rem; line-height: 1.5; }
.footer-cta-col .btn {
  display: block; text-align: center; margin-bottom: .75rem;
  font-size: .875rem; width: 100%;
}
.footer-cta-col .btn-ghost {
  display: block; text-align: center;
  border: 1px solid var(--border-2);
  color: var(--text-3); padding: .75rem;
  border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600;
  transition: all var(--t);
}
.footer-cta-col .btn-ghost:hover { border-color: #555; color: var(--text); }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 1.25rem 0;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .footer-bottom { padding: 1.5rem 0; margin-top: 3rem; } }

.footer-bottom-inner {
  display: flex; flex-direction: column; gap: .4rem;
  font-size: .72rem; color: var(--text-4); text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row; justify-content: space-between; text-align: left;
  }
}

/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */
#wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .4s ease, transform .4s ease;
  display: flex; align-items: center; justify-content: center;
  width: 3.25rem; height: 3.25rem;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 6px 24px rgba(34,197,94,.4);
  color: #fff;
  /* Touch target adequado */
  min-width: 3.25rem; min-height: 3.25rem;
}
@media (min-width: 640px) {
  #wa-float { width: 3.5rem; height: 3.5rem; bottom: 1.5rem; right: 1.5rem; }
}
#wa-float.visible { opacity: 1; transform: scale(1); }
#wa-float:hover   { background: #16a34a; }

@media (hover: hover) {
  #wa-float:hover { transform: scale(1.1) !important; }
}

#wa-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #22C55E;
  animation: ping 2.2s cubic-bezier(0,0,.2,1) infinite;
  opacity: .4;
}

.wa-tooltip {
  position: absolute;
  right: 3.75rem; top: 50%;
  transform: translateY(-50%);
  background: #000; color: #fff;
  font-size: .72rem; font-weight: 600;
  padding: .3rem .7rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t);
  border: 1px solid var(--border-2);
}
#wa-float:hover .wa-tooltip { opacity: 1; }

/* Oculta tooltip em mobile (irrelevante sem hover real) */
@media (max-width: 1023px) { .wa-tooltip { display: none; } }

/* =========================================================
   ANIMAÇÕES
   ========================================================= */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
