﻿.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 95px;
    z-index: 9999;
    height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

    .whatsapp-float i {
        font-size: 28px;
    }

    .whatsapp-float:hover {
        color: #fff;
        transform: translateY(-4px);
    }

    .whatsapp-float::before {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 999px;
        border: 2px solid rgba(37, 211, 102, 0.35);
        animation: whatsappPulse 1.8s infinite;
    }

@keyframes whatsappPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .whatsapp-float {
        right: 20px;
        bottom: 85px;
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
    }

        .whatsapp-float span {
            display: none;
        }
}
