.search-overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.95;
  z-index: 9998;
  transition: top 0.5s ease;
  overflow-y: auto;
  padding: 2rem;
}
.search-overlay.active {
  top: 0;
}
.search-container {
  max-width: 700px;
  margin: 100px auto 0;
  position: relative;
}
.search-close {
  position: absolute;
  top: -60px;
  right: 10px;
  background-color: var(--verde);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
}
.search-input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #aaa;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}
.search-input {
  border: none;
  outline: none;
  font-size: 1.2rem;
  flex: 1;
  background: transparent;
  text-align: center;
}
.search-icon {
  margin-left: 10px;
  color: #444;
}
.search-results {
  background: #fff;
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.search-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}
.search-item :hover{
  color:var(--azul-rey);
}
.search-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}