/* ===========================
   AUTO-SUGESTÃO (bonita + funcional)
   =========================== */
.search{ position: relative; } /* garante posicionamento do dropdown */
.suggest-box{
  position: absolute;
  top: 100%;
  left: 0;
  background: #171a1e;
  border: 1px solid var(--accent,#2ecc71);
  border-radius: 12px;
  margin-top: 6px;
  width: 100%;
  max-height: 360px;
  overflow-y: auto;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  z-index: 9999;
}
.suggest-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: #e9eef3;
  transition: background .15s ease;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.suggest-item:last-child{ border-bottom: none; }
.suggest-item:hover{
  background: var(--accent,#2ecc71);
  color: #0f1113;
}
.suggest-item img{
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}
.suggest-info{ display: flex; flex-direction: column; }
.suggest-title{ font-weight: 700; font-size: 14px; line-height: 1.3; }
.suggest-sub{ font-size: 12px; color: #aeb6bf; }
