/* =============================================
   DOMINUS CARS - Main Stylesheet
   Fonte: Sora | Premium Dealership
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@200;300;400;500;600;700;800&display=swap');

:root {
  --accent: rgba(230, 92, 0, 1);
  --accent-light: rgba(255, 163, 102, 1);
  --gradient: linear-gradient(90deg, rgba(230, 92, 0, 1) 0%, rgba(255, 163, 102, 1) 100%);
  --header-bg: rgba(0, 0, 0, 0.43);
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --card-bg: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: #f8f8f8;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

section {
  overflow-x: hidden;
  max-width: 100%;
}

/* ── UTILITIES ────────────────────────────────── */
.text-accent {
  color: var(--accent);
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

/* ── BUTTONS ──────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(230, 92, 0, 0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 92, 0, 0.45);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 50px;
  padding: 13px 28px;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ── HEADER ───────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--accent);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

nav.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: var(--transition);
}

.header-phone:hover {
  color: var(--accent-light);
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link {
  color: rgba(255, 255, 255, 1);
  font-weight: 300;
  font-family: 'Sora', sans-serif;
}

.nav-link:hover {
  color: var(--accent-light);
}

/* ── PAGE HERO ─────────────────────────────────── */
.page-hero {
  background: var(--dark-2);
  padding: clamp(140px, 15vh, 220px) 0 clamp(60px, 8vh, 120px);
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.breadcrumb a,
.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.3);
}


/* ── HERO ─────────────────────────────────────── */
/* ── HERO ─────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.png') center top / cover no-repeat;
  /* transform: scale(1.0); */
  /* transition: transform 8s ease-out; */
}

@media (max-width: 520px) {
  .hero-bg {
    background-image: url('../images/dominusresponsivo.png');
    background-position-x: center;
    background-position-y: 80px;
    /* Quanto maior o número, mais a imagem desce */
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/* ── LOGO NAVBAR ───────────────────────────── */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 35px;
}

.brand-logo {
  height: 25px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* Hover sutil (desktop) */
.brand-link:hover .brand-logo {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

/* Header com efeito glass */
.navbar.scrolled .brand-logo {
  height: 30px;
}

.navbar-expand-lg .navbar-collapse {
  flex-grow: 0.2;
}

.navbar {
  height: 110px;
}

.hero-bg.loaded {
  transform: scale(1);
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.55) 100%); */
}

/* ── SITE HEADER (GLASS) ───────────────────── */
.site-header {
  background: rgba(0, 0, 0, 0.43);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  padding: 5px 0;
}

/* Header schedule top bar */
.header-schedule {
  background: rgba(0, 0, 0, 0.6) !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1001;
}

.topo {
  font-weight: 300;
  padding: 6px 0;
}

.topo strong {
  font-weight: 600;
  /* color: var(--accent-light); */
}

/* Navbar overrides */
.navbar {
  height: auto;
  min-height: 80px;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.site-header.scrolled .navbar {
  min-height: 70px;
}

/* Responsive Container */
.container.responsive {
  padding-left: 15px;
  padding-right: 15px;
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  padding: 8px;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* ── MOBILE MENU (PREMIUM FULL-SCREEN GLASS) ── */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
    border: none;
  }

  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
  }

  .nav-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .navbar-collapse.show .nav-item {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Stagger animation for menu items */
  .navbar-collapse.show .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }

  .navbar-collapse.show .nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }

  .navbar-collapse.show .nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }

  .navbar-collapse.show .nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }

  .navbar-collapse.show .nav-item:nth-child(5) {
    transition-delay: 0.5s;
  }

  .nav-link {
    font-size: 1.6rem !important;
    font-weight: 200 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 12px 0 !important;
    transition: all 0.3s ease;
    border: none !important;
    position: relative;
    font-family: 'Sora', sans-serif;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gradient);
    transition: all 0.4s ease;
    transform: translateX(-50%);
  }

  .nav-link:hover {
    color: var(--accent-light) !important;
    letter-spacing: 7px;
    filter: drop-shadow(0 0 10px rgba(255, 163, 102, 0.3));
  }

  .nav-link:hover::after {
    width: 50px;
  }

  /* Adjust Toggler to stay on top */
  .navbar-toggler {
    position: relative;
    z-index: 1000;
  }

  .navbar-toggler-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Custom X Animation for Toggler */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Clear default before/after if any */
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: none;
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
  }

  /* Show only when expanded */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    content: '';
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }
}

