@font-face {
    font-family: 'Gotham-Book';
    font-weight: normal;
    font-style: normal;
    src: url(/site/fonts/Gotham/Gotham-Book.otf) format('opentype');
}

@font-face {
    font-family: 'Gotham-Bold';
    font-weight: normal;
    font-style: normal;
    src: url(/site/fonts/Gotham/Gotham-Bold.otf) format('opentype');
}

@font-face {
    font-family: 'Quickbrush';
    font-weight: normal;
    font-style: normal;
    src: url(/site/fonts/Quickbrush.ttf) format('truetype');
}

@font-face {
    font-family: 'Bohgaku';
    font-weight: normal;
    font-style: normal;
    src: url(/site/fonts/Bohgaku/Bohgaku.ttf) format('truetype');
}

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

body{
    background-color: #fff;
    font-family: 'Gotham-Book';
}

body.open{
    overflow: hidden;
}

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

b, strong{
    font-family: 'Gotham-Bold';
}

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


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

.aparecer.apper {
    opacity: 1;
}


.deslizar_direita {
    right: -1500px;
    -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;
    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.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;
    position: relative;
}

.deslizar_esquerda.apper {
    left: 0;
}

.small_to_big {
    transform: scale(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;
}

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

.bottom_top_fade {
    position: relative;
    top: 100px;
    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;
}

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

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

.fade_anim.apper {
    opacity: 1;
}

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

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

@media (min-width: 1075px){
    .custom_container {
        max-width: 1055px;
    }
}

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

.fundo_website{
    background-image: url('/site/imagens/fundo_site_tiny.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;
}

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


.menu_holder{
    position: sticky;
    top: 0;
    padding: 10px 0;
    width: 100%;
    z-index: 6;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12.5px);

    .navbar-header img{
        width: 300px;
        max-width: 100%;

        @media (max-width: 1075px){
            &{
                width: 250px;
            }
        }

    }

    .flex-helper{
        display: flex;
        align-items: center;
        position: relative;
        justify-content: space-between;
    }

    .menu-toggler{
        position: relative;
        background: transparent;
        border: 0;
        width: 35px;
        cursor: pointer;
        padding: 0;
        height: 23px;
        display: none;
    }

    .menu{
        text-align: right;
        vertical-align: middle;

        .menu-nav{
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 20px;
            margin-top: 11px;

            .dropdown{

                a{
                    font-size: 16px;
                    text-transform: uppercase;
                    color: #1a1500;
                    text-decoration: none !important;

                    &:hover{
                        color: #F9BC23;
                        text-decoration: none !important;
                    }
                }
            }

            .dropdown.redes_sociais img{
                width: 28px;
                margin: 0 3px;
            }

            .nav-ling-link{
                a{
                    font-size: 14pt;
                    text-transform: uppercase;
                    color: #1a1500;
                    text-decoration: none !important;

                    &.active{
                        font-family: 'Gotham-Bold';
                        font-weight: 700;
                    }
                }

            }

        }
    }
}



#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 100%;
    height: 100%;
    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: #000;
    border-radius: 5px;
    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.black span {
    background: #35353a;
}
#nav-icon1.white span {
    background: #fff;
}
#nav-icon1.open span {
    background: #000;
    -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: 9px;
    -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: 9px;
    -webkit-transform: rotate(-140deg);
    -moz-transform: rotate(-140deg);
    -o-transform: rotate(-140deg);
    transform: rotate(-140deg);
}

