/* ======================================================
   VARIÁVEIS & RESET
   ====================================================== */
:root {
  --bg:        #0A0A0A;
  --bg-2:      #111111;
  --bg-3:      #1A1A1A;
  --bg-alt:    #0F0F0F;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);

  --blue:      #1E40AF;
  --blue-2:    #2563EB;
  --blue-light:#60A5FA;

  --amber:     #F59E0B;
  --amber-dark:#D97706;

  --green:     #10B981;
  --green-dark:#059669;

  --red:       #DC2626;
  --red-dark:  #B91C1C;

  --text:      #FFFFFF;
  --text-2:    #A3A3A3;
  --text-3:    #6B7280;

  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 4px 32px rgba(0,0,0,0.5);
  --transition: .2s ease;

  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--bg-alt); }

.text-amber { color: var(--amber); }
.text-blue  { color: var(--blue-light); }
.text-green { color: var(--green); }

/* ======================================================
   TIPOGRAFIA COMUM
   ====================================================== */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }

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

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.section-desc {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 50ch;
}
.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);
  padding: .875rem 1.75rem;
  font-size: .9375rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-amber {
  background: var(--amber);
  color: #000;
}
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-1px); }

.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-blue {
  background: var(--blue-2);
  color: #fff;
}
.btn-blue:hover { background: var(--blue); transform: translateY(-1px); }

.btn-outline {
  border: 2px solid var(--border-2);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--text-2); background: rgba(255,255,255,.05); }

.btn-sm   { padding: .625rem 1.25rem; font-size: .875rem; }
.btn-lg   { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ======================================================
   HEADER
   ====================================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 68px;
}

.logo-img { height: 36px; width: auto; object-fit: contain; }

.nav-desktop {
  display: none;
  gap: 1.75rem;
  margin: 0 auto 0 2rem;
}
.nav-desktop a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav-desktop a:hover { color: var(--text); }

