.whatsapp-floating{
    position:fixed;
    right:24px;
    bottom:24px;
    width:64px;
    height:64px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    text-decoration:none;
    transition:0.2s;
}

.whatsapp-floating:hover{
    transform:translateY(-3px) scale(1.05);
}

.whatsapp-floating svg{
    width:34px;
    height:34px;
    fill:white;
}

@media (max-width:768px){

    .whatsapp-floating{
        width:58px;
        height:58px;
        right:16px;
        bottom:16px;
    }

}