@font-face {
    font-family: 'NOME';
    font-weight: normal;
    font-style: normal;
    src: url(/site/fonts/FILE.woff) format('woff');
}

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

body{
    background-color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Inter", sans-serif;
}

img{
    max-width: 100%;
}

body.open{
    overflow: hidden;
}


.left{ text-align: left; }
.center{ text-align: center; }
.right{ text-align: right; }

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

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

.button{
    background: #938410;
    border-radius: 25px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    border: 2px solid #938410;
    padding: 11px 34px;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.button:hover{
    background: #fff;
    color: #938410;
    border-color: #fff;
}
.button.add_cart{
    background: #CDBE47;
    color: #fff;
    border-color: #CDBE47;
}
.button.add_cart:hover{
    background: #fff;
    color: #CDBE47;
    border-color: #CDBE47;
}
@keyframes scale {
    0% {
        transform: scale3d(0, 0, 0);
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
    100%{
        transform: scale3d(1, 1, 1);
    }
}
@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;
}


@media screen and (max-width: 1400px){
    .descricao {
        font-size: 18px;
        line-height: 30px;
    }
    h1,
    h2 {
        font-size: 45px;
        line-height: 57px;
    }
}
@media screen and (max-width: 1200px){
    .descricao {
        font-size: 16px;
        line-height: 28px;
    }
    h1, h2 {
        font-size: 40px;
        line-height: 52px;
    }
    body{
        font-size: 16px;
        line-height: 20px;
    }
}
@media screen and (max-width: 992px){
    .button {
        font-size: 16px;
        line-height: 20px;
    }
    h1, h2 {
        font-size: 35px;
        line-height: 47px;
    }

    body{
        font-size: 14px;
        line-height: 18px;
    }
}
@media screen and (max-width: 767px){

    h1, h2 {
        font-size: 30px;
        line-height: 45px;
    }

}


/*==================================================================================================*/
/*ANIMACOES*/
/*==================================================================================================*/
.aparecer {
    opacity: 0;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.fundo_apper {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.aparecer.apper {
    opacity: 1;
}



.deslizar_direita {
    right: -1500px;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s 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 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    -webkit-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
    position:relative;
}

.deslizar_esquerda.apper {
    left: 0;
}

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

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

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

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

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

.fade_anim.apper {
    opacity: 1;
}

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

.menu_holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    padding: 40px 0;
    width: 100%;
    z-index: 6;
    box-shadow: 0px 0px 11px #cdbe475c;
}
.menu_holder .container{
    position: relative;
}

.navbar-header {
    float: unset;
}

.menu_holder .navbar-header {
    float: unset;
    width: 314px;
    display: inline-block;
}

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

.menu_holder .menu-toggler{
    position: absolute;
    background: transparent;
    border: 0;
    width: 51px;
    top: 10px;
    right: 2%;
    cursor: pointer;

    display: none;
}

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 38px;
    height: 26px;
    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: 5px;
    width: 100%;
    background: #CDBE47;
    border-radius: 0;
    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;
}

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

.menu_holder .menu{
    display: inline-block;
    margin: 0;
    float: unset;
}


.menu_holder .menu ul{
    padding: 0;
}


.menu_holder .menu{
    display: inline-block;
    color: #fff;
    width: Calc(100% - 320px);
    text-align: right;
    vertical-align: middle;
}
.menu_holder .mais_menus{
    display: inline-block;
    color: #fff;
    width: 300px;
    max-width: 100%;
    text-align: right;
    vertical-align: middle;
}
.menu_holder .mais_menus a{
    font-size: 17px;
    color: #FFFFFF;
    letter-spacing: 0;
    font-weight: 300;
    margin: 0 5px;
}

.menu_holder .menu-nav{
    list-style: none;
    margin: 0;
}

.menu_holder .menu-nav .dropdown{
    display: inline-block;
    margin-left: 30px;
    cursor: pointer;
    color: #fff;
}
.menu_holder .menu-nav .dropdown.account{
    margin-left: 10px;
}


.menu_holder .menu-nav .dropdown.redes_sociais img{
    width: 28px;
    margin: 0 3px;
}

.menu_holder .menu-nav .dropdown a{
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    text-decoration: none !important;
}

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

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

.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 hr{
    width: 80%;
    margin: 8px auto;
    border-top: 1px solid #ccc;
}
.menu_holder .dropdown-menu a:hover{
    background-color: transparent;
}

@media screen and (max-width: 1200px) {
    .menu_holder {
        padding: 20px 0;
    }
    .menu_holder .navbar-header {
        width: 195px;
    }
    .menu_holder .menu-nav .dropdown a {
        font-size: 16px;
        line-height: 20px;
    }

    .menu_holder .menu {
        width: Calc(100% - 200px);
    }
}

@media screen and (min-width: 993px) {

    .menu_holder .navbar-header {
        position: absolute;
        left: 0;
    }
    .menu_holder .menu {
        display: block !important;
        margin-left: auto;
    }

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

    .menu_holder .navbar-header img{
        width: 150px;
    }

    .menu_holder .menu-toggler{
        display:block;
    }

    .menu_holder .menu {
        width: 100%;
        padding: 40px 0 30px 0;

        display: none;
    }

    .menu_holder .menu-nav {
        padding: 0;
    }
    .menu_holder .menu {
        text-align: left;
        padding-bottom: 100px;
    }

    .menu_holder .menu-nav .dropdown {
        display: block;
        width: 100%;
        margin: 15px 0;
        text-align: center;
    }
    .menu_holder .menu-nav .dropdown.account {
        margin-left: 0;
    }
    .menu_holder .menu-nav .dropdown a{
        font-size: 14px;
    }

    .menu_holder .menu-nav .dropdown a {
        font-size: 17px;
        font-weight: 400;
    }

    .menu_holder .menu-toggler {
        display: inline-block;
        right: 0;
        padding: 0;
        width: 39px;
    }

    .menu_holder .navbar-header {
        float: unset;
        display: inline-block;
        width: Calc(100% - 46px);
    }

    .menu_holder .menu-toggler {
        position: relative;
        top: 9px;
    }

    .menu_holder{
        padding: 20px 0;
    }
}

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

    .menu_holder .navbar-header {
        width: Calc(100% - 44px);
        margin: 0;
    }
}
/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/

