/* NOTIFICAÇÃO DE PAGAMENTO CONFIRMADO */

.payment-notification {
    width: 100%;
    animation: fadeInScale 0.4s ease-out, fadeOutScale 0.4s ease-out 7.6s forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOutScale {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

.notification-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 18px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.25);
    min-width: 100%;
}

.notification-content i {
    font-size: 32px;
    flex-shrink: 0;
    animation: checkPulse 0.5s ease-out;
}

@keyframes checkPulse {
    0% {
        transform: scale(0) rotateZ(-10deg);
    }
    50% {
        transform: scale(1.15) rotateZ(5deg);
    }
    100% {
        transform: scale(1) rotateZ(0deg);
    }
}

.notification-text {
    flex: 1;
    text-align: left;
}

.notification-text h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 3px;
}

.notification-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

/* NOTIFICAÇÃO DE PEDIDO CONFIRMADO */
.order-notification {
    width: 100%;
    animation: fadeInScale 0.4s ease-out, fadeOutScale 0.4s ease-out 4.6s forwards;
}

.notification-order {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.25) !important;
}

.notification-order i {
    animation: bagPulse 0.5s ease-out;
}

@keyframes bagPulse {
    0% {
        transform: scale(0) rotateZ(20deg);
    }
    50% {
        transform: scale(1.15) rotateZ(-5deg);
    }
    100% {
        transform: scale(1) rotateZ(0deg);
    }
}

/* NOTIFICAÇÃO DE INSTAGRAM */
.instagram-share-card {
    width: 100%;
    animation: fadeInScale 0.4s ease-out, fadeOutScale 0.4s ease-out 9.6s forwards;
}

.notification-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FD1D1D 100%) !important;
    box-shadow: 0 8px 32px rgba(131, 58, 180, 0.35) !important;
}

.notification-instagram i {
    animation: instaPulse 0.5s ease-out;
}

@keyframes instaPulse {
    0% {
        transform: scale(0) rotateZ(-20deg);
    }
    50% {
        transform: scale(1.2) rotateZ(10deg);
    }
    100% {
        transform: scale(1) rotateZ(0deg);
    }
}

.instagram-card-header {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 14px;
    padding: 16px 20px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(224, 44, 67, 0.25);
    transition: transform 0.2s ease;
}

.instagram-card-header:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.instagram-card-header:active {
    transform: translateY(0);
}

.instagram-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    animation: instaPulse 0.5s ease-out;
}

@keyframes instaPulse {
    0% {
        transform: scale(0) rotateZ(-20deg);
    }
    50% {
        transform: scale(1.2) rotateZ(10deg);
    }
    100% {
        transform: scale(1) rotateZ(0deg);
    }
}

.instagram-text {
    flex: 1;
    text-align: left;
}

.instagram-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.instagram-text span {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

.instagram-card-header i:last-child {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 480px) {
    .notification-content {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .notification-content i {
        font-size: 28px;
    }
    
    .notification-text h5 {
        font-size: 15px;
    }
    
    .notification-text p {
        font-size: 13px;
    }
}
