@charset "UTF-8";

@media screen and (min-width: 768px) {
    header {
        height: 100px;
    }

    nav > span#burger {
        display: none;
    }

    nav > menu {
        display: block;
        margin: 0px auto;
        max-width: 992px;
        height: 40px; 
        text-align: center;
    }

    nav > menu > ul > li {
        display: inline-block;
        border: none;
    }

    nav > menu > ul > li > a {
        width: 120px;
    }

    .content {
        flex-direction: row;
        max-width: 992px;
    }

    aside {
        order: 1;
        width: 20%;
    }

    main {
        order: 2;
        width: 80%;
    }

    footer > .rodape {
        flex-direction: row;
        max-width: 992px;
    }

    footer > .rodape > .rodape-esq {
        width: 25%;
    }

    footer > .rodape > .rodape-central {
        width: 50%;
    }

    footer > .rodape > .rodape-dir {
        width: 25%;
    }
}

