#everything {
    width: 100vw;
}

#menu_mobile { z-index: 51;}
#header { z-index: 50;}
    #abrir_menu { z-index: 50;}
#middle { z-index: 40;}
#footer { z-index: 20;}

/*------------------------------------*/

#header {
    padding: 20px 0px 20px 0px;
    margin-bottom: 20px;
    text-align: right;
    background-color: #fff;
}

    /*-------*/

    #logo {
        z-index: 5;
        float: left;
        width: 327px;
        height: auto;
    }

    /*-------*/

    #header .telefone {
        display: block;
        padding: 5px 0px;
        font-weight: 500;
        font-size: 16px;
        line-height: 1em;
        color: #555;
        font-weight: 300;
    }

    #header .telefone.whatsapp:after {
        float: left;
        margin-right: 10px;
    }

    /*-------*/

    #menu {
        z-index: 1;
        width: auto;
        margin: 25px 0px 0px 0px;
        font-size: 0px;
        line-height: 0px;
        text-align: right;
        color: #a8071d;
    }

        #menu ul {

        }
            #menu li {
                position: static;
                display: inline-block;
                vertical-align: top;
                width: auto;
                margin: 0px
            }

                #menu li a {
                    display: block;
                    padding: 0px 10px;
                    font-size: 16px;
                    line-height: 1em;
                    text-align: center;
                    font-weight: 400;
                    color: #2e3192;
                }

                #menu li a:after {
                    display: block;
                    width: 100%;
                    height: 2px;
                    content: '';
                }

                #menu li a:hover:after {
                    background-color: #f7941d;
                }

    /*--------------*/

    #abrir_menu {
        display: none;
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
        padding: 10px;
        font-size: 20px;
        line-height: 1em;
        color: #fff;
        font-weight: 900;
        text-align: center;
        background-color: #3658a8;
    }

    #abrir_menu:before {
        display: inline-block;
        vertical-align: top;
        width: 31px;
        height: 20px;
        margin-right: 15px;

        content: '';

        background-image: url(../images/menu-mobile.png);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center center;
    }

    #abrir_menu.fixo {
        position: fixed;
        top: 0px;
        bottom: auto;
        box-shadow: 0px 2px 19px rgba(0, 0, 0, 0.25);
    }

/*------------------------------------*/

#menu_mobile {
    display: none;
    position: fixed;
    right: 0px;
    top: 0px;

    width: 0px;
    height: 100vh;
    overflow: hidden;
    text-align: left;

    transition-property: width;
    transition-duration: 0.5s;
}

#menu_mobile.aberto {
    width: 200px;
}
    #menu_mobile .conteudo {
        width: 200px;
        height: 100vh;
    }

    #menu_mobile a, 
    #menu_mobile span.inert {
        display: block;
        padding: 10px 10px 10px 15px;
        color: #bbb;
        font-size: 14px;
        line-height: 1em;
    }

    #menu_mobile .fechar {
        border-left: solid 1px #022a40; 
        text-align: center;
        color: #fff;
        font-size: 14px;
        line-height: 20px;
        background-color: #656565;
    }

    #menu_mobile .fechar:before {
        display: inline-block;
        vertical-align: top;
        width: 14px;
        height: 14px;   
        margin-right: 7px;
        margin-top: 3px;

        content: '';

        background-image: url(../images/menu-fechar.png);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
    }

    #menu_mobile ul {
        list-style: none;
        
        margin: 0px;
        
        width: 100%;
        height: calc(100% - 34px);
        border-left: solid 1px #232121;
    
        overflow-x: hidden;
        overflow-y: auto;

        background-color: #343434;
    }
    
        #menu_mobile li {
            border-bottom: solid 1px #232121;
            margin: 0px;
        }

        #menu_mobile li:last-child {
            border-bottom: none;
        }

        #menu_mobile a {
            font-family: 'Roboto';
            font-weight: 300;
        }
        
        #menu_mobile li ul li {
            border-bottom: none;
        }

            #menu_mobile li ul a {
                padding-left: 25px;
            }
        
            #menu_mobile li ul a:before {
                content: '- ';
            }

/*------------------------------------*/

#middle {
    min-height: 700px;
    margin-bottom: 20px;
}

/*------------------------------------*/

#footer {
    padding: 0px;
    border-bottom: solid 10px #555;
    color: #fff;
    font-size: 14px;
    line-height: 1.3em;
    background-color: #4169b2
}

    #footer .max-width {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        #footer .max-width > * {
            width: auto;
            padding-top: 20px;
            margin: 0px 0px 20px 0px;
        }

            #footer .cidade, 
            #footer .complemento {
                display: block;
            }

            #footer .estado:before {
                content: ' - ';
            }

            #footer .cep:before {
                content: 'CEP: ';
            }

            #footer .contato {
                text-align: center;
            }

                #footer .email {
                    font-size: 12px;
                    line-height: 1.3em;
                }

                #footer .telefone {
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 1.3em;
                }

                #footer .telefone + .telefone {
                    margin-left: 10px;
                }

                #footer .redes-sociais {
                    margin-top: 5px;
                }

                    #footer .social-icon {
                        background-image: url(../images/social-networks-sprite2.png);
                    }

                    #footer .social-icon:last-child {
                        margin-right: 0px;
                    }

    #creditos {
        display: block;
        padding: 10px;
        border-top: solid 5px #fff;
        border-bottom: solid 5px #fff;

        text-align: center;
        font-size: 12px;
        line-height: 1em;
        color: #fff;
        background-color: #f7941d;
    }

/*------------------------------------*/

#slider {
    margin: -20px auto 0px auto;
}

/*------------------------------------*/

#bem_vindo {
    padding: 20px 0px;
    margin-bottom: 20px;
}

/*------------------------------------*/

#instagram {
    padding: 10px 0px 20px 0px;
    margin-bottom: 20px;
    background-color: #4169b2;
}

    #instagram h2.h1 {
        color: #fff;
        border-bottom: solid 1px #fff;
    }

    #instagram .fotos {
        max-height: 32.32vw;
        overflow: hidden;
    }

        #instagram .foto {
            width: 16.66vw;
            height: 16.66vw;
            padding: 10px;
        }

            #instagram .foto span {
                overflow: hidden;
                width: 100%;
                height: 100%;
            }

                #instagram .foto span img {
                    width: 100%;
                    min-height: 100%;
                }

/*------------------------------------*/



#a_casa .secao {
    margin: 60px auto;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.30);
}

    #a_casa h2.cabecalho {
        padding: 20px;
        margin: 40px auto 0px auto;
        color: #fff;
        background-color: #4169b2;
    }

    #a_casa .secao .conteudo {
        padding: 20px;
    }