/* ============================================================
   QUEJINHO VEÍCULOS — Design System
   Tema claro · Estética de concessionária moderna
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Palette */
  --white:        #ffffff;
  --white-off:    #f6f7f9;
  --gray-100:     #eef0f3;
  --gray-200:     #dde1e7;
  --gray-300:     #c2c8d1;
  --gray-400:     #8d95a3;
  --gray-500:     #6b7280;
  --gray-600:     #4b5563;
  --gray-700:     #374151;
  --gray-800:     #1f2937;
  --gray-900:     #111827;
  --navy:         #0c1d3a;
  --navy-light:   #15295a;
  --navy-deep:    #070f1e;
  --red:          #d4202c;
  --red-hover:    #b81b25;
  --red-glow:     rgba(212, 32, 44, .15);
  --red-subtle:   rgba(212, 32, 44, .08);
  --blue-accent:  #1e56a0;
  --blue-light:   #e8eef6;

  /* Semantic */
  --bg-body:        var(--white-off);
  --bg-surface:     var(--white);
  --bg-card:        var(--white);
  --bg-hero:        var(--navy);
  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted:     var(--gray-400);
  --text-on-dark:   var(--white);
  --accent:         var(--red);
  --accent-hover:   var(--red-hover);
  --border:         var(--gray-200);
  --border-light:   var(--gray-100);

  /* Spacing */
  --space-xs:  .5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Typography */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --fs-hero:   clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --fs-h2:     clamp(1.75rem, 3vw + .5rem, 2.75rem);
  --fs-h3:     clamp(1.125rem, 1.5vw + .5rem, 1.5rem);
  --fs-body:   1rem;
  --fs-small:  .875rem;
  --fs-xs:     .75rem;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --duration: .3s;
  --duration-slow: .6s;

  /* Layout */
  --header-h: 74px;
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-body);
  overflow-x: hidden;
}

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

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ---------- Section defaults ---------- */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-sm);
}

.section__label--light { color: rgba(255,255,255,.7); }

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.section__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-small);
  padding: .75rem 1.5rem;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn__icon { flex-shrink: 0; }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn--outline {
  background: transparent;
  color: var(--gray-800);
  border-color: var(--gray-300);
}
.btn--outline:hover {
  border-color: var(--gray-800);
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.btn--hero-secondary {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn--hero-secondary:hover {
  background: rgba(255,255,255,.25);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,.1);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.3);
}

.btn--lg { padding: .9rem 2rem; font-size: var(--fs-body); }
.btn--xl { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn--sm { padding: .55rem 1.2rem; font-size: var(--fs-xs); }

/* ---------- Loading Screen ---------- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-body);
  transition: opacity .4s var(--ease-out);
}
.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}
.loading-screen__inner { text-align: center; }
.loading-screen__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-screen__text {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  color: var(--text-muted);
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.8); opacity: 0; }
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(8px); opacity: .3; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: var(--gray-900);
  transition: background var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.header--scrolled {
  background: var(--gray-900);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  z-index: 10;
}

.header__logo-svg {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

/* Footer — logo */
.footer .header__logo-svg {
  height: 48px;
}

.header__brand-text {
  line-height: 1.1;
}

.header__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: 1;
}

.header__sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}

/* Footer — nome branco */
.footer .header__name { color: var(--white); }
.footer .header__sub { color: rgba(255,255,255,.45); }

.header__nav { display: flex; align-items: center; }

.header__menu {
  display: flex;
  gap: .25rem;
}

.header__link {
  padding: .5rem .85rem;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-radius: var(--radius-full);
  transition: color var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out);
}
.header__link:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.header__cta { display: flex; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 10;
}
.header__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease-out);
}
.header__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO — Fundo escuro (navy) para contraste forte
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--navy);
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,32,44,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,86,160,.2) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

.hero__content {
  animation: fadeUp .8s var(--ease-out) both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: .4rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}
.hero__badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.hero__title--accent {
  background: linear-gradient(135deg, #ff4d5a, #d4202c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero__services {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.hero__service-tag {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
  letter-spacing: .04em;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: fadeIn 1s var(--ease-out) .3s both;
}

/* ---- Hero Showcase (carrossel de veículos) ---- */
.hero__showcase {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-light);
  box-shadow: 0 25px 60px rgba(0,0,0,.4);
}