.fakebanner{
    height: 100px;
}

.banner{
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.banner .mask{
    position: absolute;
    width: 100%;
    bottom: -2px;
    z-index: 2;
}

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

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

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

.banner .holder_slider .single_banner{
    position: relative;
}
.banner .holder_slider .single_banner:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(76, 76, 76, 0.35);
    z-index: 0;
}
.banner .holder_slider .single_banner,
.banner .holder_slider .single_banner .holder_content,
.banner .holder_slider .single_banner .holder_content_img{
    width: 100%;
    height: 640px;
    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 .owl-carousel .owl-stage-outer{
}
.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: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 100%;
    border: 2px solid #fff;
    background: #fff;
}

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

.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{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    z-index: 2;
}

.banner.banner_interno .conteudo{
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.banner .conteudo .label_banner{
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 690px;
    margin: 0 auto 10px auto;
    max-width: 100%;
}
.banner .conteudo .nome{
    color: #FFFFFF;
    letter-spacing: 0;
    width: 690px;
    font-style: normal;
    font-weight: 700;
    font-size: 74px;
    line-height: 78px;
    margin: 0 auto 20px auto;
    max-width: 100%;
}

.banner .conteudo .descricao{
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 25px;
    font-weight: 300;
    margin: 0 auto 20px auto;
    width: 690px;
    max-width: 100%;
}



@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: 1400px) {
    .banner .conteudo .nome {
        font-size: 55px;
        line-height: 66px;
    }
    .banner .conteudo .label_banner {
        font-size: 16px;
        line-height: 23px;
    }
}


@media screen and (max-width: 1200px) {
    .fakebanner {
        height: 62px;
    }
    .banner .conteudo .nome {
        font-size: 50px;
        line-height: 61px;
    }
    .banner .holder_slider .single_banner {
        width: 100%;
        height: 600px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }
}

@media screen and (max-width: 992px) {
    .banner{
        margin-top: 0;
    }
    .banner, .banner .holder_slider .single_banner {
        height: 400px;
    }
    .banner_interno, .banner_interno ul li {
        height: 480px;
    }

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

    .banner .holder_slider img{
        display: none;
    }
    .banner .conteudo {

    }

    .banner .conteudo .label_banner {
        font-size: 14px;
        line-height: 21px;
    }
    .banner .conteudo .nome {
        font-size: 40px;
        line-height: 51px;
        width: 100%;
    }
    .banner .conteudo .descricao {
        width: 100%;
    }

    .banner .conteudo {
        text-align: center;
    }

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

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

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

    .banner .conteudo .nome {
        font-size: 35px;
        line-height: 46px;
    }

    .banner .conteudo .descricao {
        font-size: 16px;
    }

    .banner .holder_slider .single_banner {
    }
}

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

    .banner .conteudo .nome {
        font-size: 29px;
        line-height: 40px;
    }

    .banner .conteudo .descricao {
        font-size: 14px;
    }
}


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

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

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


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

    .bloco{
        padding: 40px 0;
    }
}


