.whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 10px;
    bottom: 50%;
    transform: translateY(50%);
    border-radius: 0.7em;
    text-align: center;
    z-index: 100;
    background-image: url('../images/whatsapp_logo.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: none; /* Sin sombras */
}

/* Para pantallas de tamaño mediano */
@media only screen and (max-width: 768px) {
    .whatsapp-button {
        right: 30px; /* Más alejado del lateral derecho de la pantalla en pantallas medianas */
    }
}

/* Para pantallas pequeñas */
@media only screen and (max-width: 480px) {
    .whatsapp-button {
        right: 10px; /* Más alejado del lateral derecho de la pantalla en pantallas pequeñas */
        width: 50px;
        height: 50px;
    }
}











