Talleres para niños y adolescentes

Talleres para adultos

#popup { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); } #popup-content { position: relative; width: 90%; max-width: 600px; margin: 10% auto; background: white; border-radius: 10px; padding: 30px 25px; box-shadow: 0 0 10px rgba(0,0,0,0.3); text-align: center; font-family: Arial, sans-serif; } #popup-content p { font-size: 18px; color: #333; line-height: 1.6; } #close-popup { position: absolute; top: 10px; right: 15px; cursor: pointer; font-size: 30px; color: #616160; font-weight: bold; background: white; border-radius: 50%; width: 35px; height: 35px; text-align: center; line-height: 35px; } @media (max-width: 480px) { #popup-content { width: 95%; margin: 20% auto; padding: 20px; } #popup-content p { font-size: 16px; } #close-popup { font-size: 24px; width: 30px; height: 30px; line-height: 30px; top: 8px; right: 10px; } } window.onload = function() { setTimeout(function() { document.getElementById('popup').style.display = 'block'; }, 1000); }; document.getElementById('close-popup').onclick = function() { document.getElementById('popup').style.display = 'none'; };