/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Estilo do iframe */
iframe {
    width: 100%;
    height: 100vh; /* Ocupa toda a altura visível da tela */
    border: none;
    display: block;
}

/* Ajustes para tablets/desktops */
@media (min-width: 768px) {
    iframe {
        height: 90vh; /* Um pouco menor em telas maiores, se quiser espaço para header/footer */
    }
}
