.btn-wsp {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 60px; /* Alinea verticalmente el texto */
    bottom: 25px;
    right: 25px;
    background: #25d366; /* Color de fondo verde */
    color: #FFF; /* Color del ícono (debe ser blanco) */
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: all 300ms ease;
    display: flex; /* Flexbox para centrar el contenido */
    align-items: center; /* Centra el ícono verticalmente */
    justify-content: center; /* Centra el ícono horizontalmente */
    text-decoration: none; /* Quita el subrayado del enlace */
}

.btn-wsp:hover {
    background: #20ba5a; /* Cambia a un verde más oscuro cuando se pasa el mouse */
}

.btn-wsp img {
    width: 40px; /* Ajusta el tamaño según sea necesario */
    height: auto; /* Mantén la proporción */
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    .btn-wsp {
        width: 63px;
        height: 63px;
        line-height: 63px; /* Alinea verticalmente el texto */
    }
}