/*==================================================================================================*/
/*MIDDER*/
/*==================================================================================================*/


.midder{
    width: 100%;
    height: 650px;
    position: relative;

    /*background-attachment: fixed;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

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

.midder .conteudo {
    width: 30%;
    top: 20%;
    left: 0;
    text-align: left;
    position: absolute;
    padding: 0 2%;

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

.midder .conteudo h2 {
    font-size: 48px;
    color: #111;
    text-transform: none;
}
.midder .conteudo p {
    font-size: 17px;
    color: #838383;
}


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

    .midder {
        height: 250px;
        background-attachment: initial;
    }
    .midder .conteudo h2 {
        font-size: 25px;
    }
}

/*@media screen and (max-width: 470px) {

	.midder {
		height: 250px;
	}
	.midder .conteudo h2 {
		font-size: 25px;
	}
}*/


/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/
.holder_servicos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.holder_servicos .single_servico{
    width: Calc(100% / 3);
    padding: 20px;
    text-align: center;
}
.holder_servicos .single_servico .imagem img{
    height: 73px;
}
.holder_servicos .single_servico h3{
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    color: #000000;
    margin: 15px 0;
}
.holder_servicos .single_servico {
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    color: #000000;
}
.holder_servicos .single_servico .holder_single_servico{
    max-width: 350px;
    margin: 0 auto;
}

#homepage .cabecalho{
    margin-bottom: 60px;
}
#homepage .cabecalho h2{
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #CDBE47;
}
#homepage .cabecalho h3{
    font-weight: 600;
    font-size: 48px;
    line-height: 73px;
    color: #000000;
}
#homepage .holder_quem_somos{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
#homepage .holder_quem_somos .texto{
    background: linear-gradient(0deg, #CDBE47, #CDBE47), #2F3841;
    border-radius: 25px;
    padding: 55px 85px;
    width: 60%;
    z-index: 2;
}
#homepage .holder_quem_somos .imagem{
    width: 45%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border-radius: 0 25px 25px 0;
}
#homepage .holder_quem_somos .imagem img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    object-fit: cover;
}
#homepage .holder_quem_somos .texto,
#homepage .holder_quem_somos .texto .descricao,
#homepage .holder_quem_somos .texto .descricao ul,
#homepage .holder_quem_somos .texto .descricao ul li{
    font-size: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
}

#homepage .holder_quem_somos .texto h2{
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #938410;
    margin: 0 0 20px;
}
#homepage .holder_quem_somos .texto h3{
    font-weight: 500;
    font-size: 48px;
    line-height: 52px;
}
#homepage .holder_quem_somos .texto .descricao ul{
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
#homepage .holder_quem_somos .texto .descricao li{
    position: relative;
    opacity: 0;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 10px 0 10px 35px;

}
#homepage .holder_quem_somos .texto .descricao li.apper{
    opacity: 1;
}
#homepage .holder_quem_somos .texto .descricao li:after{
    content: '\f00c';
    background: #938410;
    width: 27px;
    height: 27px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    left: 0;
    top: 13px;
}
#homepage .holder_quem_somos .texto .descricao li.apper:after {
    animation: scale .3s ease-in-out .3s both;
}
#homepage .holder_quem_somos .texto .botao {
    margin-top: 30px;
}
#homepage .produtos .holder_slider_produtos_home{
    width: 100%;
}
#homepage .produtos .single_produto {
    padding: 20px 20px 40px 20px;
}
#homepage .produtos .single_produto .holder_single_produto{
    overflow: hidden;
    position: relative;
    border-radius: 27px;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
#homepage .produtos .single_produto .holder_single_produto .imagem{
    padding-bottom: 145%;
    height: 0;
    overflow: hidden;
    position: relative;
    border-radius: 27px;
}
#homepage .produtos .single_produto .holder_single_produto .imagem img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

#homepage .produtos .single_produto .holder_single_produto:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(190 186 191 / 50%);
    z-index: 1;
    border-radius: 27px;
}
#homepage .produtos .single_produto .holder_single_produto:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 10%);
    z-index: 1;
    border-radius: 27px;
    opacity: 0;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
