#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;
    margin-bottom: 75px;
    text-align: right;
    background-color: #f3f3f3;
}

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

    /*-------*/

    #header address {
        color: #2d2d2d;
    }

        #header address .telefone {
            display: block;
            font-size: 20px;
            line-height: 1em;
        }

        #header address .telefone + .telefone {
            margin-top: 6px;
        }

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

    /*-------*/

    #menu {
        z-index: 1;
        display: inline-block;
        vertical-align: top;
        width: auto;

        margin: 20px 0px 0px 0px;
        font-size: 0px;
        line-height: 0px;
        text-align: center;

        background-color: #0f478d;
    }

        #menu:after {
            display: block;
            position: absolute;
            left: 100%;
            top: 0px;
            width: 100vw;
            height: 100%;
            content: '';
            background-color: #0f478d;
        }

        #menu ul { }

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

                #menu li a {
                    display: block;
                    padding: 6px 5px;
                    font-family: 'gotham';
                    font-weight: 400;
                    color: #fff;
                    font-size: 16px;
                    line-height: 1em;
                    text-transform: uppercase;
                }

                #menu li:hover a {
                    color: #fff;
                    background-color: #5c9ae7;
                }

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

    #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: #1e517c;
    }

    #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: 10px 0px 0px 0px;
    color: #00bff3;
    background-color: #0c4c9a;
}

    #footer .centro {
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;

        width: 100%;
    }

        #footer .centro > .column {
            width: auto;
            margin: 0px 0px 20px 0px;
            font-weight: 400;
        }

        #footer .centro > #logo3 {
            margin-bottom: 0px;
        }

            #logo3 img {
                width: 100%;
                height: auto;
            }

            #footer .telefones {
                margin: 10px 0px;
            }

            #footer .endereco {
                display: block;
            }

                #footer .bairro:after {
                    content: ', '
                }

                #footer .complemento:before {
                    content: '(';
                }

                #footer .complemento:after {
                    content: ').';
                }

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

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

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

        #footer .redes-sociais {
            display: block;
            width: 100%;
            padding: 10px;
            text-align: center;
            background-color: #00476b
        }

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

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

    #creditos {
        z-index: 1;
        display: block;
        padding: 10px;
        text-align: center;
        font-family: 'Roboto', 'Arial';
        font-size: 11px;
        line-height: 1em;
        color: #000;
        background-color: #fff;
    }

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

#slider {
    border-bottom: solid 6px #4bb1c0;
    margin: -75px auto 20px auto;
}

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

#bem_vindo {
    margin-bottom: 40px;
}

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

#dicas {
    padding-top: 20px;
    padding-bottom: 1px;
    margin: 20px 0px;
    background-color: #ebebeb;
}

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

#servicos {
    padding: 20px 0px;
    color: #fff;
    background-color: #0c4c9a;
}

    #servicos h1, 
    #servicos h2 {
        color: #fff;
    }

    #servicos .mais {
        text-align: center;
        font-weight: 900;
        font-size: 22px;
        line-height: 1em;
        text-transform: uppercase;
    }

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

#mapa_home {
    padding-bottom: 20px;
    border-bottom: solid 1px #f8981d;
    font-size: 38px;
    line-height: 1.3em;
    color: #00476b;
    font-weight: 900;
}

    #mapa_home .texto {
        width: 800px;
        max-width: 100%;
        padding: 0px 10px;
    }

        #mapa_home img {
            max-width: 100%;
            float: right;
        }

    #mapa_home .visite {
        padding: 10px 0px;
        border-top: solid 1px #f8981d;
        margin-top: 20px;
        text-align: center;
    }

    #mapa_home iframe {
        max-width: 100%;
    }

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

#aceitamos {
    padding: 10px 0px;
    margin: 40px 0px;
    font-size: 25px;
    line-height: 1em;
    color: #052b5b;
    background-color: #dddad6;
}

    #aceitamos img {
        float: right;
    }

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

#promocoes_home {
    margin: 20px 0px;
}

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

#icones_home {
    padding: 10px 0px;
    margin: 20px 0px;
    text-align: center;
    background: #0c4c9a;
}

    #icones_home .column {
        width: auto;
        margin: 10px 5px;
    }