:root {
    --alto_scorm: calc(100vh - 85px - 60px);
}

/* 85 navbar, 60 footer */

/* NO bloquees todo el body si quieres que el footer conviva normal */
body {
    overflow: auto;
}

main {
    padding: 0 !important;
}

.embed-responsive {
    /* tu offset actual */
    height: var(--alto_scorm);
    /* top + footer */
}

.embed-responsive iframe {
    position: relative;
    /* clave: vuelve al flujo */
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-height: 600px) and (orientation: landscape) {

    .navbar,
    footer {
        display: none;
    }

    .embed-responsive {
        margin-top: 0;
        height: 100vh;
    }
}