.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: 992px) {

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

    .menu_holder .menu {
        width: 300px;
        right: 0;
        top: Calc(100% + 10px);
        position: absolute;
        background-color: #fff;
        padding: 15px 15px;
        box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.5);
        text-align: left;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        display: none;

        .menu-nav{
            flex-wrap: nowrap;
            flex-direction: column;
            margin-top: 0;
        }
    }

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

}


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

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

    .hover_banner{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 180px;

        .logo{
            position: relative;
            z-index: 7;
            text-align: center;

            @media (max-width: 1075px){
                img{
                    max-width: 250px;
                }
            }
        }

        .menus-banner{
            position: relative;
            z-index: 7;

            nav{
                display: flex;
                column-gap: 30px;
                row-gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
                padding: 0 30px;

                a{
                    color: #fff;
                    text-decoration: none;
                    text-transform: uppercase;
                    font-size: 17pt;
                    opacity: 0.4;
                    -webkit-transition: all .3s;
                    -moz-transition: all .3s;
                    transition: all .3s;

                    @media (max-width: 1075px){
                        &{
                            font-size: 20px;
                        }
                    }

                    &:hover{
                        opacity: 1;
                    }
                }
            }
        }
    }

    .redes_sociais_linguas{
        display: flex;
        flex-direction: column;
        width: 50px;
        position: fixed;
        bottom: 20%;
        right: 0;
        z-index: 7;
        text-align: center;

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

        .idiomas{
            -webkit-transition: all .3s;
            -moz-transition: all .3s;
            transition: all .3s;
            overflow: hidden;
            opacity: 1;
            visibility: visible;
        }

        &.scroll{
            bottom: -2%;

            .idiomas{
                opacity: 0;
                visibility: hidden;
            }
        }

        .redes_sociais{
            background: linear-gradient(110deg, #9F8D58, #E6DCA0, #95834D);
            padding: 10px;
            display: flex;
            gap: 5px;
            flex-direction: column;

            a{
                img{
                    width: 30px;
                    height: 30px;
                }
            }
        }



        .link-lingua{
            margin: 10px 0;
        }

        @media (max-width: 766px){
            &{
                width: 40px;
                .redes_sociais{
                    padding: 5px;
                }
            }
        }

    }

    .holder_slider{
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        position: relative;
        z-index: 6;

        &:before{
            content: '';
            background-color: rgba(66,41,28, 0.65);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .owl-stage-outer{
            height: 100%;

            .owl-stage{
                height: 100%;

                .owl-item{
                    height: 100%;
                }
            }
        }

        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%;
    height: 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;
    z-index: 4;
}

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

.banner #slider_home .owl-dots .owl-dot.active {
    background: #ba9e55;
}

.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: 165px;
    left: 0;
    right: 0;
    text-align: left;
    margin: auto;

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

.banner.banner_interno .conteudo{
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.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-size: 18px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 25px;
    font-weight: 300;
    width: 690px;
    margin-bottom: 30px;
}

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



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


@media screen and (max-width: 1200px) {
    .banner .conteudo .nome {
        font-size: 50px;
        line-height: 61px;
    }
}

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

    .banner{
        margin-top: 0;
    }

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

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

    .banner .holder_slider img{
        display: none;
    }

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

    .banner .conteudo .descricao {
        width: 100%;
    }

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

    .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: 600px) {

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

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

}

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

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

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


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

.bloco{
    position: relative;
    padding: 60px 0;
}

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


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

    .bloco{
        padding: 40px 0;
    }
}

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

@-webkit-keyframes downarrow {
    0% { -webkit-transform: translateY(0); }
    100% { -webkit-transform: translateY(0.7em); }
}

