Desintoxicación Digital
<html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body, html { margin: 0 ; padding: 0 ; overflow-x: hidden; width: 100%; } .page-width, .shopify-section { padding: 0 ; margin: 0 ; max-width: 100% ; } .landing-container { width: 100%; position: relative; } .landing-iframe { width: 100%; min-height: 100vh; height: 100vh; border: none; display: block; overflow: hidden; } </style> </head> <body> <div class="landing-container"> <iframe src="https://14-day-digital-detox-program.vercel.app" class="landing-iframe" title="Desintoxicación Digital en 14 Días" frameborder="0" scrolling="yes" id="landing-frame" ></iframe> </div> <script> // Ajustar altura del iframe dinámicamente function resizeIframe() { const iframe = document.getElementById('landing-frame'); if (iframe) { iframe.style.height = window.innerHeight + 'px'; } } window.addEventListener('load', resizeIframe); window.addEventListener('resize', resizeIframe); // Escuchar mensajes del iframe para ajustar altura window.addEventListener('message', function(e) { if (e.data && e.data.height) { document.getElementById('landing-frame').style.height = e.data.height + 'px'; } }); </script> </body> </html>