.barra-pesquisa {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 12px 0 8px;
}


#pesquisa-index:focus {
  border-color: rgba(0,0,0,0.28);
}

.resultados-menu {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.resultado-lista {
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resultado-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.resultado-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}

.resultado-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.resultado-nome {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.resultado-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.8;
}

.sem-resultado {
  width: min(560px, 92%);
  background: #fff;
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.sem-resultado span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.8;
}