.bloco-prato{
    .holder-prato{
        position: relative;

        & > .img{
            text-align: right;

            img{
                width: 780px;
                margin-right: -40px;
            }

            @media screen and (max-width: 1145px) {
                &{
                    text-align: center;
                    img{
                        max-width: 100%;
                        margin-right: 0;
                    }
                }
            }
        }

        .helper-blocos-info{
            .bloco-info-prato{
                position: absolute;
                max-width: 350px;

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

                .titulo{
                    font-size: 36px;
                    color: #ba9e55;
                    font-family: 'Quickbrush';
                }

                .descricao{
                    font-size: 14px;
                    color: #e2cec0;
                }

                .icon{
                    position: absolute;

                    img{
                        max-width: unset;
                    }
                }

                &:after{
                    content: '';
                    position: absolute;
                    display: block;
                }

                &.bloco-info-prato-1{
                    right: 760px;
                    top: 160px;
                    width: 310px;


                    .descricao{
                        text-align: right;
                        padding-left: 20px;
                        max-width: 180px;
                        margin-top: -10px;
                    }

                    .icon{
                        position: absolute;
                        right: 10px;
                        top: 60px;
                    }

                    &:after{
                        width: 138px;
                        height: 55px;
                        right: -75px;
                        top: -40px;
                        background-image: url('/site/imagens/seta-1.png');
                    }
                }

                &.bloco-info-prato-2{
                    right: 710px;
                    top: 440px;
                    width: 250px;

                    .descricao{
                        text-align: left;
                        padding-left: 45px;
                        max-width: 505px;
                        margin-top: -10px;
                    }

                    .icon{
                        position: absolute;
                        right: 200px;
                        top: 40px;
                    }

                    &:after{
                        width: 135px;
                        height: 62px;
                        right: 10px;
                        top: -75px;
                        background-image: url('/site/imagens/seta-2.png');
                    }
                }

                &.bloco-info-prato-3{
                    right: 640px;
                    top: 650px;

                    .titulo{

                    }

                    .descricao{
                        text-align: left;
                        padding-left: 60px;
                        max-width: 220px;
                        margin-top: -10px;
                    }

                    .icon{
                        position: absolute;
                        right: 200px;
                        top: 40px;
                    }

                    &:after{
                        width: 140px;
                        height: 42px;
                        right: -105px;
                        top: 30px;
                        background-image: url('/site/imagens/seta-3.png');
                    }
                }
            }

            @media screen and (max-width: 1145px) {
                &{
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: center;
                    gap: 30px;

                    .bloco-info-prato{
                        position: relative;
                        right: 0 !important;
                        top: 0 !important;

                        &:after{
                            opacity: 0;
                            display: none;
                            visibility: hidden;
                        }

                        .descricao{
                            padding-left: 0 !important;
                            max-width: unset !important;
                            text-align: center !important;
                        }

                        .icon{
                            position: relative !important;
                            top: 0 !important;
                            right: 0 !important;
                            text-align: center !important;
                            margin-top: 10px;
                        }

                    }
                }
            }

        }

    }
}

.arrow-mouse{
    margin-top: -20px;
    -webkit-animation: downarrow 0.8s infinite alternate ease-in-out;
    animation: downarrow 0.8s infinite alternate ease-in-out;
}

h2{
    font-size: 65px;
    color: #ba9e55;
    font-family: 'Quickbrush';
    margin-bottom: 30px;

    @media screen and (max-width: 991px) {
        & {
            font-size: 50px;
        }
    }

}

