/* ══ NOTIFICAÇÕES ══ */
.notif-wrap { position: relative; }
.notif-btn {
  background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px;
  color: var(--text2, #555); display: flex; align-items: center; position: relative; transition: background .15s;
}
.notif-btn:hover { background: var(--warm2, #e8ddd5); }
.notif-btn-sidebar {
  background: none; border: 1px solid var(--warm2, #e8ddd5); cursor: pointer; padding: 8px 12px;
  border-radius: 8px; color: var(--text2, #555); display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-family: inherit; width: 100%; position: relative; transition: background .15s;
}
.notif-btn-sidebar:hover { background: var(--warm2, #e8ddd5); }
.notif-badge {
  background: #e74c3c; color: #fff; border-radius: 50%;
  min-width: 18px; height: 18px; font-size: .65rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 3px;
  position: absolute; top: 0; right: 0; transform: translate(30%, -30%);
}
.notif-btn-sidebar .notif-badge { position: static; transform: none; margin-left: auto; }
.notif-dropdown {
  position: absolute; right: 0; top: calc(100% + 6px); width: 300px; max-height: 380px;
  overflow-y: auto; background: #fff; border: 1px solid var(--warm2, #e8ddd5);
  border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 500;
}
.notif-dropdown-up { top: auto; bottom: calc(100% + 6px); right: auto; left: 0; }
.notif-dropdown-header {
  padding: 12px 16px; font-size: .82rem; font-weight: 700; color: var(--text2, #555);
  border-bottom: 1px solid var(--warm2, #e8ddd5); text-transform: uppercase; letter-spacing: .06em;
}
.notif-lista { padding: 6px 0; }
.notif-grupo-titulo { padding: 6px 16px 2px; font-size: .7rem; font-weight: 700; color: var(--text3, #888); text-transform: uppercase; letter-spacing: .08em; }
.notif-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 16px; cursor: pointer;
  font-size: .82rem; color: var(--text, #333); transition: background .12s; font-weight: 600;
}
.notif-item:hover { background: var(--warm1, #faf7f4); }
.notif-item.notif-lida { font-weight: 400; color: var(--text3, #888); }
.notif-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.notif-empty { padding: 16px; color: var(--text3, #888); font-size: .84rem; text-align: center; }
