.toast-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    pointer-events: none;
    position: fixed;
    bottom: 3rem;
    left: 0;
    right: 0;
    z-index: 9999999;
}

.toast {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 380px;
    max-width: 590px;
    padding: 1.5rem 2rem 1.5rem 1.5rem;
    pointer-events: auto;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 3px 15px -3px rgba(0, 0, 0, 0.10), 0 6px 15px 1px rgba(0, 0, 0, 0.05), 0 3px 15px 2px rgba(0, 0, 0, 0.08);
    transition: opacity 0.3s, transform 0.3s;
}

.toast-icon {
    flex-shrink: 0;
    margin-right: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-size: 1rem;
    line-height: 140%; /* 22.4px */
    font-weight: 600;
    color: var(--gray-800, #182230);
}

.toast-message {
    font-size: 0.875rem;
    line-height: 140%; /* 19.6px */
    color: var(--gray-500, #7D828C);
    margin-top: 0.25rem;
}

.toast-close {
    background: none;
    border: none;
    color: #bbb;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1.25rem;
    transition: color 0.2s;
    /*position: absolute;
    top: 1.2rem;
    right: 1.2rem;*/
    line-height: 1;
}

.toast-close:hover {
    color: #222;
}

@media (max-width: 768px) {
    .toast {
        min-width: 300px;
        max-width: 95%;
    }
}

/* Cores de borda para cada tipo */
/* .toast-success { border-left: 6px solid #4caf50; } */
/* .toast-error   { border-left: 6px solid #f44336; } */
/* .toast-info    { border-left: 6px solid #2196f3; } */
/* .toast-warning { border-left: 6px solid #ff9800; } */

/* Transições de entrada e saída para o toast */
.toast-enter {
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.toast-enter-start {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
}
.toast-enter-end {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.toast-leave {
    transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.toast-leave-start {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.toast-leave-end {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
}