.bloco-produtos{
    padding-bottom: 0;

    .holder-produtos{
        .topo{
            background-color: #2d1b12;
            padding: 0px 15px;

            & > ul{
                padding: 0;
                list-style: none;
                display: flex;
                align-items: center;
                justify-content: space-around;
                font-family: 'Bohgaku';
                margin: 0;

                @media screen and (max-width: 650px) {
                    &{
                        flex-wrap: wrap;

                        & > li{
                            width: Calc( 100% / 2 );
                            text-align: center;
                        }
                    }
                }

                & > li{
                    font-size: 30px;
                    color: #947667;
                    position: relative;
                    padding: 20px 0;

                    ul{
                        position: absolute;
                        top: 100%;
                        width: 120px;
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        left: 50%;
                        z-index: 5;
                        -webkit-transform: translateX(-50%);
                        -ms-transform: translateX(-50%);
                        transform: translateX(-50%);
                        box-shadow: 17px 0px 46px rgba(20,19,24, 0.53);
                        opacity: 0;
                        visibility: hidden;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;

                        li{
                            div {
                                text-align: center;
                                height: 70px;
                                border-bottom: 3px solid #7f7450;
                                font-size: 35px;
                                line-height: 1;
                                color: rgba(255, 255, 255, 0.4);
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                flex-direction: column;

                                span {
                                    display: block;
                                    font-size: 20px;
                                }
                            }
                        }

                        li:nth-child(1) div{background: linear-gradient(-135deg,rgba(205, 5, 41, 1) 0%, rgba(58, 0, 15, 1) 100%);}
                        li:nth-child(2) div{background: linear-gradient(-135deg,rgba(243, 177, 205, 1) 0%, rgba(189, 0, 103, 1) 55%, rgba(147, 3, 89, 1) 71%, rgba(99, 10, 74, 1) 100%);}
                        li:nth-child(3) div{background: linear-gradient(-135deg,rgba(0, 149, 191, 1) 0%, rgba(0, 10, 45, 1) 100%);}
                        li:nth-child(4) div{background: linear-gradient(-135deg,rgba(251, 200, 129, 1) 0%, rgba(79, 11, 11, 1) 100%);}
                        li:nth-child(5) div{background: linear-gradient(-135deg,rgba(248, 193, 172, 1) 0%, rgba(191, 54, 54, 1) 80%, rgba(168, 41, 50, 1) 100%);}
                        li:nth-child(6) div{background: linear-gradient(-135deg,rgba(253, 229, 202, 1) 0%, rgba(34, 19, 11, 1) 100%);}
                    }


                    &.open ul {
                        opacity: 1;
                        visibility: visible;
                    }

                    @media screen and (min-width: 767px) {
                        &:hover ul {
                            opacity: 1;
                            visibility: visible;
                        }
                    }

                }

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

            }
        }

        .listagem_produtos{
            display: flex;
            background-color: #fff;
            flex-wrap: wrap;

            .produto{
                width: Calc( 100% / 3 );
                padding: 45px 15px;
                text-align: center;

                &.produto-em-breve{
                    width: 100%;

                    .nome{
                        font-size: 33px;
                    }
                }

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

                .img{
                    margin-bottom: 30px;
                    max-width: 100%;
                }
                .nome{
                    font-family: 'Bohgaku';
                    font-size: 25px;
                    color: #50011a;
                    line-height: 1.1;
                }

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

                    &{
                        width: Calc( 100% / 2 );
                        background-color: rgba(57,0,16,0.1) !important;

                        .img{
                            width: 373px;
                        }

                        &:nth-child(4n-2), &:nth-child(4n-1) {
                            background-color: rgba(57,0,16,0.3) !important;
                        }
                    }
                }

            }

            .produto:nth-child(odd){
                background-color: rgba(57,0,16,0.1);
            }
            .produto:nth-child(even){
                background-color: rgba(57,0,16,0.3);
            }

        }
    }

}

.detalhe_produto{
    padding-bottom: 60px;
}

