<style>
.responsive-iframe-container {
position: relative;
width: 100%;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
overflow: hidden;
}
.responsive-iframe-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; /* CORREGIDO */
border: none;
}
/* Opcional: versión más alta en mobile */
@media (max-width: 768px) {
.responsive-iframe-container {
padding-bottom: 75%; /* 4:3 en móvil si lo quieres más alto */
}
}
</style>
<div class="responsive-iframe-container">
<iframe
src="https://canonlfpshowroom.com/"
allowfullscreen
loading="lazy"
title="Canon Wide Format Printers Virtual Showroom">
</iframe>
</div>