/* ── LOGO NAVBAR ───────────────────────────── */
.hero-content {
  /* position: relative; */
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  /* padding: 140px 32px 0; */
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* background: rgba(255, 255, 255, 0.08); */
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
  color: rgba(255, 255, 255, 1);
  font-size: 0.7rem;
  letter-spacing: 10px;
  text-transform: uppercase;
  padding: 6px 14px;
  /* border-radius: 999px; */
  /* margin-bottom: 32px; */
  /* backdrop-filter: blur(10px); */
  font-weight: 250 !important;
}


/* Title */
.hero-title {
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #fff;
  max-width: 800px;
  margin-bottom: 20px;
  text-align: center;
}

.highlight {
  background: linear-gradient(to right,
      rgba(230, 92, 0, 1),
      rgba(255, 163, 102, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

/* Subtitle */
.hero-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}

/* Filter */
.hero-filter {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 95%;
  max-width: 850px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 78px;
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
}



/* Filter groups */
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 140px;
}

.filter-group label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Select */
.filter-group select {
  height: 44px;
  /* padding: 0 36px 0 14px; */
  font-size: 0.85rem;
  font-family: 'Sora', sans-serif;
  color: #fff;
  background-color: transparent;
  border: none;
  border-radius: 12px;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: 0.25s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  display: flex;
  width: 80%;
  text-align: center;
}

.filter-group select:focus {
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.18);
}

.filter-group select option {
  background: #111;
}

@media (max-width: 768px) {
  .hero-filter {
    border-radius: 20px;
    padding: 20px;
    gap: 12px;
  }
  .filter-group {
    min-width: 100px;
    width: 100%;
  }
  .filter-divider { display: none; }
}
.filter-divider {
  width: 2px;
  height: 80%;
  align-self: center;
  background-color: rgba(245, 245, 247, 1);
  border-radius: 2px;
}

/* Divider */


/* Button */
.hero-filter .btn-primary {
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}

.hero-filter .btn-primary:hover {
  filter: brightness(1.05);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 56px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-hint svg {
  width: 18px;
  height: 18px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── SECTION COMMONS ──────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* background: rgba(255, 255, 255, 0.08); */
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
  color: rgba(255, 255, 255, 1);
  font-size: 0.7rem;
  letter-spacing: 10px;
  text-transform: uppercase;
  padding: 6px 14px;
  /* border-radius: 999px; */
  /* margin-bottom: 32px; */
  /* backdrop-filter: blur(10px); */
  font-weight: 250 !important;
}

/* .section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gradient);
} */

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 200;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-title strong {
  font-weight: 700;
}

/* ── STOCK SECTION ────────────────────────────── */
#estoque {
  padding: 100px 0;
  background: #f0f0f0;
}

.estoque-header {
  /* display: flex; */


  text-align: center;
  margin-bottom: 48px;

}

/* ── VEHICLE CARDS ────────────────────────────── */
.veiculos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.veiculo-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.veiculo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #f0f0f0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.veiculo-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-disponivel {
  background: rgba(74, 222, 128, 0.15);
  color: #15803d;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-reservado {
  background: rgba(251, 191, 36, 0.15);
  color: #b45309;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.badge-destaque {
  background: var(--gradient);
  color: #fff;
}

.card-body {
  padding: 20px 22px 22px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  justify-content: space-between;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.card-brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2);
}


.card-versao {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.card-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.spec-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.spec-chip svg {
  width: 13px;
  height: 13px;
  opacity: 0.7;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.card-price-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* ── VEHICLE DETAIL PAGE ──────────────────────── */
.detail-wrap {
  padding-top: 90px;
  min-height: 100vh;
}

.detail-hero {
  background: var(--dark-2);
  padding: 60px 0;
}

.detail-gallery {
  position: relative;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}

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

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumb {
  width: 80px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
  border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--accent);
}

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

.detail-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 200;
  color: #fff;
  letter-spacing: -1px;
}

.detail-title strong {
  font-weight: 700;
}

