@import "helpers";

#con-breadcrumb{
    display: none !important;
}

#pagina-contato{
    display: block;
    width: 100%;

    .conteudo{
        display: block;
        width: 100%;
        padding: 100px 0px;

        @media(max-width:991px){
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .box-breadcrumb{
            display: flex;
            width: 100%;
            margin-bottom: 10px;
            align-items: center;
            justify-content: center;

            .opt{
                display: block;
                margin: 0px;
                color: $textoMedium;
                font: normal 12px $fontRegular;
            }

            .divider{
                display: block;
                margin: 0px 10px;
                color: $textoMedium;
                font: normal 12px $fontRegular;
            }
        }

        .pagina-titulo{
            display: flex;
            margin: 0px;
            margin-bottom: 60px;
            color: $textoDark;
            font: normal 26px $fontRegular;
            align-items: center;
            justify-content: center;

            &:before,&:after{
                display: block;
                content: "";
                width: 10%;
                height: 1px;
            }

            &:before{
                margin-right: 15px;
                background: rgba(0,0,0,0);
                background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,1) 100%);
                background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,0)), color-stop(25%, rgba(0,0,0,0.25)), color-stop(100%, rgba(0,0,0,1)));
                background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,1) 100%);
                background: -o-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,1) 100%);
                background: -ms-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,1) 100%);
                background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,1) 100%);
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1 );
            }

            &:after{
                margin-left: 15px;
                background: rgba(0,0,0,1);
                background: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.25) 75%, rgba(0,0,0,0) 100%);
                background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,1)), color-stop(75%, rgba(0,0,0,0.25)), color-stop(100%, rgba(0,0,0,0)));
                background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.25) 75%, rgba(0,0,0,0) 100%);
                background: -o-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.25) 75%, rgba(0,0,0,0) 100%);
                background: -ms-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.25) 75%, rgba(0,0,0,0) 100%);
                background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.25) 75%, rgba(0,0,0,0) 100%);
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1 );
            }
        }

        .box-conteudo{
            display: flex;
            width: 100%;
            align-items: stretch;
            justify-content: center;
            
            @media(max-width:767px){
                flex-direction: column;
                align-items: center;
            }

            .box-informacoes{
                display: block;
                width: 100%;
                max-width: 385px;
                border-right: solid 1px $borders;
                
                @media(max-width:991px){
                    max-width: 300px;
                }
                
                @media(max-width:767px){
                    order: 2;
                    border-right-width: 0px;
                }

                .item{
                    display: flex;
                    width: 100%;
                    margin-bottom: 45px;
                    align-items: flex-start;
                    justify-content: space-between;

                    .icone{
                        @include sprite();
                        display: block;
                        content: "";
                        width: 62px;
                        height: 62px;

                        &.email{
                            background-position: -86px -326px;
                        }
                        &.telefone{
                            background-position: -163px -326px;
                        }
                        &.chat{
                            background-position: -240px -326px;
                        }
                    }

                    .informacoes{
                        display: block;
                        width: 100%;
                        padding-bottom: 45px;
                        max-width: calc(100% - 82px);
                        border-bottom: solid 1px $borders;
                        
                        @media(max-width:991px){
                            padding-right: 10px;
                        }

                        .titulo{
                            display: block;
                            max-width: 240px;
                            margin: 0px;
                            margin-bottom: 10px;
                            color: $textoDark;
                            font: normal 15px $fontSemibold;
                        }

                        .texto{
                            display: block;
                            max-width: 240px;
                            margin: 0px;
                            margin-bottom: 15px;
                            color: $textoDark;
                            font: normal 15px $fontRegular;
                        }

                        .info{
                            display: block;
                            max-width: 240px;
                            margin: 0px;
                            color: $textoDark;
                            font: normal 15px $fontRegular;
                            text-decoration:underline;
                        }
                    }

                    &:first-of-type{
                        padding-top: 20px;
                    }

                    &:last-of-type{
                        margin-bottom: 0px;

                        .informacoes{
                            padding-bottom: 0px;
                            border-bottom-width: 0px;
                        }
                    }
                }
            }

            .box-form{
                display: block;
                width: 100%;
                max-width: 720px;
                padding-left: 60px;
                
                @media(max-width:991px){
                    padding-left: 15px;
                }
                
                @media(max-width:767px){
                    order: 1;
                    padding-left: 0px;
                    margin-bottom: 50px;
                }

                .control-label{
                    display: block;
                    margin-bottom: 5px;
                    color: $textoDark;
                    font: normal 13px $fontRegular;
                }

                input,select,textarea{
                    display: block;
                    outline: 0px;
                    width: 100%;
                    color: $textoMedium;
                    font: normal 13px $fontRegular;
                    box-shadow: none;
                    border-radius: 0px;
                    border: solid 1px $borders;
                    background-color: $medium;

                    &:hover,&:focus{
                        outline: 0px;
                    }
                }

                .help-block{
                    color: $textoMedium;
                    font: normal 12px $fontLight;
                }

                .btnContato {
                    display: block;
                    width: 100%;
                    max-width: 110px;
                    margin-top: 20px;
                    padding: 10px;
                    color: $textoLight;
                    font: normal 15px $fontMedium;
                    border: none;
                    background-color: $highlight;
                    @include transicao(0.4s ease-in-out);

                    &:hover,&:focus {
                        background-color: $success;
                    }
                }
            }
        }
    }

    .contato-ok{
        display: block;
        color: $textoDark;
        font: normal 15px $fontRegular;
        text-align: center;
    }
}
