.floating-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

.floating-whatsapp.bottom-right {
    right: 20px;
}

.floating-whatsapp.bottom-left {
    left: 20px;
}