#buscador-homeclub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.search-field {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  border: 1px solid #e2e8f0;
  min-width: 160px;
}
.search-field label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #64748b;
}
.search-field input {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  width: 100%;
}
.dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  z-index: 10;
  max-height: 220px;
  overflow-y: auto;
}
.dropdown.open { display: block; }
.dropdown ul { list-style: none; margin: 0; padding: 8px 0; }
.dropdown li {
  padding: 8px 14px;
  cursor: pointer;
  transition: background .2s ease;
}
.dropdown li:hover {
  background: #f1f5f9;
}
.btn-search {
  background: #0ea5e9;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s ease;
}
.btn-search:hover {
  background: #0284c7;
}