/* Sistema de Notificações Toast */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--glass-bg);
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--pure-white);
    text-shadow: var(--text-shadow-white);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-black);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--pure-white);
    text-shadow: var(--text-shadow-white);
}

/* Tipos de Toast */
.toast-success {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px var(--green-glow);
}

.toast-success .toast-icon {
    color: var(--primary-green);
    text-shadow: var(--glow-green);
}

.toast-error {
    border-color: var(--error-color);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.toast-error .toast-icon {
    color: var(--error-color);
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.toast-warning {
    border-color: var(--warning-color);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
}

.toast-warning .toast-icon {
    color: var(--warning-color);
    text-shadow: 0 0 8px rgba(255, 170, 0, 0.5);
}

.toast-info {
    border-color: var(--pure-white);
    box-shadow: 0 0 20px var(--glow-white);
}

.toast-info .toast-icon {
    color: var(--pure-white);
    text-shadow: var(--text-shadow-white);
}

/* Animações */
@keyframes toast-slide-in {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toast.entering {
    animation: toast-slide-in 0.3s ease-out;
}

.toast.leaving {
    animation: toast-slide-out 0.3s ease-in;
}

/* Responsividade */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        right: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast.show {
        transform: translateY(0);
    }
    
    @keyframes toast-slide-in {
        from {
            transform: translateY(-100px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes toast-slide-out {
        from {
            transform: translateY(0);
            opacity: 1;
        }
        to {
            transform: translateY(-100px);
            opacity: 0;
        }
    }
}