.premium-wa-button-6c410648 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0B1F3A;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    padding: 12px 24px 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    animation: wa-pulse-6c410648 2s infinite;
}

.premium-wa-button-6c410648:hover {
    background-color: #D4AF37;
    color: #0B1F3A;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
    animation: none;
}

.premium-wa-icon-6c410648 {
    width: 28px;
    height: 28px;
}

@keyframes wa-pulse-6c410648 {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@media (max-width: 768px) {
    .premium-wa-button-6c410648 {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }
    .premium-wa-text-6c410648 {
        display: none;
    }
}