@font-face {
    font-family: 'Helvetica-Neue-LT-Std-67-Medium-Condensed';
    font-style: normal;
    font-weight: 500;
    src: url('/site/fonts/HelveticaNeueLTStd/Helvetica Neue LT Std 67 Medium Condensed/Helvetica Neue LT Std 67 Medium Condensed.otf') format('opentype');
}

@font-face {
    font-family: 'Helvetica-Neue-LT-Std-57 Condensed';
    font-style: normal;
    font-weight: 500;
    src: url('/site/fonts/HelveticaNeueLTStd/Helvetica Neue LT Std 57 Condensed/Helvetica Neue LT Std 57 Condensed.otf') format('opentype');
}

@font-face {
    font-family: 'JaneAusten';
    src: url('/site/fonts/JaneAust/JaneAust.ttf') format('truetype');
}

@font-face {
    font-family: 'Bembo-Std';
    src: url('/site/fonts/Bembo-Std/BemboStd-SemiboldItalic.otf') format('opentype');
}

html, body{
    width: 100%;
    height: 100%;
    position: relative;
}

body{
    background-color: #fff;
}

body.open{
    overflow: hidden;
}

img{
    max-width: 100%;
}

#popup_holder{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block !important;
    padding: 15px;
    text-align: center;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;

    &:after{
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.4);
        z-index: 1;
    }

    .close{
        cursor: pointer;
        position: absolute;
        color: #fff;
        top: 10px;
        right: 10px;
        z-index: 3;
    }

    a{
        display: flex;
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    .img{
        position: relative;
        height: 400px;
        z-index: 2;
        width: 800px;
        display: inline-block;
        max-width: 100%;

        img{
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            position: absolute;
            object-fit: cover;
        }
    }


    &.close{
        display: none !important;
    }
}

.iframe_holder{
    position: relative;
    padding-bottom: 53.35%;
    padding-top: 25px;
    height: 0;
}

.iframe_holder iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


@media (min-width: 768px){
    .custom_container {
        max-width: 750px;
    }
}

@media (min-width: 992px){
    .custom_container {
        max-width: 970px;
    }
}


@media (min-width: 1200px){
    .custom_container {
        max-width: 1099px;
    }
}


@media (min-width: 1300px){
    .custom_container {
        max-width: 1199px;
    }
}

@media (min-width: 1400px){
    .custom_container {
        max-width: 1299px;
    }
}

@media (min-width: 1500px){
    .custom_container {
        max-width: 1399px;
    }
}

@media (min-width: 1600px){
    .custom_container {
        max-width: 1499px;
    }
}

.custom_container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


.aparecer {
    opacity: 0;
    -moz-transition: all 0.75s ease-in-out;
    -o-transition: all 0.75s ease-in-out;
    -webkit-transition: all 0.75s ease-in-out;
    transition: all 0.75s ease-in-out;
}

.aparecer.apper {
    opacity: 1;
}


.deslizar_direita {
    right: -1500px;
    -moz-transition: all 0.75s ease-in-out;
    -o-transition: all 0.75s ease-in-out;
    -webkit-transition: all 0.75s ease-in-out;
    transition: all 0.75s ease-in-out;
    position: relative;
}

.deslizar_direita.apper {
    right: 0;
}

.deslizar_direita img {
    max-width: 1000px;
    width: 100%;
}

.deslizar_direita.img_big img {
    width: 80%;
    max-width: 700px;
}

.deslizar_esquerda {
    left: -1500px;
    -moz-transition: all 0.75s ease-in-out;
    -o-transition: all 0.75s ease-in-out;
    -webkit-transition: all 0.75s ease-in-out;
    transition: all 0.75s ease-in-out;
    position: relative;
}

.deslizar_esquerda.apper {
    left: 0;
}

.small_to_big {
    transform: scale(0);
    -moz-transition: all 0.75s ease-in-out;
    -o-transition: all 0.75s ease-in-out;
    -webkit-transition: all 0.75s ease-in-out;
    transition: all 0.75s ease-in-out;
}

.small_to_big.apper {
    transform: scale(1);
}

.bottom_top_fade {
    position: relative;
    top: 100px;
    opacity: 0;
    -moz-transition: all 0.75s ease-in-out;
    -o-transition: all 0.75s ease-in-out;
    -webkit-transition: all 0.75s ease-in-out;
    transition: all 0.75s ease-in-out;
}