.detail-price-big {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-badge-ok {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.specs-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  color: rgba(255, 255, 255, 0.5);
}

.spec-val {
  color: #fff;
  font-weight: 400;
}

.cta-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff !important;
  border-radius: 50px;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}

.cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

/* ── WHY US SECTION ───────────────────────────── */
#por-que-nos {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(30, 10, 0, 1) 0%, var(--dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#por-que-nos::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 92, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) {
  #por-que-nos::before { display: none; }
}

#busca-personalizada {
  background: linear-gradient(135deg, rgba(30, 10, 0, 1) 0%, var(--dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#busca-personalizada::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 92, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) {
  #busca-personalizada::before { display: none; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 92, 0, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(230, 92, 0, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(230, 92, 0, 0.1);
  border: 1px solid rgba(230, 92, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent);
  box-shadow: 0 0 25px rgba(230, 92, 0, 0.5);
  border-color: transparent;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  transition: all 0.5s ease;
}

.feature-card:hover .feature-icon svg {
  stroke: #fff;
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.feature-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* ── CTA BANNER ───────────────────────────────── */
#cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, rgba(30, 10, 0, 1) 100%);
  position: relative;
  overflow: hidden;
}

#estoque {
  background: linear-gradient(135deg, var(--dark) 0%, rgba(30, 10, 0, 1) 100%);
  position: relative;
}

/* ── REUSABLE GLOBAL DARK PATTERN ────────────── */
.bg-dark-pattern {
  background: linear-gradient(135deg, var(--dark) 0%, rgba(30, 10, 0, 1) 100%) !important;
  position: relative;
  overflow: hidden;
}

.bg-dark-pattern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 92, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .bg-dark-pattern::before { display: none; }
}

#estoque {
  background: linear-gradient(135deg, var(--dark) 0%, rgba(30, 10, 0, 1) 100%);
  position: relative;
}

#estoque::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 92, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) {
  #estoque::before { display: none; }
}

#feedback-clientes {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, rgba(30, 10, 0, 1) 100%);
  position: relative;
  overflow: hidden;
}


#feedback-clientes::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 92, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) {
  #feedback-clientes::before { display: none; }
}





#cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 92, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) {
  #cta-banner::before { display: none; }
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: #080808;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

/* ── BREADCRUMB ───────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
}

/* ── LOADING STATES ───────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.empty-state svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text-dark);
}

/* ── PAGE TRANSITION ──────────────────────────── */
.page-enter {
  animation: pageIn 0.4s ease forwards;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 991px) {
  .header-inner {
    padding: 16px 24px;
  }

  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav.main-nav.open {
    display: flex;
  }

  nav.main-nav a {
    padding: 12px 16px;
    border-radius: 10px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 0 24px;
    /* padding-top: 100px; */
  }

  .hero-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .header-schedule {}



  .filter-divider {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }

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

  .estoque-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

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

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

/* Alinhamento do Título e Logo */
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  /* color: var(--text-dark); */
}

/* Ajuste na imagem do card para não distorcer */
.card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000000;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.veiculo-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* Estilo para ambas as setas (anterior e próxima) */
/* --- Estilo Base do Card e Imagem --- */
.card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000000;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.veiculo-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* --- Estilo dos Controles do Carrossel (Prev e Next) --- */
.carousel-control-prev,
.carousel-control-next {
  width: 15%;
  /* Define a área clicável lateral */
  opacity: 0.8;
  /* Visibilidade padrão */
  transition: opacity 0.3s ease;
  /* Suaviza a aparição/desaparecimento */
}

/* Garante que os controles sejam 100% visíveis ao passar o mouse */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  /* Totalmente visível no hover */
}

/* --- Estilo para Criar o Fundo Preto Circular --- */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  /* Define o fundo circular preto e semi-transparente */
  background-color: rgba(0, 0, 0, 0.9);
  /* Fundo preto circular */
  border-radius: 50%;
  /* Torna o fundo perfeitamente circular */
  width: 40px;
  /* Define a largura do círculo preto */
  height: 40px;
  /* Define a altura do círculo preto */
  position: relative;
  /* Necessário para posicionar a seta interna */
  background-image: none;
  /* Remove a imagem de fundo padrão do Bootstrap */
}

