de $ 22.783,45
Inicio
de $ 22.783,45
de $ 56.533,96
de $ 14.482,80
de $ 20.980,86
de $ 29.175,68
de $ 19.174,49
de $ 57.981,95
de $ 78.273,05
de $ 29.644,70
de $ 27.176,39
de $ 21.176,20
de $ 13.236,61
de $ 29.000,48
de $ 31.037,47
de $ 87.330,84
// Verificar si es la página de inicio function isHomePage() { return window.location.pathname === '/' || window.location.pathname === '/index.php' || window.location.pathname === '/es/' || // Para multitienda en español window.location.pathname === '/en/'; // Para multitienda en inglés } // Crear elementos del popup if (isHomePage()) { document.addEventListener('DOMContentLoaded', function() { // CSS (inyectado dinámicamente) var css = ` #promoPopup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 99999; display: none; justify-content: center; align-items: center; } .popup-content { position: relative; max-width: 90%; } .close-popup { position: absolute; top: -15px; right: -15px; color: white; font-size: 24px; cursor: pointer; } `; var style = document.createElement('style'); style.innerHTML = css; document.head.appendChild(style); // HTML var popupHTML = `