/*
    OCULTA HEADER E FOOTER QUANDO O USUARIO É PLUS
*/
.main_header{
    display: none;
}
.main_footer{
    display: block;
    margin-top: 0px;
}
.main_footer .box3{
    display: none;
}
/*
    BOTÃO PARA EXIBIR/OCULTAR MENU DO CARDAPIO.ME
*/
.menu_plus{
    width: 30px;
    display: block;
    background: #8F1861;
    text-align: center;
    padding: 5px;
    position: absolute;
    right: 3%;
    z-index: 99;
    border-radius: 0 0 5px 5px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ccc;
}
.menu_plus:hover{
    color: #fff;
    transition: 0.5s;
}

.footer_plus{
    width: 20%;
    display: block;
    margin: 0 auto;
    background: #8F1861;
    text-align: center;
    padding: 5px;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.1);
    color: #666;
}
.footer_plus:hover{
    color: #333;
    transition: 0.5s;
}
.footer_plus i{
    display: block;
    font-size: 1em;
}
.footer_plus small{
    display: block;
    text-transform: uppercase;
    font-size: 0.5em;
}