/* ======== Layout general ======== */
.buscador--clean {
  background: transparent;
  padding: 0;
  gap: 16px;
}

.buscador--clean .buscador__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .buscador--clean .buscador__row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ======== Selects ======== */
.buscador--clean .select-wrap {
  position: relative;
}

.buscador--clean select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: 1px solid #D1D5DB;          /* gris claro */
  border-radius: 8px;
  padding: 12px 40px 12px 14px;       /* espacio para el chevron */
  font-size: 16px;
  line-height: 1.2;
  color: #111827;                     /* gris muy oscuro */
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 1px 1px rgba(0,0,0,.02);
}

/* Chevron negro a la derecha */
.buscador--clean select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M6 7L0 0h12L6 7z' fill='%23000000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 7px;
}

/* Placeholder (option seleccionada vacía) */
.buscador--clean select:invalid { color: #6B7280; }

/* Hover / Focus */
.buscador--clean select:hover,
.buscador--clean select:focus {
  border-color: #9CA3AF;
  box-shadow: 0 0 0 3px rgba(0,0,0,.04);
}

/* Disabled: gris y cursor bloqueado */
.buscador--clean select:disabled {
  background-color: #F9FAFB;
  border-color: #E5E7EB;
  color: #9CA3AF;
  cursor: not-allowed;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M6 7L0 0h12L6 7z' fill='%239CA3AF'/%3E%3C/svg%3E");
}

/* Asegurar color del texto de las opciones */
.buscador--clean select option { color: #111827; }

/* ======== Botón amarillo ======== */
.buscador--clean .btn-yellow {
  margin-top: 25px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #128c4b;               /* amarillo vivo */
  color: white;
  border: none;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}

.buscador--clean .btn-yellow:hover { background-color:#ffcb06; color:#111827; filter: brightness(0.98); }
.buscador--clean .btn-yellow:active { transform: translateY(1px); }

.buscador--clean .btn-yellow svg { fill: currentColor; }