.bottom_top_fade.apper {
    top: 0;
    opacity: 1;
}

.fade_anim {
    opacity: 0;
    -moz-transition: all 0.75s ease-in-out;
    -o-transition: all 0.75s ease-in-out;
    -webkit-transition: all 0.75s ease-in-out;
    transition: all 0.75s ease-in-out;
}

.fade_anim.apper {
    opacity: 1;
}

/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/

header{
    overflow: hidden;
}

.menu_holder{
    position: fixed;
    top: 0;
    left: 0;
    padding: 30px 0;
    width: 100%;
    z-index: 10;
}

.menu_holder .navbar-header img{
    width: 77px;
    max-width: 100%;
}

.menu_holder .menu-toggler{
    background: transparent;
    border: 0;
    width: 24px;
    cursor: pointer;
    padding: 0;
    padding-top: 8px;

    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.menu_holder.open .menu-toggler{
    position: fixed;
    top: 26px;
    z-index: 99;
    right: 45px;
}

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 100%;
    height: 14px;
    position: relative;
    margin: 0 auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    height: 1.5px;
    width: 100%;
    background: #000;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu_holder.scroll #nav-icon1 span {
    background: #fff;
}

#nav-icon1.open span {
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 0px;
}
#nav-icon1 span:nth-child(2) {
    top: 6px;
}
#nav-icon1 span:nth-child(3) {
    top: 12px;
}

#nav-icon1.open span:nth-child(1) {
    top: 7px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
#nav-icon1.open span:nth-child(3) {
    top: 7px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

header .menu{
    position: fixed;
    right: -440px;
    top: 0;
    height: 100%;
    max-width: 440px;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    overflow: auto;
    border-left: 1px solid #474747;
    transition: all .5s cubic-bezier(.6, 0, .4, 1);
}

header .menu.aberto{
    right: 0px;
}

header .menu .menu-nav{
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 130px;
}

header .menu .menu-nav .dropdown{
    display: block;
    font-family: 'Helvetica-Neue-LT-Std-57 Condensed';
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    text-align: right;
    text-transform: uppercase;
    color: #000000;
    padding: 15px 75px 15px 15px;
}

header .menu .menu-nav .dropdown a{
    color: inherit;
    text-decoration: none !important;
}

header .menu .menu-nav .dropdown a:hover,
header .menu .menu-nav li.active > a,
header .menu .menu-nav li.active:hover > a {
    font-family: 'Helvetica-Neue-LT-Std-67-Medium-Condensed';
}

.menu_holder .dropdown-menu {
    background-color: #fff;
    cursor: default;
    text-align: left;
    color: #000;
    margin-top: 20px;
    top: 5px;
}

.menu_holder .menu-nav .dropdown .dropdown-menu a {
    color: #000;
}

.menu_holder .menu-nav .dropdown .dropdown-menu a:hover,
.menu_holder .menu-nav .dropdown-menu li.active > a,
.menu_holder .menu-nav .dropdown-menu li.active:hover > a {
    color: #D43838;
    text-decoration: none !important;
}

.menu_holder .dropdown-menu a:hover{
    background-color: transparent;
}

@media screen and (max-width: 991px) {

    .menu_holder .navbar-header img {
        margin-top: -15px;
    }

}

@media screen and (max-width: 650px) {

    header .menu .menu-nav .dropdown{
        font-size: 20px;
        line-height: 22px;
        padding: 10px 75px 10px 15px;
    }

}


/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/

.banner{
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.banner .holder_slider{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.banner .holder_slider img{
    width: 100%;
}

.banner .holder_slider .single_banner,
.banner .holder_slider .single_banner .holder_content,
.banner .holder_slider .single_banner .holder_content_img{
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.banner .holder_slider .single_banner .holder_content_img .iframe_holder{
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner.banner_interno ul li{
    height: 480px;
}

.banner.internas li {
    height: 260px;
    background-position: top center;
}

.banner #slider_home .owl-controls {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 100px;
}

.banner #slider_home .owl-dots {
    position: absolute;
    bottom: 20px;
    text-align: center;
    margin: -25px auto 0;
    left: 0;
    right: 0;
}

.banner #slider_home .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 100%;
    border: 2px solid #fff;
    background: #fff;
}

.banner #slider_home .owl-dots .owl-dot.active {
    background: #F9BC23;
    border: 2px solid #F9BC23;
}