.popup_produto{
    /*position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    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: 5px;
        right: 10px;
        z-index: 3;
        font-size: 25px;
    }*/

    .close{
        display: none;
    }

    .conteudo{
        max-width: 1025px;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        z-index: 3;
        position: relative;
        overflow: hidden;

        .topo{
            background: linear-gradient(-135deg,rgba(205, 5, 41, 1) 0%, rgba(58, 0, 15, 1) 100%);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 20px 25px 35px;

            &.cat-1{background: linear-gradient(-135deg,rgba(205, 5, 41, 1) 0%, rgba(58, 0, 15, 1) 100%);}
            &.cat-2{background: linear-gradient(-135deg,rgba(243, 177, 205, 1) 0%, rgba(189, 0, 103, 1) 55%, rgba(147, 3, 89, 1) 71%, rgba(99, 10, 74, 1) 100%);}
            &.cat-3{background: linear-gradient(-135deg,rgba(0, 149, 191, 1) 0%, rgba(0, 10, 45, 1) 100%);}
            &.cat-4{background: linear-gradient(-135deg,rgba(251, 200, 129, 1) 0%, rgba(79, 11, 11, 1) 100%);}
            &.cat-5{background: linear-gradient(-135deg,rgba(248, 193, 172, 1) 0%, rgba(191, 54, 54, 1) 80%, rgba(168, 41, 50, 1) 100%);}
            &.cat-6{background: linear-gradient(-135deg,rgba(253, 229, 202, 1) 0%, rgba(34, 19, 11, 1) 100%);}

            .titulo{
                font-size: 50px;
                color: rgba(255, 255, 255, 0.4);
                font-family: 'Bohgaku';
                line-height: 0.8;
            }

            .subtitulo{
                font-size: 35px;
                color: rgba(255, 255, 255, 0.4);
                font-family: 'Bohgaku';
            }

            .nome_cat{
                text-align: right;
                font-size: 48px;
                color: rgba(255, 255, 255, 0.4);
                font-family: 'Bohgaku';
                line-height: 1.1;
            }

            .img_cat{
                text-align: right;

                img{
                    width: auto;
                }
            }

        }

        .info-centro{
            padding: 50px 10%;
            position: relative;
            background-color: #c3b2b7;

            & > .img{
                img{
                    width: 100%;
                }
            }

            .info-receita{
                position: absolute;
                right: 15px;
                top: 50px;
                text-align: right;

                .img{
                    img{
                        width: 32px;
                    }
                }

                .ver-receita{
                    font-size: 35px;
                    color: #53021a;
                    font-family: 'Bohgaku';
                    line-height: 1.4;

                    a{
                        color: inherit;
                    }
                }

                .chef{
                    font-size: 25px;
                    color: #53021a;
                    font-family: 'Bohgaku';
                    line-height: 1;
                }

            }

        }

    }

}

.bloco-fabrica{
    .texto{
        font-size: 14px;
        color: #ecd7c9;

        @media screen and (max-width: 991px) {
            & {
                font-size: 16px;
            }
        }
    }

    .subtitulo{
        margin-top: 60px;
        font-size: 27px;
        color: #ba9e55;

        @media screen and (max-width: 991px) {
            &{
                font-size: 25px;
            }
        }
    }

    .slider_fabria{
        max-width: 690px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        padding: 0 30px;

        .owl-nav{
            position: absolute;
            height: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            left: 0px;
            top: Calc(50% - 35px);
        }

        .holder-img{
            padding: 25px;

            .img{
                background-color: #2d1b12;
                img{
                    opacity: 0.59;
                    height: 180px;
                    object-fit: cover;
                }
            }
        }
    }

}

.banner-chef{
    position: relative;

    .img{
        img{
            width: 100%;
            height: 180px;
            object-fit: cover;
            object-position: center right;
        }
    }

    .texto{
        position: absolute;
        right: 40px;
        bottom: 30px;
        font-size: 60px;
        color: #947667;
        text-align: right;
        font-family: 'Bohgaku';
        line-height: 1;
    }
}