#homepage .produtos .single_produto .holder_single_produto:hover:after{
    opacity: 1;
}
#homepage .produtos .single_produto .holder_single_produto:hover{
    box-shadow: 18px 15px 35px rgba(0, 0, 0, 0.25);
}
#homepage .produtos .single_produto .holder_single_produto .conteudo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px;
    color: #fff;
    z-index: 2;
}
#homepage .produtos .single_produto .holder_single_produto .conteudo h3{
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}
#homepage .produtos .single_produto .holder_single_produto .conteudo .link_faca{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}
#homepage .produtos .single_produto .holder_single_produto .conteudo .link_faca svg{
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
#homepage .produtos .single_produto .holder_single_produto:hover .conteudo .link_faca svg{
    margin-left: 5px;
}
#homepage .produtos .holder_slider_produtos_home .owl-dots {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

#homepage .produtos .holder_slider_produtos_home .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 100%;
    border: 2px solid #EAE29C;
    background: #EAE29C;
}

#homepage .produtos .holder_slider_produtos_home .owl-dots .owl-dot.active {
    background: #CDBE47;
    border: 2px solid #CDBE47;
}
#homepage .testemunhos{
    background: rgb(217 217 217 / 20%);
}
#homepage .testemunhos .principal{

}
#homepage .testemunhos .principal .single_testemunho .imagem{
    width: 87px;
    height: 0;
    padding-bottom: 87px;
    position: relative;
    border-radius: 50%;
    margin: 0 auto;
    background: #C4C4C4;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    margin-bottom: 60px;
}
#homepage .testemunhos .principal .single_testemunho .holder_single_testemunho{
    position: relative;
}
#homepage .testemunhos .principal .single_testemunho .holder_single_testemunho:after,
#homepage .testemunhos .principal .single_testemunho .holder_single_testemunho:before{
    width: Calc(50% - 87px);
    position: absolute;
    content: '';
    background: rgb(32 34 38 / 22%);
    height: 1px;
    top: 46px;
}
#homepage .testemunhos .principal .single_testemunho .holder_single_testemunho:after{
    left: 0;
}
#homepage .testemunhos .principal .single_testemunho .holder_single_testemunho:before{
    right: 0;
}

#homepage .testemunhos .principal .single_testemunho .holder_single_testemunho{
    text-align: center;
}
#homepage .testemunhos .principal .single_testemunho .holder_single_testemunho .descricao{
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 60px;
}
#homepage .testemunhos .principal .single_testemunho .holder_single_testemunho h3,
#homepage .testemunhos .principal .single_testemunho .holder_single_testemunho h4{
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #CDBE47;
}
#homepage .testemunhos .principal .single_testemunho .holder_single_testemunho h4{
    font-weight: 400;
}
#homepage .testemunhos .principal .single_testemunho .imagem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 1;
}
#homepage .testemunhos .principal .single_testemunho .imagem:after{
    width: 87px;
    height: 0;
    padding-bottom: 87px;
    position: relative;
    border-radius: 50%;
    margin: 0 auto;
    background: #C4C4C4;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
#homepage .testemunhos .thumbnails{
    max-width: 400px;
    margin: 0 auto;
    padding: 0 30px;
}
#homepage .testemunhos .thumbnails .single_testemunho{
    padding: 0 10px;
}
#homepage .testemunhos .thumbnails .imagem{
    width: 100%;
    height: 0;
    padding-bottom: 95%;
    position: relative;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid rgb(217 217 217 / 0%);
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
#homepage .testemunhos .thumbnails .imagem:after{
    content: '';
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    position: absolute;
    background: #C4C4C4;
    border-radius: 50%;
}
#homepage .testemunhos .thumbnails .imagem img{
    width: Calc(100% - 10px);
    height: Calc(100% - 10px);
    object-fit: cover;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 1;
}
#homepage .testemunhos .thumbnails .current.active .imagem{
    border: 2px solid #CDBE47;
}
#homepage .testemunhos .thumbnails .owl-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 0;
}
#homepage .testemunhos .thumbnails .owl-nav button{
    position: absolute;
    top: Calc(50% - 9px);
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
#homepage .testemunhos .thumbnails .owl-nav button img{
    width: 25px;
}
#homepage .testemunhos .thumbnails .owl-nav button.owl-prev{
    left: 0;
}
#homepage .testemunhos .thumbnails .owl-nav button.owl-next{
    right: 0;
}
@media screen and (max-width: 1400px) {
    .holder_servicos .single_servico h3 {
        font-size: 27px;
        line-height: 34px;
    }

    #homepage .holder_quem_somos .texto h2 {
        font-size: 18px;
        line-height: 29px;
    }
    #homepage .holder_quem_somos .texto h3 {
        font-size: 42px;
        line-height: 46px;
    }

    #homepage .holder_quem_somos .texto, #homepage .holder_quem_somos .texto .descricao, #homepage .holder_quem_somos .texto .descricao ul, #homepage .holder_quem_somos .texto .descricao ul li {
        font-size: 18px;
        line-height: 28px;
    }

    #homepage .cabecalho h2{
        font-size: 18px;
        line-height: 25px;
    }
    #homepage .cabecalho h3{
        font-size: 46px;
        line-height: 71px;
    }
}