.hero__showcase-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__showcase-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .6s var(--ease-out);
  pointer-events: none;
}
.hero__showcase-slide.active {
  opacity: 1;
  pointer-events: auto;
}

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

/* Gradient overlay na parte inferior da imagem */
.hero__showcase-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%);
  pointer-events: none;
}

/* Info do veículo sobre a foto */
.hero__showcase-info {
  position: absolute;
  bottom: 2.8rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  color: var(--white);
  pointer-events: none;
}

.hero__showcase-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.hero__showcase-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ff5c66;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

/* Setas */
.hero__showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  z-index: 4;
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}
.hero__showcase-arrow:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-50%) scale(1.1);
}
.hero__showcase-arrow--prev { left: .75rem; }
.hero__showcase-arrow--next { right: .75rem; }

/* Dots */
.hero__showcase-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.hero__showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out),
              width var(--duration) var(--ease-out);
}
.hero__showcase-dot.active {
  background: var(--white);
  width: 22px;
  border-radius: 4px;
}
.hero__showcase-dot:hover { background: rgba(255,255,255,.7); }

/* Barra de progresso do autoplay */
.hero__showcase-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.1);
  z-index: 4;
}

.hero__showcase-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), #ff5c66);
  border-radius: 0 2px 2px 0;
  transition: width .1s linear;
}

/* Botão "Ver todos os veículos" abaixo do showcase */
.hero__showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  color: rgba(255,255,255,.6);
  padding: .5rem .75rem;
  border-radius: var(--radius-full);
  transition: color var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out);
}
.hero__showcase-cta:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.hero__showcase-cta svg {
  animation: scrollDown 1.8s var(--ease-out) infinite;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 1;
}
.hero__scroll-hint span {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__scroll-arrow {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.2);
  position: relative;
}
.hero__scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: scrollDown 1.8s var(--ease-out) infinite;
}


/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-lg) 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
}

.trust-bar__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-subtle);
  border-radius: var(--radius-sm);
  color: var(--red);
  flex-shrink: 0;
}

.trust-bar__text {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3;
}


/* ============================================================
   VEHICLES
   ============================================================ */
.vehicles { background: var(--bg-body); }

/* Search bar */
.vehicles__search-bar {
  max-width: 480px;
  margin: 0 auto var(--space-md);
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrap__icon {
  position: absolute;
  left: 1rem;
  color: var(--gray-400);
  pointer-events: none;
  flex-shrink: 0;
}

.search-input {
  width: 100%;
  padding: .85rem 2.8rem .85rem 2.8rem;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--gray-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  outline: none;
  transition: border-color var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
.search-input::placeholder { color: var(--gray-400); }
.search-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.search-clear-btn {
  position: absolute;
  right: .75rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: background var(--duration) var(--ease-out), color var(--duration) var(--ease-out);
}
.search-clear-btn:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

/* Brand filter pills */
.vehicles__filters {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

/* Empty state */
.vehicles__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  color: var(--gray-400);
}
.vehicles__empty svg {
  margin: 0 auto var(--space-sm);
  color: var(--gray-300);
}
.vehicles__empty p {
  margin-bottom: .35rem;
  font-size: .95rem;
}
.vehicles__empty strong {
  color: var(--gray-600);
  font-family: var(--font-display);
}

.filter-btn {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  padding: .55rem 1.4rem;
  border-radius: var(--radius-full);
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease-out);
}
.filter-btn:hover {
  background: var(--gray-100);
  color: var(--gray-900);
  border-color: var(--gray-300);
}
.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.vehicles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
}

/* Car Card */
.car-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

/* Car Card Gallery */
.car-card__gallery {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}

.gallery__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s var(--ease-out);
  pointer-events: none;
}
.gallery__slide.active {
  opacity: 1;
  pointer-events: auto;
}
.car-card:hover .gallery__slide.active {
  transform: scale(1.03);
  transition: opacity .35s var(--ease-out), transform 4s var(--ease-out);
}