/* --- Estilo para Criar e Colorir a Seta Laranja --- */
/* Usamos o pseudoelemento ::after para a seta, assim o filtro afeta apenas ela */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: '';
  /* Necessário para o pseudoelemento aparecer */
  position: absolute;
  /* Posicionamento absoluto dentro do círculo */
  top: 0;
  left: 0;
  width: 100%;
  /* Ocupa toda a largura do círculo */
  height: 100%;
  /* Ocupa toda a altura do círculo */
  background-size: 60%;
  /* Ajuste do tamanho da seta interna */
  background-position: center;
  /* Centraliza a seta */
  background-repeat: no-repeat;
  /* Não repete a seta */

  /* Substitui o ícone padrão por uma seta preta para podermos usar o filtro de cor */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");

  /* Aplica o filtro CSS para transformar o ícone preto em laranja */
  filter: invert(56%) sepia(91%) saturate(2358%) hue-rotate(346deg) brightness(101%) contrast(106%);
}

/* Ajuste específico para a seta "Próximo" para usar o ícone correto */
.carousel-control-next-icon::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════════════════════
   FEEDBACKS / DEPOIMENTOS — Seção Home
   ══════════════════════════════════════════════════ */
#feedbacks {
  padding: 80px 0;
  background: #f8f8f8;
}

#feedbacks .section-title {
  margin-top: 8px;
}

.feedbacks-swiper {
  padding-bottom: 52px !important;
}

.feedback-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feedback-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 0.9rem;
}

.feedback-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
  margin: 0;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.feedback-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.feedback-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feedback-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.swiper-pagination-bullet {
  background: var(--accent);
  opacity: 0.3;
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
  background: var(--accent);
}

/* ══════════════════════════════════════════════════
   PAGE HERO — Compartilhado (Venda, Financiamento, Sobre)
   ══════════════════════════════════════════════════ */
.page-hero {
  background: var(--dark-2);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 92, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent-light);
}

.page-hero .breadcrumb svg {
  width: 12px;
  height: 12px;
  opacity: 0.4;
}

/* ══════════════════════════════════════════════════
   ESTOQUE — Filtros aprimorados
   ══════════════════════════════════════════════════ */
.estoque-filters-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.estoque-filters-grid {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.filter-field {
  flex: 1;
  min-width: 140px;
}

.filter-field label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-field .form-control,
.filter-field .form-select {
  height: 44px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text-dark);
  transition: var(--transition);
}

.estoque-filters-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
  .estoque-filters-section {
    position: relative;
    top: 0;
    padding: 30px 0;
  }
}


.estoque-sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.sort-select {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sort-select select {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text-dark);
  padding: 0 12px;
  cursor: pointer;
  outline: none;
}

.sort-select select:focus {
  border-color: var(--accent);
}

/* ══════════════════════════════════════════════════
   VENDA SEU CARRO — Estilos
   ══════════════════════════════════════════════════ */
.steps-section {
  padding: 72px 0;
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(230, 92, 0, 0.35);
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 92, 0, 0.2);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(230, 92, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1.4rem;
}

.benefit-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── FORM SECTION ── */
.form-section {
  padding: 72px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 92, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


.form-card .form-label {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-card .form-control,
.form-card .form-select {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  border-radius: 10px;
  padding: 12px 16px;
  transition: var(--transition);
}

.form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-card .form-control:focus,
.form-card .form-select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 92, 0, 0.12);
  color: #fff;
}

.form-card .form-select option {
  background: var(--dark-2);
  color: #fff;
}

.form-card textarea.form-control {
  resize: none;
  min-height: 120px;
}

/* ══════════════════════════════════════════════════
   FINANCIAMENTO — Estilos
   ══════════════════════════════════════════════════ */
.simulator-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.simulator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.simulator-result {
  background: rgba(230, 92, 0, 0.08);
  border: 1px solid rgba(230, 92, 0, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 28px;
  text-align: center;
}

.simulator-result-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  font-weight: 400;
  margin-bottom: 6px;
}

.simulator-result-value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
}

.simulator-result-obs {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

.simulator-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  margin-top: 8px;
}

.simulator-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(230, 92, 0, 0.5);
}

.simulator-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
}