.bloco-receitas{
    padding-bottom: 0;

    .holder-receitas{
        .topo {

            & > ul {
                padding: 0;
                list-style: none;
                display: flex;
                font-family: 'Bohgaku';
                margin: 0;
                width: 100%;

                @media screen and (max-width: 767px) {
                    &{
                        flex-wrap: wrap;
                    }
                }

                & > li {
                    font-size: 45px;
                    color: rgba(255, 255, 255, 0.4);
                    position: relative;
                    padding: 20px 0;
                    flex: 1;
                    line-height: 0.5;
                    text-align: center;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;

                    @media screen and (max-width: 767px) {
                        &{
                            flex: unset;
                            width: Calc( 100% / 3 );
                        }
                    }

                    span{
                        font-size: 20px;
                        line-height: 1;
                    }
                }

                li:nth-child(1){background: linear-gradient(-135deg,rgba(205, 5, 41, 1) 0%, rgba(58, 0, 15, 1) 100%);}
                li:nth-child(2){background: linear-gradient(-135deg,rgba(243, 177, 205, 1) 0%, rgba(189, 0, 103, 1) 55%, rgba(147, 3, 89, 1) 71%, rgba(99, 10, 74, 1) 100%);}
                li:nth-child(3){background: linear-gradient(-135deg,rgba(0, 149, 191, 1) 0%, rgba(0, 10, 45, 1) 100%);}
                li:nth-child(4){background: linear-gradient(-135deg,rgba(251, 200, 129, 1) 0%, rgba(79, 11, 11, 1) 100%);}
                li:nth-child(5){background: linear-gradient(-135deg,rgba(248, 193, 172, 1) 0%, rgba(191, 54, 54, 1) 80%, rgba(168, 41, 50, 1) 100%);}
                li:nth-child(6){background: linear-gradient(-135deg,rgba(253, 229, 202, 1) 0%, rgba(34, 19, 11, 1) 100%);}


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



            }
        }

        .listagem_receitas{
            display: flex;
            background-color: #fff;
            flex-wrap: wrap;

            .receita{
                width: Calc( 100% / 3 );
                text-align: center;
                position: relative;

                &.receita-em-breve{
                    width: 100%;

                    .nome{
                        font-size: 33px;
                        position: relative;
                        padding: 50px 30px;
                    }
                }

                .img{
                    width: 343px;
                    max-width: 100%;
                    height: 310px;

                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }

                .nome{
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    font-family: 'Bohgaku';
                    font-size: 25px;
                    color: #fff;
                    line-height: 1.1;
                    padding: 20px 15px;
                }

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

                    &{
                        width: Calc( 100% / 2 );

                        .img{
                            width: 373px;
                        }

                        .nome{
                            background-color: rgba(57,0,16,0.4) !important;
                        }

                        &:nth-child(4n-2) .nome, &:nth-child(4n-1) .nome{
                            background-color: rgba(57,0,16,0.7) !important;
                        }
                    }
                }

            }

            .receita:nth-child(odd) .nome{
                background-color: rgba(57,0,16,0.4);
            }
            .receita:nth-child(even) .nome{
                background-color: rgba(57,0,16,0.7);
            }
        }

    }
}

.detalhe_receita{
    padding-bottom: 60px;
}