@media screen and (max-width: 1200px) {
    .holder_servicos .single_servico h3 {
        font-size: 22px;
        line-height: 29px;
    }

    .holder_servicos .single_servico .imagem img{
        height: 65px;
    }
    #homepage .holder_quem_somos .texto h2 {
        font-size: 16px;
        line-height: 27px;
    }
    #homepage .holder_quem_somos .texto h3 {
        font-size: 38px;
        line-height: 42px;
    }

    #homepage .holder_quem_somos .texto, #homepage .holder_quem_somos .texto .descricao, #homepage .holder_quem_somos .texto .descricao ul, #homepage .holder_quem_somos .texto .descricao ul li {
        font-size: 16px;
        line-height: 26px;
    }


    #homepage .cabecalho h2{
        font-size: 16px;
        line-height: 23px;
    }
    #homepage .cabecalho h3{
        font-size: 44px;
        line-height: 69px;
    }


    #homepage .testemunhos .principal .single_testemunho .holder_single_testemunho .descricao,
    #homepage .testemunhos .principal .single_testemunho .holder_single_testemunho h3, #homepage .testemunhos .principal .single_testemunho .holder_single_testemunho h4{
        font-size: 18px;
        line-height: 22px;
    }

}

@media screen and (max-width: 992px) {
    .holder_servicos .single_servico  {
        width: 50%;
    }
    #homepage .holder_quem_somos .texto {
        padding: 55px 55px;
        width: 100%;
    }
    #homepage .holder_quem_somos .imagem {
        width: 100%;
        position: relative;
        top: unset;
        bottom: unset;
        right: unset;
        overflow: hidden;
        border-radius: 0 0 25px 25px;
        padding-bottom: 100%;
        margin-top: -30px;
    }

    #homepage .holder_quem_somos .texto h2 {
        font-size: 14px;
        line-height: 25px;
    }
    #homepage .holder_quem_somos .texto h3 {
        font-size: 35px;
        line-height: 39px;
    }

    #homepage .holder_quem_somos .texto, #homepage .holder_quem_somos .texto .descricao, #homepage .holder_quem_somos .texto .descricao ul, #homepage .holder_quem_somos .texto .descricao ul li {
        font-size: 14px;
        line-height: 24px;
    }


    #homepage .cabecalho{
        margin-bottom: 40px;
    }
    #homepage .cabecalho h2{
        font-size: 14px;
        line-height: 21px;
    }
    #homepage .cabecalho h3{
        font-size: 35px;
        line-height: 45px;
    }

    #homepage .produtos .single_produto .holder_single_produto .conteudo {
        padding: 30px;
    }
    #homepage .produtos .single_produto .holder_single_produto .conteudo h3 {
        font-size: 22px;
    }


    #homepage .testemunhos .principal .single_testemunho .holder_single_testemunho .descricao {
        margin-bottom: 40px;
    }
    #homepage .testemunhos .principal .single_testemunho .holder_single_testemunho .descricao,
    #homepage .testemunhos .principal .single_testemunho .holder_single_testemunho h3, #homepage .testemunhos .principal .single_testemunho .holder_single_testemunho h4{
        font-size: 16px;
        line-height: 20px;
    }

    #homepage .testemunhos .principal .single_testemunho .imagem {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .holder_servicos .single_servico  {
        width: 100%;
        padding: 20px 0;
    }
    #homepage .holder_quem_somos .texto {
        padding: 30px;
    }

    #homepage .cabecalho h3{
        font-size: 30px;
        line-height: 40px;
    }

    #homepage .testemunhos .principal .single_testemunho .holder_single_testemunho .descricao,
    #homepage .testemunhos .principal .single_testemunho .holder_single_testemunho h3, #homepage .testemunhos .principal .single_testemunho .holder_single_testemunho h4{
        font-size: 14px;
        line-height: 20px;
    }

    #homepage .testemunhos .thumbnails .single_testemunho {
        padding: 0 5px;
    }

    #homepage .testemunhos .thumbnails .owl-nav button img {
        width: 18px;
    }
}

/*==================================================================================================*/
/*MARCAS*/
/*==================================================================================================*/

.bloco-marcas .img{
    text-align: center;
}

.bloco-marcas h3{
    margin-bottom: 15px;
}

