.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-content {
    display: flex;
    align-items: center;
}

    .whatsapp-content img {
        width: 50px; /* Ajusta el tamaño del icono según sea necesario */
        height: auto;
        margin-right: 5px; /* Espacio entre el icono y el texto */
    }

    .whatsapp-content span {
        background-color: #fff; /* Fondo blanco */
        padding: 5px 10px; /* Espacio interno */
        border-radius: 10px; /* Bordes redondeados */
        font-size: 14px;
        color: #666; /* Color del texto */
    }

@media screen and (max-width: 768px) {
    .whatsapp-content span {
        display: none; /* Ocultar el menú */
    }
}
