/* ═══════════════════════════════════════
   TOAST — notificações flutuantes
═══════════════════════════════════════ */

#toast-container {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    pointer-events: none;
}

.toast {
    background: #1c1917;
    color: #fff;
    padding: 11px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.toast.success { background: var(--primary); }
.toast.error   { background: var(--danger); }
.toast.warning { background: var(--accent); color: #1c1917; }
