(function(){
const PHONE = "573006519341"; // +57 300 651 9341
const buildMsg = (service) =>
`Hola Nitro, me interesa el servicio de "${service}". Vengo desde la página de servicios y quiero más información.`;
document.addEventListener('DOMContentLoaded', function(){
document.querySelectorAll('.wa-btn').forEach(btn=>{
const service = btn.getAttribute('data-service') || 'Servicios';
const msg = encodeURIComponent(buildMsg(service));
btn.href = `https://wa.me/${PHONE}?text=${msg}`;
btn.target = '_blank';
btn.rel = 'noopener';
});
});
})();