@media (max-width: 1200px) {
    body {
        background-color: var(--color-almostBlack);
    }

    nav {
        display: none;
    }

    /* Menu mobile */

    .headerMobile {
        position: fixed;
        display: block;
        backdrop-filter: blur(1rem);
        -webkit-backdrop-filter: blur(1rem);
        top: 0;
        left: 0;
        margin: 0;
        background-color: rgba(21, 21, 21, 0.7);
        padding: 0;
        width: 100%;
        z-index: 9998;
        transition: all 0.3s ease;
    }

    .headerMobile:hover {
        background-color: rgba(21, 21, 21, 0.9);
    }

    .menuMobile {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgba(21, 21, 21, 1);
        z-index: 9999;
    }

    .menuMobileWrapper {
        width: 80%;
        margin: 0 auto;
    }

    .menuMobileHeader {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0;
    }

    #closeMobileMenu {
        background-color: rgba(250, 250, 250, 0.1);
        width: 3rem;
        height: 3rem;
        border-radius: 50px;
        border: none;
        font-size: 1.2rem;
        padding: 0;
        margin: 0;
        color: #F8FAF9;
        cursor: pointer;
    }

    .menuMobileContent ul {
        list-style: none;
        font-size: 36px;
        line-height: 2;
        font-weight: 300;
        padding: 0;
        margin-top: 5vh;
        margin-bottom: 5vh;
    }

    .menuMobileContent a {
        color: #F8FAF9;
        text-decoration: none;
    }

    .menuMobileContent a:hover {
        text-decoration: underline;
    }

    .menuMobileContent span {
        color: #7A99AC;
    }

    .menuMobileContent {
        padding-bottom: 5vh;
    }

    /* Estilos para o menu */

    .headerMobile {
        position: fixed;
        display: block;
        top: 1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        border-radius: 10rem;
        z-index: 9998;
    }

    .menuMobile {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(var(--color-black), 0.9);
        backdrop-filter: blur(0.5rem);
        -webkit-backdrop-filter: blur(0.5rem);
        justify-content: center;
        z-index: 9999;
        display: none;
    }

    .menuMobile img {
        filter: brightness(0) invert(1);
    }

    .menuMobileHidden {
        display: none;
    }

    .headerMobileWrapper {
        display: flex;
        padding: 0 0.6rem 0 2rem;
        margin: 0 auto;
        justify-content: space-between;
        align-items: center;
    }

    .headerMobileWrapper img {
        margin-top: 0.3rem;
    }

    .logoMobilePreto {
        filter: brightness(0%);
    }

    .headerMobileMenu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #1A4BA9;
        gap: 0.5rem;
        padding: 0.4rem 0.6rem;
        border-radius: 5rem;
        font-size: 1rem;
        cursor: pointer;
        margin: 0.5rem 0;
    }

    .headerMobileMenu p {
        margin: 0;
        font-family: 'Titillium Web', sans-serif;
        color: #F8FAF9;
    }

    .menuMobileAbrir {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 5rem;
        background-color: rgba(255, 255, 255, 1);
        color: #11171F;
        font-size: 1.5rem;
    }

    .no-scroll {
        overflow: hidden;
    }

    .displayFlex {
        display: block;
    }
}