.banner #slider_home .owl-prev img,
.banner #slider_home .owl-next img {
    width: 32px !important;
}

.banner .holder_slider video{
    position: absolute;
    width: 100%;
    /* height: 100%; */
    top: Calc( 50% - 36px );
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 1;
}

.banner .conteudo{

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.banner .conteudo .helper-padding{
    padding-top: 80px;
}

.banner.banner_interno .conteudo{
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.banner .conteudo .img-1{
    padding-right: 135px;

    @media screen and (max-width: 991px) {
        &{
            padding-right: 65px;
            padding-left: 65px;
            padding-top: 110px;
        }
    }

    @media screen and (max-width: 400px) {
        &{
            padding-right: 30px;
            padding-left: 30px;
            padding-top: 110px;
        }
    }

}

.banner .conteudo .selo{
    position: absolute;
    right: 0;
    top: 65px;
    width: 140px;

    @media screen and (max-width: 1199px) {
        &{
            right: 40px;
            top: 65px;
            width: 100px;
        }
    }

}

.banner .conteudo .nome{
    font-size: 60px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 71px;
    font-weight: 600;
    width: 690px;
    margin-bottom: 30px;
}

.banner .conteudo .descricao{
    font-family: 'Helvetica-Neue-LT-Std-57 Condensed';
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #000000;
    margin-bottom: 50px;
    margin-top: 55px;
}

.banner .conteudo button{
    border: 0;
    padding: 20px 35px;
    border-radius: 0;
    font-size: 18px;
    color: #000000;
    letter-spacing: 0;
    text-align: center;
    line-height: 20px;
    background: #FFFFFF;
}

.banner-overlay{
    margin-top: -50px;
}

@media screen and (max-width: 1500px) {

    .banner #slider_home .owl-controls {
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 60px;
    }

}

@media screen and (max-width: 992px) {

    .banner-overlay{
        margin-top: 0px;
    }

    .banner_interno, .banner_interno ul li {
        height: 480px;
    }

    .banner.internas,
    .banner.internas li {
        height:200px;
    }

    .banner .conteudo button {
        padding: 15px 35px;
        font-size: 16px;
    }

    .banner #slider_home .owl-controls {
        bottom: 70px;
    }

    .banner .holder_slider .single_banner {
        background-position: top right;
    }
}

@media screen and (max-width: 767px) {

    .banner .conteudo{
        padding: 0 15px;
    }

    .banner .conteudo .descricao{
        margin-bottom: 15px;
        margin-top: 15px;
        font-size: 15px;
    }

}

@media screen and (max-width: 500px) {

}


/*==================================================================================================*/
/*BLOCOS*/
/*==================================================================================================*/

.bloco{
    position: relative;
    width: 100%;
    padding: 85px 0;

    font-family: 'Helvetica-Neue-LT-Std-57 Condensed';
    font-weight: 400;
    font-size: 17px;
    line-height: 19px;
    color: #000000;

    &.bg-orange{
        background-color: rgba(248, 165, 49, 1);
    }

    .selo-frescos{
        position: absolute;
        right: -170px;
        top: -70px;

        @media screen and (max-width: 650px) {
            &{
                right: -150px;
                top: -45px;
                width: 100px;
            }
        }

        @media screen and (max-width: 500px) {
            &{
                right: -80px;
                top: -55px;
                width: 70px;
            }
        }

    }

    h1{
        font-family: 'Bembo-Std';
        font-weight: 800;
        font-size: 60px;
        line-height: 47px;
        color: #000000;
        transform: rotate(-0.95deg);
    }

    h2{
        position: relative;
        display: inline-block;
        font-family: 'Bembo-Std';
        font-style: italic;
        font-weight: 800;
        font-size: 60px;
        line-height: 72px;
        color: #000000;

        &:before{
            content: '';
            background-image: url('/site/imagens/icon-title-left.png');
            background-size: 100% 100%;
            width: 68px;
            height: 63px;
            position: absolute;
            top: 0px;
            left: -110px;
        }

        &:after{
            content: '';
            background-image: url('/site/imagens/icon-title-right.png');
            background-size: 100% 100%;
            width: 67px;
            height: 62px;
            position: absolute;
            top: 0px;
            right: -110px;
        }
    }

    h3{
        font-family: 'Bembo-Std';
        font-weight: 800;
        font-size: 50px;
        line-height: 60px;
        color: #000000;

        @media screen and (max-width: 992px) {
            &{
                font-size: 40px;
                line-height: 50px;
            }
        }

    }

    h4{
        font-family: 'Bembo-Std';
        font-weight: 800;
        font-size: 40px;
        line-height: 48px;
        color: #000000;

        @media screen and (max-width: 992px) {
            &{
                font-size: 30px;
                line-height: 38px;
            }
        }

    }

    .link{
        font-family: 'Helvetica-Neue-LT-Std-67-Medium-Condensed';
        font-weight: 500;
        font-size: 17px;
        line-height: 20px;
        text-transform: uppercase;
        color: #000000;

        a{
            color: inherit;
        }
    }


    @media screen and (max-width: 992px) {

        h2{

            font-size: 40px;

            &:before{
                width: 38px;
                height: 36px;
                top: 15px;
                left: -60px;
            }

            &:after{
                width: 38px;
                height: 35px;
                top: 15px;
                right: -60px;
            }

        }

    }

}

