.header__first {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 3;
    background-color: #fff;
    width: 100%;
    top: 0;
    height: 6.4rem;
}

.header__box {
    display: flex;
    align-items: center;
}

.header__box.mobile-only .header__menu span{
    background-color: #0037ff;
}

.header__first-navigation a{
    font-size: 1.6rem;
    color: black;
    font-weight: 400;
    line-height: 2.4rem;
    margin-right: 3.2rem;
    font-family: "Montserrat", sans-serif;
}

.header__first-navigation a:last-child{
    font-weight: 600;
}

.header__brand{
    margin: 0 4rem 0 0;
    max-width: 8rem;
}
.header__brand a{
    display: flex;
    align-items: center;
}

.header__login a{
    color: #0037ff;
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.6rem;
    
    font-family: "Montserrat", sans-serif;
}

.header__login a:last-of-type{
    margin-left: 1.6rem;
    background-color: #002ccc;
    border-radius: 4px;
    padding: 0.7rem 1.4rem;
    transition: all 200ms ease 0s;
    
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}

.header__login a:last-of-type:hover{
    background-color: #002199;
}





/* MAX 1024 */
@media only screen and (max-width: 1024px){
    .header__first{
        padding: .3rem 0;
        border-bottom: 1px solid #F2F2F2;
    }

    .wrapper{
        width: 90%;
    }

    .desktop-only {
        display: none !important;
    }

    .header__brand{
        margin: 0;
    }
}

/* MIN 1025 */
@media only screen and (min-width: 1025px){
    .mobile-only {
        display: none !important;
    }

    .wrapper-left.header__first, .wrapper-right.header__first{
        padding: 0 1.7rem !important;
    }
}

/* PADRÃO */
.wrapper {
    margin: 0 auto;
    width: 80%;
    max-width: 109.1rem;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}