.bloco-marcas .img img{
    max-width: 600px;
    height: 250px;
    object-fit: contain;
}

.bloco-marcas .catalogos{
    margin-bottom: 50px;
    margin-top: 20px;
    max-width: 1000px;
}

.bloco-marcas .catalogos .catalogo{
    padding: 10px;
}

.bloco-marcas .catalogos .catalogo img{
    width: 120px !important;
    height: 150px !important;
    object-fit: contain;
    margin-bottom: 10px;
}

.bloco-marcas .catalogos .catalogo .nome{
    display: inline-block;
    background-color: #938410;
    padding: 7px 20px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

/*==================================================================================================*/
/*QUEM SOMOS*/
/*==================================================================================================*/

#quem_somos .cabecalho{
    margin-bottom: 30px;
}
.info_texto_center .descricao{
    max-width: 1000px;
    margin: 0 auto;
}
.info_texto_center .imagem{
    margin-top: 60px;
}
.info_texto_center .imagem img{
    border-radius: 25px;
}
.info_texto_center .imagem img,
.prod_serv .imagem img{
    max-width: 100%;
    margin: 0 auto;
}

#quem_somos .bloco_numeros{
    padding: 0;
}
#quem_somos .bloco_numeros .holder_numeros{
    flex-wrap: wrap;
}
#quem_somos .bloco_numeros .holder_numeros .single_numero{
    width: Calc(100% / 4);
    padding: 20px;
}
#quem_somos .bloco_numeros .holder_numeros .single_numero .zona_numero {
    display: flex;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.2px;
    color: #DCCF70;
    justify-content: center;
    margin: 10px 0;
}
#quem_somos .bloco_numeros .holder_numeros .single_numero .imagem img{
    width: 98px;
}
.prod_serv .holder_prod_serv{
    display: flex;
    flex-wrap: wrap;
}
.prod_serv .holder_prod_serv .coluna{
    width: 50%;
}
.prod_serv .holder_prod_serv .coluna.col_imagem .imagem{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.25);
}
.prod_serv .holder_prod_serv .coluna.col_imagem .imagem img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

.prod_serv .holder_prod_serv .coluna.col_info{
    padding: 20px 0 20px 40px;
}
.prod_serv .holder_prod_serv .coluna.col_info .botao{
    margin-top: 40px;
}
.prod_serv .holder_prod_serv .coluna.col_info .descricao table{
    border: none;
    width: 100% !important;
}
.prod_serv .holder_prod_serv .coluna.col_info .descricao table td{
    width: 50% !important;
}


.prod_serv .holder_prod_serv .descricao ul{
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.prod_serv .holder_prod_serv .descricao li{
    position: relative;
    opacity: 0;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 10px 0 10px 35px;

}
.prod_serv .holder_prod_serv .descricao li.apper{
    opacity: 1;
}
.prod_serv .holder_prod_serv .descricao li:after{
    content: '\f00c';
    background: #938410;
    width: 27px;
    height: 27px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    left: 0;
    top: 13px;
}
.prod_serv .holder_prod_serv .descricao li.apper:after {
    animation: scale .3s ease-in-out .3s both;
}
@media screen and (max-width: 1200px){
    #quem_somos .bloco_numeros .holder_numeros .single_numero .zona_numero {
        font-size: 35px;
        line-height: 50px;
    }
    #quem_somos .bloco_numeros .holder_numeros .single_numero .imagem img {
        width: 68px;
    }
}
@media screen and (max-width: 992px){
    #quem_somos .bloco_numeros .holder_numeros .single_numero {
        width: 50%;
    }

    .prod_serv .holder_prod_serv .coluna{
        width: 100%;
    }
    .prod_serv .holder_prod_serv .coluna.col_imagem{
        order: 2;
    }
    .prod_serv .holder_prod_serv .coluna.col_imagem .imagem{
        padding-bottom: 100%;
    }
    .prod_serv .holder_prod_serv .coluna.col_info {
        padding: 40px 0;
        text-align: center;
        order: 1;
    }
}
@media screen and (max-width: 567px){
    #quem_somos .bloco_numeros .holder_numeros .single_numero {
        width: 100%;
        padding: 20px 0;
    }
}
/*==================================================================================================*/
/*SERVICOS*/
/*==================================================================================================*/
#servicos .info_texto_center .imagem{
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    overflow: hidden;
}

