#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;}

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

#everything {
    border-top: solid 3px #09a2b0;
}

#header {
    padding-top: 11px;
    border-top: solid 2px #ed603b;
    margin-bottom: 20px;
    text-align: right;
}

    #header .max-width {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    #logo {
        z-index: 5;
        width: 260px;
        height: auto;
        margin: 0px 0px 15px 0px;
    }

    /*-------*/

    #header address {
        margin: 0px 0px 5px 0px;
        font-family: 'Roboto';
        font-weight: 400;
        color: #898989;
    }

        #header address .social-icon {
            margin: 0px 0px 5px 10px;
        }

        #header address .endereco, 
        #header address .telefones {
            display: block;
            margin: 0px;
        }

        #header address .endereco {
            font-size: 14px;
        }

        #header address .telefones {
            text-align: right;
        }
            
            #header address .telefone {
                font-size: 18px;
                line-height: 1em;                
                color: #ed603b;
            }

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

            #header address .telefone.whatsapp {
                color: #078e9a
            }

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

        #header .endereco {
            display: block;
            margin-top: 10px;
        }

            #header .cidade {
                display: block;
            }

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

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

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

            #header .cep {
                display: block;
            }

    /*-------*/

    #menu {
        z-index: 1;
        border-top: solid 2px #fff;
        margin: 0px;
        font-size: 0px;
        line-height: 0px;
        text-align: center;
        background-color: #ed603b;
    }

        #menu ul { }

            #menu li {
                position: static;
                display: inline-block;
                vertical-align: top;
                width: auto;
                margin: 0px;
                transition-duration: 0.3s;
                transition-property: background, color;
            }

            #menu li:hover {
                color: #fff;
                background-color: #078e9a;
            }

                #menu li a {
                    display: block;
                    padding: 5px 5px;
                    color: #fff;
                    font-size: 21px;
                    line-height: 22px;
                }

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

    #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: 20px 0px 0px 0px;
    color: #fff;
    background-color: #09a2b0;
}

    #footer .centro {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: space-between;

        width: 100%;
    }

        #footer .titulo {
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 18px;
            line-height: 1.3em;
        }

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

        #logo2 {
            width: 135px !important;
            height: auto;
        }

        #logo3 {
            width: 135px !important;
            height: auto;
        }

        #footer .contato {

        }
            
            #footer .telefone {
                font-size: 20px;
                line-height: 1em;
                font-family: 'Roboto';
                font-weight: 700;
            }

            #footer .telefone ~ .telefone {
                margin-top: 10px;
            }

            #footer .emails {
                margin-top: 20px;
            }

            #footer .endereco {
                display: block;
                margin-top: 20px;
            }

                #footer .bairro:before {
                    display: block;
                    content: '';
                }

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

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

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

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

                #footer .cep {
                    display: block;
                }

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

                #footer .foneloja:before {
                    content: 'Fone Loja: ';
                }

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

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

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

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

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

#bem_vindo {
    margin-bottom: 40px;
}

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

#servicos {
    padding-bottom: 20px;
    margin-bottom: 40px;
    color: #fff;
    background-color: #ed603b;
}

    #servicos .cabecalho span {
        color: #ed603b;
    }

        #servicos .cabecalho span b {
            color: #08A1AF;
        }

    #servicos .servicos {
        width: calc(100% + 20px);
        margin: 0px -10px 0px -10px;
    }

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

#instagram {
    padding: 0px 0px 30px 0px;
    margin-bottom: 50px;
    background-color: #e5e4e3;
}

    #instagram .fotos {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        height: calc((100vw - (5 * 20px)) / 6);
        overflow: hidden;
    }

        #instagram .photo {
            width: calc((100vw - (5 * 20px)) / 6);
            height: calc((100vw - (5 * 20px)) / 6);
            height: auto;
        }

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

#dicas {
    margin: 20px 0px;
}

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

#produtos_home {
    padding-top: 15px;
    border-bottom: solid 24px #fdca31;
    margin: 40px auto;
    background-color: #0094a8;
}

    #produtos_home .pets {
        float: left;
        width: calc(100% - 455px);
        height: auto;
        margin-right: 20px;
        margin-bottom: -24px;
        text-align: center;
    }

        #produtos_home .pets img {
            max-width: 100%;
        }

    #produtos_home .conteudo {
        float: right;
        width: 435px;
        max-width: 100%;
        text-align: center;
        color: #fff;
    }

        #produtos_home .conteudo .caixa {
            border: solid 5px #fff;
            padding: 15px;
            text-align: center;
            font-size: 28px;
            line-height: 1.3em;
            font-weight: 700;

            transition-property: background;
            transition-duration: 0.3s;
        }

        #produtos_home .consulte {
            margin: 20px 0px;
        }

        #produtos_home:hover .consulte {
            text-decoration: underline;
        }

        #produtos_home:hover .conteudo .caixa {
            background-color: rgba(255, 255, 255, 0.3);
        }

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

#depoimentos_home, 
#depoimentos {
    margin: 20px 0px;
    background-color: #e5e4e3
}

#depoimentos_home {
    margin-top: 60px;
}

#depoimentos_home br {
    display: none;
}

    #depoimentos_home .conteudo {
        height: 3.9em;
        overflow: hidden;
    }

        #depoimentos_home .conteudo:after {
            position: absolute;
            right: 0px;
            bottom: 0px;
            content: '...';
            background-color: #e5e4e3;
        }

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

#diferenciais {
    margin: 20px 0px;
    background-color: #e5e4e3;
}
    
/*-----------------------------------*/

#parceiros_home {
    margin: 20px 0px 50px 0px;
}

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

#regras_home {
    padding: 24px 0px;
    margin: 40px 0px;
    font-size: 28px;
    line-height: 1em;
    color: #fff;
    background-color: #ed603b;

    transition-duration: 0.3s;
    transition-property: background;
}

    #regras_home .regras {
        width: 121px;
        border: solid 12px #fff;
        border-radius: 20px;
        margin: -48px 20px -48px 0px;
        background-color: #fff;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    }


    #regras_home:hover {
        background-color: #fd9969
    }

    #regras_home:hover .clique {
        text-decoration: underline;
    }