/* Floating WhatsApp */
.floating-whatsapp{
    position:fixed;

    right:20px;
    bottom:80px;

    z-index:999;

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 18px;

    border-radius:999px;

    background:#25D366;
    color:#fff;

    text-decoration:none;
    font-weight:600;

    box-shadow:0 8px 24px rgba(37,211,102,.35);

    transition:all .3s ease;
}

.floating-whatsapp:hover{
    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(37,211,102,.45);
}

.floating-whatsapp i{
    font-size:1.4rem;
}

/* Mobile */
@media (max-width:576px){

    .floating-whatsapp{
        width:60px;
        height:60px;

        padding:0;

        justify-content:center;

        border-radius:50%;
    }

    .floating-whatsapp span{
        display:none;
    }

    .floating-whatsapp i{
        font-size:1.8rem;
    }
}