NUESTROS HORARIOS

LUNES A VIERNES

5:30 AM – 09:30PM

SÁBADOS

8:00 AM – 02:00PM

DOMINGOS Y FESTIVOS

9:00 AM – 01:00PM

document.addEventListener('DOMContentLoaded', function () { // Selecciona el botón de Elementor por su clase const button = document.querySelector('a.elementor-button-link'); // Cambia si tu botón tiene otra clase if (button) { button.addEventListener('click', function (e) { e.preventDefault(); // Evitar que el botón siga su enlace predeterminado // Cambiar el texto del botón button.textContent = '¡Botón presionado!'; // Registrar un mensaje en la consola console.log('El botón ha sido presionado.'); }); } });