/* Setas de navegação */
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  color: var(--gray-800);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.car-card:hover .gallery__arrow { opacity: 1; }
.gallery__arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}
.gallery__arrow--prev { left: .6rem; }
.gallery__arrow--next { right: .6rem; }

/* Dots de navegação */
.gallery__dots {
  position: absolute;
  bottom: .6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.gallery__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}
.gallery__dot.active {
  background: var(--white);
  transform: scale(1.3);
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.gallery__dot:hover { background: var(--white); }

/* Contador (1/6) */
.gallery__counter {
  position: absolute;
  top: .6rem;
  right: .6rem;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  padding: .2rem .55rem;
  border-radius: var(--radius-full);
  z-index: 3;
  letter-spacing: .03em;
}

.car-card__badge {
  position: absolute;
  top: .6rem;
  left: .6rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: var(--radius-full);
  background: var(--red);
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 3;
}

.car-card__body { padding: var(--space-md); }

.car-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
  letter-spacing: -.01em;
  color: var(--gray-900);
}

.car-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: var(--space-sm);
}

.car-card__spec {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: var(--fs-xs);
  color: var(--gray-500);
  background: var(--gray-100);
  padding: .3rem .6rem;
  border-radius: var(--radius-full);
}

.car-card__spec svg {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
}

.car-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  letter-spacing: -.02em;
}

.car-card__actions {
  display: flex;
  gap: .5rem;
}
.car-card__actions .btn { flex: 1; font-size: var(--fs-xs); padding: .65rem .75rem; }

.vehicles__cta {
  text-align: center;
  margin-top: var(--space-xl);
}


/* ============================================================
   FINANCE — Fundo escuro (navy) para destaque
   ============================================================ */
.finance {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.finance__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(212,32,44,.08) 0%, transparent 50%);
  pointer-events: none;
}

.finance__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
}

.finance__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.finance__text {
  color: rgba(255,255,255,.7);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.finance__list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: var(--space-lg);
}

.finance__list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
}
.finance__list li svg { color: var(--red); flex-shrink: 0; }

.finance__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Finance floating cards */
.finance__visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-end;
}

.finance__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  max-width: 400px;
  width: 100%;
  backdrop-filter: blur(8px);
  transition: transform var(--duration) var(--ease-out);
}
.finance__card:hover { transform: translateY(-4px); }

.finance__card--1 { animation: float 5s ease-in-out infinite; }
.finance__card--2 { animation: float 5s ease-in-out 1.5s infinite; }

.finance__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,32,44,.15);
  border-radius: var(--radius-md);
  color: #ff5c66;
  flex-shrink: 0;
}

.finance__card-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: .15rem;
}

.finance__card-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--white);
}


/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--white); }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.why-us__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
.why-us__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

.why-us__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-subtle);
  border-radius: var(--radius-md);
  color: var(--red);
  margin-bottom: var(--space-sm);
}

.why-us__card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
  color: var(--gray-900);
}

.why-us__card p {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.6;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-body); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

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

.about__image-accent {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.about__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: var(--space-md);
  color: var(--gray-900);
}

.about__content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.about__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

.about__stat { text-align: center; }

.about__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -.02em;
}

.about__stat-label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: .25rem;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

.testimonial-card__stars {
  display: flex;
  gap: .15rem;
  margin-bottom: var(--space-sm);
  color: #f5a623;
}

.testimonial-card__text {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--blue-accent);
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--gray-900);
}

.testimonial-card__city {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg-body); }

.faq__list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.03);
  transition: border-color var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
.faq-item.open {
  border-color: var(--red);
  box-shadow: 0 4px 20px var(--red-glow);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) var(--space-md);
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: 600;
  text-align: left;
  color: var(--gray-900);
  cursor: pointer;
  transition: color var(--duration) var(--ease-out);
  gap: 1rem;
}
.faq-item__question:hover { color: var(--red); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gray-400);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease-out);
}
.faq-item__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .3s var(--ease-out);
}
.faq-item__answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: .95rem;
}


/* ============================================================
   FINAL CTA — Fundo escuro (navy) para impacto
   ============================================================ */
