/* ===== NOTIFICAÇÃO DE SUCESSO ===== */
.notificacao-sucesso {
    position: fixed;
    top: 90px; /* abaixo do header */
    right: 20px;
    background-color: #16a34a; /* verde */
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2000;
    animation: slideDown 0.5s ease, fadeOut 0.5s ease 3s forwards;
}

/* Ícone */
.notificacao-sucesso i {
    font-size: 18px;
}

/* Animação */
@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; }
}