.simulator-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.simulator-value-display {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.parceiros-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.parceiro-item {
  background: #fff;
  border-radius: 12px;
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  opacity: 0.8;
  transition: var(--transition);
}

.parceiro-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════
   SOBRE NÓS — Estilos
   ══════════════════════════════════════════════════ */
.sobre-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
}

.sobre-stat {
  text-align: center;
  padding: 28px 16px;
  background: rgba(230, 92, 0, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(230, 92, 0, 0.1);
}

.sobre-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.sobre-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
}

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

.mvv-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.mvv-card:nth-child(1)::before {
  background: var(--gradient);
}

.mvv-card:nth-child(2)::before {
  background: var(--gradient);
}

.mvv-card:nth-child(3)::before {
  background: var(--gradient);
}

.mvv-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.mvv-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 12px;
}

.mvv-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  font-weight: 300;
}

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

.diferencial-card {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 92, 0, 0.2);
}

.diferencial-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(230, 92, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
  font-size: 1.5rem;
}

.diferencial-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.diferencial-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Novas Páginas
   ══════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .sobre-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-card {
    padding: 24px 20px;
  }

  .simulator-card {
    padding: 24px 20px;
  }

  .estoque-filters-grid {
    flex-direction: column;
  }
}

/* ── ADDITIONAL MOBILE OPTIMIZATIONS ── */
@media (max-width: 768px) {
  .hero-filter {
    flex-direction: column;
    border-radius: 24px;
    padding: 24px;
    gap: 20px;
  }

  .filter-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .filter-group {
    width: 100%;
    text-align: center;
  }

  .filter-group select {
    width: 100%;
    text-align: center;
    background-position: right 20px center;
  }

  .hero-filter .btn-primary {
    width: 100%;
    justify-content: center;
    height: 54px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-top: 40px;
  }

  .hero-badge {
    letter-spacing: 5px;
    font-size: 0.6rem;
  }

  .hero-brands-slider {
    padding: 10px 0;

  }

  .brand-item img {
    height: 40px;
  }

  section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

#estoque {
  border-top: 2px solid var(--accent);
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .card-price {
    font-size: 1.15rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.steps-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .steps-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ── ADDITIONAL COMPATIBILITY ── */
.veiculo-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.sticky-header-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 110px;
  /* Padrão para Desktop */
  z-index: 100;
  box-shadow: var(--shadow-sm);
  transition: top 0.3s ease;
  /* Opcional: suaviza a mudança entre resoluções */
}

/* Versão Responsiva (Mobile) */
@media (max-width: 520px) {
  .sticky-header-section {
    top: 30px;
    padding: 15px 0;
    /* Opcional: reduz um pouco o respiro no celular */
  }
}

/*  MOBILE ALIGNMENT (TEXT & FOOTER) < 500px  */
@media (max-width: 500px) {

  /* Headings & Text */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .section-title,
  .section-label,
  .hero-title,
  .hero-subtitle,
  .hero-badge,
  .footer-col-title,
  .footer-bottom {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: center !important;
    flex-direction: column !important;
  }

  .section-title br {
    display: none;
  }

  /* Footer Refinement */
  footer {
    text-align: center !important;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-links {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    list-style: none;
  }

  .footer-links li {
    text-align: center;
  }

  .logo {
    justify-content: center !important;
    margin: 0 auto 20px !important;
    display: flex !important;
  }

  footer p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 10px !important;
    display: flex !important;
    align-items: center !important;
    padding-top: 30px !important;
  }

  .footer-bottom span {
    display: block !important;
    width: 100% !important;
  }

  /* Features Grid centering */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

.feedback-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  color: #fff;
}

/* ── PARCEIROS FINANCEIROS ────────────────────── */
.parceiros-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.parceiro-item {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.parceiro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(230, 92, 0, 0.15);
  border-color: rgba(230, 92, 0, 0.2);
}

.parceiro-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: grayscale(1); */
  opacity: 0.6;
  transition: all 0.3s ease;
}

.parceiro-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 500px) {
  .parceiros-grid {
    gap: 20px;
  }

  .parceiro-item {
    width: 75px;
    height: 75px;
    padding: 12px;
  }
}

.navbar-expand-lg .navbar-nav {
  gap: 10px;
}