.header-cta { margin-left: auto; }

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1rem; }
.mobile-menu nav a {
  padding: .75rem 1rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu nav a:hover { background: var(--bg-3); color: var(--text); }

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(30,64,175,.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(245,158,11,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: .375rem .875rem;
  font-size: .8rem;
  color: var(--text-2);
  margin-bottom: 2rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  color: var(--text-3);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ======================================================
   VEÍCULOS
   ====================================================== */
.vehicle-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}

.vtab {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.25rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-2);
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}
.vtab:hover { border-color: var(--border-2); color: var(--text); }
.vtab.active { border-color: var(--amber); color: var(--amber); background: rgba(245,158,11,.08); }

.vtab-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vtab-dot.green  { background: var(--green); }
.vtab-dot.amber  { background: var(--amber); }
.vtab-dot.blue   { background: var(--blue-light); }

.vcat-panel { display: none; }
.vcat-panel.active { display: block; }

/* Carousel */
.carousel-wrap {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: .75rem;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.car-nav {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-2);
  transition: all var(--transition);
  flex-shrink: 0;
}
.car-nav:hover { background: var(--bg-alt); border-color: var(--border-2); color: var(--text); }
.car-nav:disabled { opacity: .3; cursor: not-allowed; }

/* Car cards */
.car-card {
  flex: 0 0 260px;
  min-width: 260px;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid transparent;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.car-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.car-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.car-card:hover::before { opacity: 1; }

.car-card.cat-budget {
  background: linear-gradient(145deg, #042f1e 0%, #064e3b 100%);
  border-top: 3px solid var(--green);
}
.car-card.cat-mid {
  background: linear-gradient(145deg, #3b1402 0%, #7c2d12 100%);
  border-top: 3px solid var(--amber);
}
.car-card.cat-premium {
  background: linear-gradient(145deg, #0f1e4a 0%, #1e3a8a 100%);
  border-top: 3px solid var(--blue-light);
}

.car-deco {
  font-size: 3rem;
  line-height: 1;
  opacity: .35;
  position: absolute;
  right: 1rem;
  top: 1rem;
  pointer-events: none;
  filter: grayscale(1);
}

.car-brand {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
}

.car-model {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.car-type {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem .625rem;
  border-radius: 999px;
  margin-top: .25rem;
}
.car-type.green-badge { background: rgba(16,185,129,.2); color: #6ee7b7; }
.car-type.amber-badge { background: rgba(245,158,11,.2); color: #fcd34d; }
.car-type.blue-badge  { background: rgba(96,165,250,.2); color: #93c5fd; }

.btn-car {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--text);
  padding: .625rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,.1);
}
.btn-car:hover { background: rgba(255,255,255,.18); }

/* Carousel dots */
.carousel-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.cdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition: all var(--transition);
}
.cdot.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.3);
}

.vehicles-footer {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-3);
  font-size: .9rem;
}
.vehicles-footer a { color: var(--amber); }
.vehicles-footer a:hover { text-decoration: underline; }

/* ======================================================
   ESCOLHA
   ====================================================== */
.escolha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.escolha-card {
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.escolha-rapido  { background: linear-gradient(145deg, #3b0000 0%, #7f1d1d 100%); border-color: rgba(220,38,38,.3); }
.escolha-planejar { background: linear-gradient(145deg, #0c1544 0%, #1e40af 100%); border-color: rgba(37,99,235,.3); }

.escolha-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.escolha-icon-wrap.red  { background: rgba(220,38,38,.2); color: #fca5a5; }
.escolha-icon-wrap.blue { background: rgba(37,99,235,.2); color: #93c5fd; }

.escolha-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .25rem .75rem;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}
.tag-red  { background: rgba(220,38,38,.2); color: #fca5a5; }
.tag-blue { background: rgba(37,99,235,.2); color: #93c5fd; }

.escolha-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.escolha-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.escolha-list li {
  padding-left: 1.25rem;
  position: relative;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.escolha-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: rgba(255,255,255,.4);
}

.escolha-note {
  text-align: center;
  color: var(--text-3);
  font-size: .9rem;
}
.escolha-note a { color: var(--amber); }
.escolha-note a:hover { text-decoration: underline; }

/* ======================================================
   BENEFÍCIOS
   ====================================================== */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.beneficio-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition);
}
.beneficio-card:hover { border-color: var(--border-2); }

.beneficio-icon {
  width: 52px; height: 52px;
  background: rgba(245,158,11,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1rem;
}

.beneficio-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .625rem;
}

.beneficio-text {
  color: var(--text-2);
  font-size: .9rem;
  line-height: 1.7;
}

/* ======================================================
   DIFERENCIAL
   ====================================================== */
.diferencial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.diferencial-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dif-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.dif-card:hover { border-color: var(--border-2); }

.dif-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  opacity: .7;
  min-width: 2.5rem;
}

.dif-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .375rem;
}

.dif-text {
  color: var(--text-2);
  font-size: .875rem;
  line-height: 1.65;
}

/* ======================================================
   FAQ
   ====================================================== */
.faq-list {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-2); }

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.faq-icon {
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--amber); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding var(--transition);
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  padding: 0 1.5rem;
  color: var(--text-2);
  font-size: .9rem;
  line-height: 1.75;
}

/* ======================================================
   CONTATO
   ====================================================== */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato-perks {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-top: .5rem;
}

.contato-perk {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-2);
}
.contato-perk svg { color: var(--green); flex-shrink: 0; }

.contato-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.contato-form-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: .5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .875rem 1rem;
  font-size: .9375rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--amber);
}
.form-input::placeholder { color: var(--text-3); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--bg-3); }

.form-note {
  text-align: center;
  font-size: .775rem;
  color: var(--text-3);
  margin-top: .875rem;
}

/* ======================================================
   CTA FINAL
   ====================================================== */
.cta-final {
  background: linear-gradient(135deg, #0c1544 0%, #1e3a8a 60%, #1e40af 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-final-inner { max-width: 680px; margin: 0 auto; }

.cta-final-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}

.cta-final-sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-final-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ======================================================
   FOOTER
   ====================================================== */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  color: var(--text-3);
  font-size: .875rem;
  line-height: 1.7;
  margin: 1.25rem 0 1rem;
  max-width: 32ch;
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--green);
  font-size: .875rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-wa-link:hover { color: var(--text); }

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col a {
  color: var(--text-3);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }

.footer-cta-col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.footer-cta-col p {
  color: var(--text-3);
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: space-between;
}
.footer-bottom p {
  color: var(--text-3);
  font-size: .8rem;
}

/* ======================================================
   WHATSAPP FLUTUANTE
   ====================================================== */
#wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
#wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + .75rem);
  background: var(--bg-2);
  color: var(--text);
  font-size: .8125rem;
  font-weight: 600;
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
#wa-float:hover .wa-tooltip { opacity: 1; }

/* ======================================================
   RESPONSIVIDADE
   ====================================================== */
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-btn    { display: none; }
  .header-cta  { display: inline-flex; }
}

@media (max-width: 767px) {
  .header-cta { display: none; }

  .hero { min-height: auto; padding: 6.5rem 0 4rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: .5rem; }
  .trust-item { font-size: .75rem; }

  .vehicle-tabs { gap: .375rem; }
  .vtab { padding: .55rem .9rem; font-size: .8rem; }
  .carousel-wrap { grid-template-columns: 36px 1fr 36px; gap: .5rem; }
  .car-nav { width: 36px; height: 36px; }
  .car-card { flex: 0 0 240px; min-width: 240px; padding: 1.5rem 1.25rem; }
  .car-model { font-size: 1.375rem; }

  .escolha-grid { grid-template-columns: 1fr; }

  .beneficios-grid { grid-template-columns: 1fr; }

  .diferencial-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contato-form-wrap { padding: 1.75rem 1.25rem; }

  .cta-final-btns { flex-direction: column; align-items: center; }
  .cta-final-btns .btn { width: 100%; max-width: 360px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; }

  #wa-float { bottom: 1rem; right: 1rem; }
  .wa-tooltip { display: none; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .diferencial-grid { gap: 2.5rem; }
  .contato-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .car-card { flex: 0 0 220px; min-width: 220px; }
  .escolha-card { padding: 2rem 1.5rem; }
}
