// VALIDAR Y MOSTRAR const hoy = new Date().toISOString().split('T')[0]; if (hoy >= FECHA_INICIO && hoy <= FECHA_FIN) { setTimeout(() => { const modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.7);z-index:99999;display:flex;align-items:center;justify-content:center'; modal.innerHTML = `
`; document.body.appendChild(modal); modal.querySelector('button').onclick = () => modal.remove(); }, SEGUNDOS_ESPERA * 1000); }