#servicos .servicos{
    padding-top: 0;
}
#servicos .holder_servicos .single_servico{
    padding: 20px 10px;
}
#servicos .holder_servicos .single_servico a{
    text-decoration: none;
}
#servicos .holder_servicos .single_servico .holder_single_servico {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    padding: 20px;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
#servicos .holder_servicos .single_servico .holder_single_servico:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}
#servicos .holder_servicos .single_servico .holder_single_servico .imagem{
    width: 70px;
}
#servicos .holder_servicos .single_servico .holder_single_servico .imagem img{
    width: 100%;
}
#servicos .holder_servicos .single_servico .holder_single_servico .info{
    width: Calc(100% - 70px);
    padding-left: 15px;
}
#servicos .holder_servicos .single_servico .holder_single_servico .info h3{
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #CDBE47;
    margin-top: 0;
    margin-bottom: 10px;
}
#servicos .holder_servicos .single_servico .holder_single_servico .info .texto{
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #5A5A5A;
}
#servicos .prod_serv {
    background: rgb(217 217 217 / 20%);
}
#servicos .prod_serv .coluna.col_imagem{
    width: 40%;
}
#servicos .prod_serv .coluna.col_info{
    width: 60%;
}
.prod_serv.imagens_thumb .imagem{
    height: 0 !important;
    padding-bottom: 85%;
    background: #fff;
}
.prod_serv.imagens_thumb .imagem img{
    object-fit: contain !important;
}
.prod_serv.imagens_thumb .thumbnails{
    display: flex;
    flex-wrap: wrap;
    margin: 20px -10px 0;
}
.prod_serv.imagens_thumb .thumbnails .single_imagem{
    width: Calc(100% / 3);
    padding: 10px;
}
.prod_serv.imagens_thumb .thumbnails .single_imagem .imagem{
    padding-bottom: 75%;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.prod_serv.imagens_thumb .thumbnails .single_imagem .imagem:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}
.prod_serv.imagens_thumb .thumbnails .single_imagem .imagem img{
    cursor: pointer;
    object-fit: cover !important;
}
@media screen and (max-width: 1400px){
    .holder_servicos .single_servico {
        width: Calc(100% / 2);
    }
}
@media screen and (max-width: 992px){
    .holder_servicos .single_servico {
        width: 100%;
        padding: 20px 0;
    }
    #servicos .prod_serv .coluna.col_imagem,
    #servicos .prod_serv .coluna.col_info {
        width: 100%;
    }

    .prod_serv .holder_prod_serv .descricao li {
        display: inline-block;
        padding-right:20px;
    }

    .prod_serv .holder_prod_serv .coluna.col_imagem .imagem {
        padding-bottom: 110%;
    }
    .prod_serv.imagens_thumb .thumbnails .single_imagem .imagem {
        padding-bottom: 75%;
    }
}
@media screen and (max-width: 767px){

    .prod_serv .holder_prod_serv .coluna.col_info .descricao table td {
        width: 100% !important;
        display: block;
    }
    .prod_serv .holder_prod_serv .coluna.col_info .descricao table td ul{
        margin: 0;
    }

    .prod_serv .holder_prod_serv .descricao li {
    }
}
/*==================================================================================================*/
/*PRODUTOS*/
/*==================================================================================================*/

#produto .cabecalho h2{
    margin-bottom: 0;
}
#produto .referencia {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #BFBFBF;
}
#produto .descricao {
    margin-top: 25px;
}
#produto .caracteristicas {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
}
#produto .caracteristicas .single_caracteristica{
    font-weight: 400;
    font-size: 12px;
    line-height: 28px;
    color: #BFBFBF;
    margin-right: 30px;
}
#produto .caracteristicas .single_caracteristica img{
    width: 38px;
    display: block;
    margin: 0 auto;
}