.bloco.no-margin{
    padding: 0;
}

@media screen and (max-width: 992px) {

    .bloco{
        font-size: 15px;
    }

    .bloco-produtos-home{
        padding: 0;
    }

}

/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/

#homepage{

    .sobre-nos-text{
        padding-top: 120px;
        text-align: center;
    }

    .produtos-home{
        background-image: url(/site/imagens/shape-produtos.png);
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: Calc(50% - 100px) center;
        padding: 50px 15px 65px;

        @media screen and (max-width: 767px) {

            &{
                background-image: url('/site/imagens/shape-produtos-mobile.png');
                background-position: center center;
                background-size: 750px auto;
                padding: 160px 15px 235px;
            }

        }

    }

    .slider_motivos{
        max-width: 1025px;
        margin: 0 auto;

        &.owl-carousel .owl-dots{
            display: block;
            text-align: center;

            .owl-dot{
                width: 7px;
                height: 7px;
                margin: 0 5px;
                border-radius: 50%;
                border: 1px solid #000000;

                &.active{
                    background-color: #000;
                }
            }
        }

        .slide_motivo{
            padding: 0 12px;
            text-align: center;

            .img{
                img{
                    width: auto;
                    max-width: 100%;
                    display: inline-block;
                }
            }
        }
    }

    @media screen and (max-width: 767px) {

        .sobre-nos-text{
            padding-top: 50px;
        }

    }

}


/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/

#contactos{
    min-height: Calc(100vh - 95px);
    position: relative;
    display: flex;
    background-color: rgba(248, 165, 49, 1);

    a{
        color: inherit;
        text-decoration: none;
    }

    & > .bloco{
        display: flex;
        align-items: center;
        z-index: 2;
        position: relative;

        @media screen and (max-width: 991px) {
            &{
                padding-top: 0;
                overflow: hidden;
            }
        }

    }

    .bg-contactos{
        background-image: url(/site/imagens/bg-contactos-v4.png);
        z-index: 1;
        background-repeat: no-repeat;
        width: Calc(50vw + 80px);
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        background-size: auto 100%;
        background-position: left center;

        @media screen and (max-width: 991px) {

            &{
                display: none;
            }

        }


    }

    @media screen and (max-width: 991px) {
        .helper-padding{
            padding-top: 125px;
            background-color: #fff;

            &:after{
                content: '';
                width: 727px;
                height: 222px;
                background-image: url(/site/imagens/fundo_contactos_mobile.png);
                position: absolute;
                bottom: -45px;
                left: 50%;
                transform: translateX(-50%);
                -moz-transform: translateX(-50%);
                -webkit-transform: translateX(-50%);
                z-index: 2;
            }
        }
    }

}



/*==================================================================================================*/
/*BLOG*/
/*==================================================================================================*/
.pagina_noticias{

}

.pagina_noticias .listagem_noticias .paginacao{

}

.pagina_noticias .listagem_noticias .paginacao .single_pag{
    display: inline-block;
    cursor: pointer;
    padding: 10px;
}

.pagina_noticias .listagem_noticias .paginacao .single_pag.active{
    font-weight: 600;
}

.pagina_noticias .listagem_noticias .lista_noticias{
    display: flex;
    flex-wrap: wrap;
}
.pagina_noticias .listagem_noticias .single_noticia{
    width: Calc(100% / 3);
}

