/* === FILTRO DE VEÍCULOS ABAIXO DO HERO === */
.veiculo-filtro {
  width: 100%;
  position: relative;
  margin-top: -40px; /* sobreposição leve do hero */
  z-index: 5;
}

.container-filtro {
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  border-radius: 10px;
  flex-wrap: wrap;
}

.filtro-titulo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filtro-titulo h2 {
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  color: #111;
}

.filtro-titulo strong {
  font-weight: 700;
  display: block;
}

.linha-vermelha {
  width: 3px;
  height: 40px;
  background-color: red;
  display: block;
}

.filtro-opcoes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.filtro-opcoes select {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  background-color: #fff;
  color: #111;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
  .container-filtro {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .filtro-opcoes {
    width: 100%;
    gap: 10px;
  }

  .filtro-opcoes select {
    width: 100%;
  }
}