#produto .holder_cores{
    margin-top: 20px;
}
#produto .holder_cores h3,
#produto .numbered h3{
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 10px;
}
#produto .holder_cores .lista_cores{
    display: flex;
    flex-wrap: wrap;
}
#produto .holder_cores .lista_cores .single_cor{
    margin-right: 20px;
    position: relative;
    cursor: pointer;
}
#produto .holder_cores .lista_cores .single_cor label{
    position: relative;
    cursor: pointer;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
}
#produto .holder_cores .lista_cores .single_cor input{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}
#produto .holder_cores .lista_cores .single_cor input:checked + label{
    border-color: #cdbe47;
    box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.5);
}
#produto .holder_cores .lista_cores .single_cor label img{
    width: 110%;
    height: 110%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#produto .price {
    font-weight: 700;
    font-size: 35px;
    line-height: 32px;
    color: #BFBFBF;
    margin-top: 30px;
}
#produto .price .preco{
    position: relative;
    display: flex;
    align-items: flex-start;
}
#produto .price .preco .euro{
    font-size: 16px;
    line-height: 16px;
}
#produto .numbered {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
}
#produto .numbered h3{
    width: 100%;
}
#produto .numbered .clickable{
    cursor: pointer;
    color: #938411;
    padding: 10px;
}
#produto .botao {
    margin-top: 20px;
}
#produto .holder_col_imagem {
    padding: 20px;
    border-radius: 25px;
    background: #D9D9D9;
    background: rgb(217 217 217 / 25%);
}
#produto .holder_col_imagem .imagem{
    box-shadow: none;
}
#produto .notas{
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: #BFBFBF;
    margin-top: 30px;
}
.produtos_relacionados h2{
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #CDBE47;
}

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

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

}
@media screen and (max-width: 992px){
    #produto .prod_serv .holder_prod_serv .coluna.col_imagem{
        order: 1;
        margin-top: 0;
    }
    #produto .prod_serv .holder_prod_serv .coluna.col_info{
        order: 2;
        margin-top: 30px;
    }

    #produto .notas{
        font-size: 12px;
        line-height: 26px;
    }

    #produto .prod_serv .holder_prod_serv .coluna.col_info {
        text-align: left;
    }

    #produto .holder_cores .lista_cores .single_cor label{
        width: 40px;
        height: 40px;
    }
    #produto .holder_cores .lista_cores .single_cor {
        margin-right: 10px;
    }
}

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




/*==================================================================================================*/
/*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{
    position: relative;
    width: 100%;
    background: #CDBE47;
    letter-spacing: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;

    padding: 70px 0;
}

.footer h2{
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.footer h3{
    font-size: 19px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.footer p,
.footer label,
.footer a{
    letter-spacing: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
}
.footer .holder_footer{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.footer .holder_footer .links{
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    padding-right: 40px;
}
.footer .holder_footer .links,
.footer .holder_footer .links a{
    text-transform: none;
}
.footer .holder_footer .info{
    width: 40%;
    text-transform: none;
    padding-right: 15px;
}
.footer .holder_footer .zona_links{
    line-height: 33px;
    text-transform: none;
}

.footer .holder_footer .links .coluna{
    width: Calc(100% / 3);
    padding: 0 15px;
}

.footer .holder_footer h3{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 25px;
}
.footer .holder_footer a{
    text-decoration: none;
}
.footer .holder_footer a:hover{
    text-decoration: underline;
}

.redes_sociais{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.redes_sociais .single_rede{
    margin-right: 20px;
}
.redes_sociais .single_rede a{
   color: #fff;
}
.lower_footer {
    background: #CDBE47;
    position: relative;
    padding-top: 50px;
}

.lower_footer p,
.lower_footer a{
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #000000;
    text-transform: none;
}

.lower_footer .holder_lower_footer{
    display: flex;
    flex-wrap: wrap;
}
.lower_footer .holder_lower_footer .coluna{
    width: 50%;
}
.lower_footer .holder_lower_footer .coluna:last-child{
    text-align: right;
}
.lower_footer .holder_lower_footer .coluna:last-child img{
    max-width: 100%;
}

#newsletter_response{
    font-size: 13px;
}

@media screen and (max-width: 1400px) {
    .footer p, .footer label, .footer a {
        font-size: 14px;
        line-height: 22px;
    }
}
@media screen and (max-width: 1200px) {
    .footer .holder_footer .links {
        padding-right: 10px;
        width: 65%;
    }
    .footer .holder_footer .info {
        width: 35%;
    }
}
@media screen and (max-width: 992px) {
    .footer .holder_footer .links {
        padding-right: 0;
        width: 100%;
    }
    .footer .holder_footer .info {
        width: 100%;
        margin-top: 30px;
    }
    .lower_footer .holder_lower_footer .coluna{
        width: 100%;
    }

    .lower_footer .holder_lower_footer .coluna,
    .lower_footer .holder_lower_footer .coluna:last-child{
        text-align: center;
    }
    .lower_footer .holder_lower_footer .coluna:last-child{
        margin-top: 20px;
    }
}
@media screen and (max-width: 767px) {
    .footer .holder_footer{
        text-align: center;
        margin: 0;
    }
    .footer .holder_footer .info {
        padding-right: 0;
    }
    .footer .holder_footer .links .coluna {
        width: 100%;
        padding: 0;
    }
    .footer .holder_footer .links .coluna:not(:first-child) {
        margin-top: 30px;
    }
    .footer .holder_footer h3 {
        margin-bottom: 0px;
    }

    .redes_sociais {
        justify-content: center;
    }

    .redes_sociais .single_rede{
        margin: 0 10px;
    }
}


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