/* Estilos para toasts motivacionais */

/* Container de toasts */
#toast-container {
    position: fixed;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

/* Toast motivacional */
.toast-motivational {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 1rem; /* rounded-2xl */
    color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    max-width: 460px;
    white-space: normal;
    word-wrap: break-word;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-item {
    animation: toastRise 3.5s ease forwards;
    will-change: transform, opacity;
}

@keyframes toastRise {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    12% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-80px);
    }
    100% {
        opacity: 0;
        transform: translateY(-120px);
    }
}