.final-cta {
  position: relative;
  padding: var(--space-3xl) 0;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,32,44,.12) 0%, transparent 60%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.final-cta__text {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.final-cta__buttons { margin-bottom: var(--space-md); }

.final-cta__hours {
  color: rgba(255,255,255,.4);
  font-size: var(--fs-small);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: var(--space-sm);
}

.footer .header__name { color: var(--white); }
.footer .header__sub { color: rgba(255,255,255,.4); }

.footer__slogan {
  color: rgba(255,255,255,.4);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

.footer__social { display: flex; gap: .5rem; }

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.5);
  transition: all var(--duration) var(--ease-out);
}
.footer__social-link:hover {
  background: var(--red);
  color: var(--white);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,.7);
}

.footer__links li { margin-bottom: .6rem; }

.footer__links a,
.footer__links li {
  color: rgba(255,255,255,.45);
  font-size: var(--fs-small);
  transition: color var(--duration) var(--ease-out);
  line-height: 1.5;
}
.footer__links a:hover { color: var(--white); }

.footer__route-btn { margin-top: var(--space-sm); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--space-md);
  text-align: center;
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.3);
}

.footer-dev {
  margin-top: .4rem;
}

.footer-dev a {
  color: rgba(255,255,255,.3);
  font-size: var(--fs-xs);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}

.footer-dev a:hover {
  color: var(--accent);
}


/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(10px);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}
.lightbox__close:hover {
  background: rgba(255,255,255,.2);
  transform: scale(1.1);
}

.lightbox__header {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  color: var(--white);
  pointer-events: none;
}

.lightbox__car-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .15rem;
}

.lightbox__counter {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  color: rgba(255,255,255,.5);
}

.lightbox__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  flex: 1;
  min-height: 0;
  padding: 3.5rem 3rem 1rem;
  z-index: 5;
}

.lightbox__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lightbox__image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transition: opacity .3s var(--ease-out);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}
.lightbox__arrow:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-50%) scale(1.1);
}
.lightbox__arrow--prev { left: 1rem; }
.lightbox__arrow--next { right: 1rem; }

/* Thumbnails */
.lightbox__thumbs {
  position: relative;
  z-index: 10;
  display: flex;
  gap: .5rem;
  justify-content: center;
  padding: .75rem 1rem 1.5rem;
  overflow-x: auto;
  max-width: 100%;
}

.lightbox__thumb {
  width: 64px;
  height: 44px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .5;
  flex-shrink: 0;
  transition: opacity var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}
.lightbox__thumb:hover {
  opacity: .8;
}
.lightbox__thumb.active {
  opacity: 1;
  border-color: var(--red);
  transform: scale(1.08);
}

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

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
  .lightbox__stage { padding: 3.5rem .5rem 1rem; }
  .lightbox__arrow { width: 38px; height: 38px; }
  .lightbox__arrow--prev { left: .25rem; }
  .lightbox__arrow--next { right: .25rem; }
  .lightbox__image { max-height: 55vh; border-radius: var(--radius-sm); }
  .lightbox__thumb { width: 52px; height: 36px; }
}


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

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s ease-out infinite;
}


/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-out);
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-overlay__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  color: var(--gray-600);
  cursor: pointer;
  transition: background var(--duration) var(--ease-out);
}
.mobile-overlay__close:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

.mobile-overlay__menu {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-overlay__link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  padding: .5rem 1rem;
  transition: color var(--duration) var(--ease-out);
}
.mobile-overlay__link:hover { color: var(--red); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__services { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__car-frame { max-width: 480px; }

  .finance__inner { grid-template-columns: 1fr; }
  .finance__visual { align-items: center; }

  .about__inner { grid-template-columns: 1fr; }
  .about__image-col { order: -1; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__hamburger { display: flex; }

  .vehicles__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .section { padding: var(--space-2xl) 0; }

  .about__stats { gap: var(--space-md); }

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

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

  .finance__card { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; }

  .finance__ctas { flex-direction: column; }
  .finance__ctas .btn { width: 100%; }

  .car-card__actions { flex-direction: column; }
  .car-card__actions .btn { width: 100%; }
}
