document.querySelectorAll('button.button.fullwidth.service-item__add-to-cart')
    .forEach(btn => {
        const texto = btn.textContent.trim();
        if (texto === "Ver opciones") {
            btn.textContent = "Reservar";
        }
    });