/* === CONTENEDOR GENERAL DEL FORMULARIO DE FILTROS === */
.contenedor-filtros-busqueda {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85); /* mayor opacidad para usabilidad fuera del hero */
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  padding: 20px;
  max-width: 900px;
  margin: 2rem auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* === INTERIOR FLEXIBLE === */
.filtros-busqueda-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

/* === CAMPOS DE BUSQUEDA === */
.campo-busqueda,
.campo-ubicacion {
  position: relative;
  flex: 1 1 250px;
}

/* === ICONOS DENTRO DE INPUTS === */
.icono-busqueda,
.icono-ubicacion {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  pointer-events: none;
}

/* === INPUTS CON ESPACIO PARA ICONO === */
.campo-busqueda input,
.campo-ubicacion input {
  padding-left: 32px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
}

/* === BOTON DE BUSQUEDA === */
.boton-filtrar {
  height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  border: none;
  background-color: var(--bs-primary);
  color: #fff;
  font-weight: 500;
}

/* === AUTOCOMPLETADO UBICACION === */
.sugerencias-ubicacion {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  color: #333;
  font-size: 14px;
}

.sugerencias-ubicacion li {
  padding: 10px 12px;
  cursor: pointer;
}

.sugerencias-ubicacion li:hover {
  background: #f0f0f0;
}
