/* ========================================
   TOAST NOTIFICATION - PROFISSIONAL
   ======================================== */

.toast-download {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    min-width: 320px;
    max-width: 400px;
    z-index: 10000;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-download.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.toast-error .toast-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.toast-info .toast-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

.toast-close {
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.toast-close:active {
    transform: scale(0.95);
}

/* Animação de pulso no ícone */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.toast-download.show .toast-icon {
    animation: pulse 0.6s ease;
}

/* Responsivo para mobile */
@media (max-width: 640px) {
    .toast-download {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
        max-width: none;
    }
}
