de $ 17.281,85
Inicio
de $ 17.281,85
de $ 13.824,45
de $ 29.291,91
de $ 16.058,38
de $ 17.198,80
de $ 66.480,76
de $ 29.356,78
de $ 29.010,32
// 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 = `