.popup_receita{
    /*position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    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: 5px;
        right: 10px;
        z-index: 3;
        font-size: 25px;
    }*/

    .close{
        display: none;
    }

    .conteudo{
        max-width: 1025px;
        margin: 0 auto;
        width: 100%;
        z-index: 3;
        height: 100%;
        position: relative;
        overflow: hidden;

        .topo{
            background: linear-gradient(-135deg,rgba(205, 5, 41, 1) 0%, rgba(58, 0, 15, 1) 100%);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 20px 25px 35px;

            &.cat-1{background: linear-gradient(-135deg,rgba(205, 5, 41, 1) 0%, rgba(58, 0, 15, 1) 100%);}
            &.cat-2{background: linear-gradient(-135deg,rgba(243, 177, 205, 1) 0%, rgba(189, 0, 103, 1) 55%, rgba(147, 3, 89, 1) 71%, rgba(99, 10, 74, 1) 100%);}
            &.cat-3{background: linear-gradient(-135deg,rgba(0, 149, 191, 1) 0%, rgba(0, 10, 45, 1) 100%);}
            &.cat-4{background: linear-gradient(-135deg,rgba(251, 200, 129, 1) 0%, rgba(79, 11, 11, 1) 100%);}
            &.cat-5{background: linear-gradient(-135deg,rgba(248, 193, 172, 1) 0%, rgba(191, 54, 54, 1) 80%, rgba(168, 41, 50, 1) 100%);}
            &.cat-6{background: linear-gradient(-135deg,rgba(253, 229, 202, 1) 0%, rgba(34, 19, 11, 1) 100%);}

            .titulo{
                font-size: 50px;
                color: rgba(255, 255, 255, 0.4);
                font-family: 'Bohgaku';
                line-height: 0.8;
            }

            .subtitulo{
                font-size: 35px;
                color: rgba(255, 255, 255, 0.4);
                font-family: 'Bohgaku';
            }

            .nome_cat{
                text-align: right;
                font-size: 48px;
                color: rgba(255, 255, 255, 0.4);
                font-family: 'Bohgaku';
                line-height: 1.1;
            }

            .img_cat{
                text-align: right;

                img{
                    width: 56px;
                }
            }

        }

        .info-centro{
            padding: 50px 0;
            position: relative;
            background-color: #c3b2b7;

            & > .img{
                max-width: 790px;

                img{
                    width: 100%;
                }
            }

            .info-receita{
                position: absolute;
                right: 15px;
                top: 50px;
                text-align: right;

                .img{
                    img{
                        width: 46px;
                    }
                }

                .ver-receita{
                    font-size: 35px;
                    color: #53021a;
                    font-family: 'Bohgaku';
                    line-height: 1.1;
                    margin-top: 15px;
                    margin-bottom: 50px;

                    a{
                        color: inherit;
                    }
                }

                .descricao{
                    color: #52021a;
                    font-size: 16px;
                    margin-top: 20px;

                    h4{
                        font-family: 'Bohgaku';
                        font-size: 27px;
                    }
                }

            }

            .info-preparacao{
                padding: 0 15px;
                margin-top: -50px;

                .descricao{
                    color: #52021a;
                    font-size: 16px;
                    max-width: 500px;
                    margin-left: auto;

                    h4{
                        font-family: 'Bohgaku';
                        font-size: 27px;
                    }
                }
            }

        }

    }

}

.bloco-contactos{
    .texto-contactos{
        font-size: 16px;
        color: #ecd7c9;
        max-width: 590px;
        margin: 0 auto 30px;
    }
}

#form_contactos{
    label{
        width: 100%;
        display: block;
        position: relative;

        span{
            font-size: 25px;
            color: #683b15;
            font-family: 'Bohgaku';
            position: absolute;
            top: 21px;
            left: 15px;
            line-height: 1;
            transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
        }

        .field{
            background-color: rgba(188, 175, 165, 0.92);
            border: none;
            width: 100%;
            display: block;
            font-size: 25px;
            color: #683b15;
            font-family: 'Bohgaku';
            padding: 19px 15px;
            outline: none;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        textarea.field{
            resize: vertical;
            min-height: 120px;
        }

        & input:focus,& input:hover,& input:not(:placeholder-shown),
        & textarea:focus,& textarea:hover,& textarea:not(:placeholder-shown){
            & + span{
                font-size: 15px;
                top: 5px;
                left: 5px;
            }
        }

    }

    .text-politica{
        font-size: 16px;
        color: #ecd7c9;

        a{
            color: inherit;
        }
    }

    button{
        background-color: #5d3e1f;
        font-size: 30px;
        color: #c4b7ad;
        padding: 15px;
        font-family: 'Bohgaku';
        line-height: 1;
        border: 0;
        width: 160px;
    }

}

.bloco.politica_privacidade{
    .texto{
        font-size: 20px;
        color: #ecd7c9;

        a{
            color: inherit;
        }
    }
}


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

footer{
    position: relative;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 435px;
    font-size: 14px;
    line-height: 30px;
    color: #ba9e55;

    .logo-footer{
        max-width: 625px;
        width: 100%;
        margin: 0 auto 50px;
    }

    .apoio-consumidor{
        margin-top: 100px;
    }

    .info-contactos{
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 30px;
        row-gap: 0px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

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

    @media screen and (max-width: 992px) {
        &{
            padding-bottom: 80px;
        }
    }

}


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

}


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