.header {
    display: flex;
    background-color: var(--white_a700);
    justify-content: center;
    align-items: center;
    
}

.header__row {
    width: 100%;
    display: flex;
    justify-content: center;
    max-width: 1038px;
    margin-left: auto;
    margin-right: auto;

    @media only screen and (max-width: 850px) {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
        margin-bottom: var(--space-lg);
    }


}

.header__row--logo {
    min-height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);

    @media only screen and (max-width: 1090px) {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }

    @media only screen and (max-width: 850px) {
        flex-direction: column;
        gap: 0;
    }
}

.header__logo {
    width: 20%;
    height: 60%;

    @media only screen and (max-width: 850px) {
        width: auto;
        height: 80px;
    }
}

.header__logo  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}


.header__row--info {
    gap: var(--space-7xl);
    display: flex;
    justify-content: center;
    align-items: center;

    @media only screen and (max-width: 850px) {
        width: 100%;

    }

    @media only screen and (max-width: 750px) {
        flex-direction: column;
        gap: var(--space-lg);
    }


}

.header__menu {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-4xl);
    flex-wrap: wrap;

    @media only screen and (max-width: 475px) {
        flex-direction: column;
        row-gap: var(--space-lg);
    }

}

.header__icone--planos {
    height: 16px;

}

.header__texto--planos {
    color: var(--cor-principal-1) !important;
    letter-spacing: 0.24px;
    font-size: 12px;
    font-weight: 400;

}

.header__icone--pesquisar {
    height: 16px;
    width: 16px;

}

.header__texto--pesquisar {
    color: var(--cor-principal-1) !important;
    letter-spacing: 0.24px;
    font-size: 12px;
    font-weight: 400;
    align-self: end;

}

.header__texto--contact {
    color: var(--cor-principal-3) !important;
    letter-spacing: 0.24px;
    font-size: 12px;
    font-weight: 400;

}

.header__botao--signup {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    text-align: center;
    min-width: 160px;

}

.header__menu--planos {
    gap: var(--space-md);
    display: flex;
    align-items: center;
    text-decoration: none;
}