.whatsapp-floating-button {
    position: fixed;
    z-index: 999999;
    transition: all 0.3s ease;
}

.whatsapp-floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-floating-button a:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

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


@media (max-width: 768px) {
    .whatsapp-floating-button {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-floating-button svg {
        width: 25px;
        height: 25px;
    }
}