.pagina_noticias .listagem_noticias .single_noticia .imagem img{
    width: 100%;
}
.pagina_noticias #load-noticias-blog.display_none{
    display: none !important;
}
.pagina_noticias .noticias-loading-blog{
    display: none;
}

/*==================================================================================================*/
/*FAQS*/
/*==================================================================================================*/

.faqs{

}

.faqs .holder_faqs{
    width: 70%;
    margin: 0 auto;
}

.faqs .holder_faqs .pergunta{
    cursor: pointer;
}

.faqs .holder_faqs .pergunta .cabecalho h2{
    text-align: left;
    margin: 0;
    color: #B23E3E;
    font-size: 35px;
    line-height: 40px;
}


.faqs .holder_faqs .pergunta .cabecalho{
    position: relative;
    border-bottom: 1px solid #B23E3E;
    padding-bottom: 10px;
    padding-right: 45px;
}

.faqs .holder_faqs .pergunta .cabecalho span{
    position: absolute;
    color: #B23E3E;
    top: 12px;
    /* left: 0; */
    font-size: 26px;
    right: 0;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}


.faqs .holder_faqs .pergunta.open .cabecalho span{
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.faqs .holder_faqs .resposta p,
.faqs .holder_faqs .resposta {
    margin: 0;
    font-size: 18px;
    color: #000;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 300;
}

.faqs .holder_faqs .resposta {
    display: none;
    padding-top: 20px;
}
.faqs .holder_faqs .single_faq{
    margin-bottom: 40px;
}
.faqs .holder_faqs .single_faq:last-child{
    margin-bottom: 0;
}

@media screen and (max-width: 1400px){
    .faqs .holder_faqs .pergunta .cabecalho h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .faqs .holder_faqs .pergunta .cabecalho span {
        top: 8px;
    }

    .faqs .holder_faqs {
        width: 80%;
    }
}

@media screen and (max-width: 1300px){
    .faqs .holder_faqs {
        width: 100%;
    }
}

@media screen and (max-width: 992px){
    .faqs .holder_faqs .pergunta .cabecalho h2 {
        font-size: 25px;
        line-height: 30px;
    }

    .faqs .holder_faqs .pergunta .cabecalho span {
        top: 6px;
        font-size: 23px;
    }

    .faqs .holder_faqs .resposta p, .faqs .holder_faqs .resposta {
        font-size: 16px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px){
    .faqs .holder_faqs .pergunta .cabecalho h2 {
        font-size: 21px;
        line-height: 26px;
    }
}

/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/


footer {
    background-image: url('/site/imagens/fundo_footer.png');
    background-size: auto 100%;
    padding-top: 220px;

    font-family: 'Helvetica-Neue-LT-Std-57 Condensed';
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #000000;

    &.no-bg {
        background: rgba(248, 165, 49, 1);
        padding-top: 0;
    }

    h2 {
        font-family: 'JaneAusten';
        font-weight: 400;
        font-size: 80px;
        line-height: 138px;
        position: relative;
        display: inline-block;

        &:before {
            content: '';
            background-image: url('/site/imagens/icon-title-left.png');
            background-size: 100% 100%;
            width: 68px;
            height: 63px;
            position: absolute;
            top: 30px;
            left: -150px;
        }

        &:after {
            content: '';
            background-image: url('/site/imagens/icon-title-right.png');
            background-size: 100% 100%;
            width: 67px;
            height: 62px;
            position: absolute;
            top: 30px;
            right: -150px;
        }
    }

    hr{
        margin: 30px 0;
        background-color: #000;
        opacity: 1;
    }

    &.no-bg hr{
        margin-top: 0;
    }

    a{
        color: inherit;
    }

}

.lower_footer {
    padding-bottom: 30px;
}

@media screen and (max-width: 767px) {

    footer h2{
        font-size: 50px;
        line-height: 86px;

        &:before{
            width: 35px;
            height: 32px;
            top: 30px;
            left: -60px;
        }

        &:after{
            width: 35px;
            height: 32px;
            top: 30px;
            right: -60px;
        }

    }



}


.politica_privacidade table{
    max-width: 100% !important;
    border: none !important;
}

.politica_privacidade table tr td{
    width: Calc(100% / 3) !important;
    padding: 5px 10px;
    border: none !important;
}
.politica_privacidade table tr th{
    background: #c6c5c5;
    padding: 5px 10px;
}