#notifications-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
}

.notificacao {
    background: rgba(22, 27, 25, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: #f4ead5;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: toastIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.notificacao-icone {
    font-size: 1.2rem;
}

.notificacao-mensagem {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.notificacao-sucesso { border-left: 3px solid #27ae60; }
.notificacao-erro { border-left: 3px solid #e74c3c; }
.notificacao-aviso { border-left: 3px solid #f1c40f; }
.notificacao-info { border-left: 3px solid #3498db; }
