@media screen and (min-width:850px) {
    body {
        margin: 0;
        padding: 0;
    }

    .MENU {
        margin: 0;
        padding: 0;
        display: flex;
        background-color: #DA002B;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;

    }

    .conteinerLinha1 {
        margin: 0;
        padding: 0;
    }

    .ConteianeRetangulo {
        display: none;
    }

    .LOGO {
        width: 100%;
        height: 100%;
    }



    .LOGO img {
        width: 80px;
        height: 80px;
        margin-top: 5px;
    }

    .item_Menu {
        margin-left: auto;
        position: relative;
    }

    .item_Menu ul {

        list-style-type: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .item_Menu ul li a {
        text-decoration: none;
        font-family: "Montserrat";
        font-weight: 300;
        color: #FFFFFF;
        font-size: 16px;
        padding: 20px 40px;

        display: block;
    }

    .item_Menu ul li .subMenu {
        display: none;
        position: absolute;
        background-color: #DA002B;
    }

    .item_Menu ul li:hover .subMenu {
        display: block;
    }

    .item_Menu .subMenu a:hover {
        display: block;
    }

    .item_Menu ul li a:hover {
        font-weight: 900;
    }

    .item_Menu ul li .subMenu {
        text-align: left;
    }

    .Vetor1 {
        display: none;
    }

    .Vetor2 {
        display: none;
    }

    .Vetor3 {
        display: none;
    }

    .Vetor4 {
        display: none;
    }
}


@media screen and (max-width: 850px) {
    body {
        padding: 0;
        margin: 0;
    }

    .MENU {
        background-color: #DA002B;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000
    }

    .conteinerLinha1 {
        display: flex;
        justify-content: space-between;
    }

    .ConteianeRetangulo {
        width: 80px;
        height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #retangulo {
        width: 50px;
        height: 1px;
        border-radius: 20px;
        background-color: #740218;
        padding: 5px;
        margin-bottom: 4px;
    }

    .LOGO {
        width: 75px;
        height: 75px;
        background-color: #DA002B;
        margin-left: auto;
        margin-top: 2px;
    }

    .LOGO img {
        width: 100%;
        height: 100%;
    }

    .item_Menu {
        display: none;
    }

    .item_Menu.ativo {
        display: block;
    }

    .item_Menu ul {
        list-style-type: none;

        align-items: center;
        justify-content: center;

    }

    .item_Menu ul li a {
        text-decoration: none;
        font-family: "Montserrat";
        font-weight: 300;
        color: #FFFFFF;
        font-size: 16px;
        padding: 20px 40px;

        display: block;

    }

    .item_Menu .subMenu {
        display: none;
    }

    .item_Menu .subMenu.ativo {
        display: block;
    }

    .item_Menu ul li a:hover {
        font-weight: 900;
    }

    .item_Menu svg {
        vertical-align: middle;
    }

}