body {
	font-family: AvenirNext;
	font-weight: normal;
	text-transform: none;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

#page-logo {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#page-logo img {
    margin-top: 5px;
    margin-left: 10px;
	width: 130px;
}

#page-navbar {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}

#kuke-nav-path {
	font-family: AvenirNext;
	font-size: 12pt;
	margin-left: 0.5em;
	z-index: 1000;
	position: absolute;
	top: 0;
	left: 0;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	color: #666;
}

#kuke-nav-path.light {
	color: #fff;
}

#kuke-nav-path ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#kuke-nav-path ul li {
	display: inline-block;
}

#kuke-nav-path ul li:not(:first-child)::before {
	content: " > ";
}

#kuke-nav-path ul li a {
	color: #666;
	text-transform: uppercase;
}

#kuke-nav-path.light ul li a {
	color: #fff;
}

.kuke-navbar {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
	position: fixed;
	background: #000;
	color: #fff;
	z-index: 10000;
}

.kuke-navbar ul {
	margin: 0;
	padding: 0;
	height: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin-right: 15px;
}

.kuke-navbar ul li {
	margin: 0;
	padding: 0;
	display: inline-block;
}

.kuke-navbar ul li a {
	background: none;
	color: #fff;
	font-weight: 500;
	font-size: 14pt;
	font-family: AvenirNext;
	transition: transform 0.1s;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.kuke-navbar ul li a:hover {
	background: none;
	transform: scale(1.1);
}

.kuke-navbar ul li a:active {
	background: none;
	transform: scale(0.9);
}

.kuke-navbar ul li a:focus {
	background: none;
}

.page-title {
	height: 10px;
	padding-bottom: 36px;
}

.pt-plax-md-light {
	background: #000;
}

.section {
	padding-top: 40px;
	padding-bottom: 20px;
}

#page-content {
	flex: 1;
}

#page-footer {
	color: #fff;
	background: #000;
	min-height: 10em;
	padding: 1em;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: center;
}
#page-footer > .content {
	flex-grow: 1;
	max-width: 1240px;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}
#page-footer > .content > * {
	flex-grow: 1;
}

#page-footer-left-content {
	font-size: 0.9em;
	line-height: 1.5em;
}

#page-footer-right-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

#page-footer-copyright {
	color: #bbb;
}

#page-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

#page-footer-links li {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	margin: 5px 5px;
	box-sizing: border-box;
}

#page-footer-circle-links {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
}

#page-footer-links .kuke-icon-btn {
	width: 48px;
	height: 48px;
	margin: 0 10px;
	padding: 0;
}

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

#page-footer > .content {
	flex-flow: column-reverse nowrap;
}
#page-footer > .content > * {
	margin: 0.5em;
}

}

::selection {
	background: #999;
}

::-moz-selection {
	background: #999;
}

.navbar-separator {
	font-size: 0.8em;
	font-weight: 400;
	color: #999;
	padding: 16px;
}

.navbar .navbar-nav li a {
	color: #d3d3d3;
	font-family: AvenirNext;
	font-size: 12pt;
	text-transform: none;
	font-weight: 550;
	letter-spacing: 0;
}

.right-separator {
	border-right-style: solid;
	border-right-width: 1px;
	border-right-color: #999;
}

.bottom-separator {
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #999;
}

.kuke-btn {
	display: inline-block;
	padding: 10px;
	margin: 12px 24px;
	background: #fff;
	border: 2px solid #fff;
	border-radius: 30px;
	color: #000;
	text-transform: none;
	font-size: 14pt;
	font-family: Arial, Helvetica, sans-serif;
	transition: all 0.1s;
}

.kuke-btn:hover {
	transform: scale(1.05);
	transition: all 0.1s;
}

.kuke-btn:active {
	transform: scale(0.95);
	transition: all 0.1s;
}

.kuke-btn.dark {
	color: #fff;
	background: #000;
	border-color: #fff;
}

.kuke-btn.dark:active {
	color: #000;
	background: #fff;
	border-color: #000;
}

.kuke-btn-outline {
	display: inline-block;
	padding: 0.5em 2em;
	margin: 10px;
	background: none;
	border: 2px solid #fff;
	border-radius: 30px;
	color: #fff;
	text-transform: none;
	font-size: 14pt;
	font-family: Arial, Helvetica, sans-serif;
	transition: color 1s, background 1s, transform 0.1s;
	text-decoration: none;
	text-align: center;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}



/*.kuke-btn-outline:focus {
	outline: none;
	border-style: dashed;
}*/

.kuke-btn-outline:hover {
	color: white;
	background: rgba(255, 255, 255, 0.125);
	transition: color 1s, background 1s, transform 0.1s;
	transform: scale(1.05);
}

.kuke-btn-outline:active {
	color: black;
	background: white;
	text-decoration: none;
	transition: transform 0.1s;
	transform: scale(0.95);
}

.kuke-btn-outline.dark.comprar{
	width: 91px;
	padding-left: 2px;
	font-size: 15px;
	text-align: center;
	padding-right: 2px;

}

.kuke-btn-outline.dark {
	color: #000;
	border-color: #000;
}

.kuke-btn-outline.dark:hover {
	background: rgba(0, 0, 0, 0.035);
}

.kuke-btn-outline.dark:active {
	color: #fff;
	background: #000;
}

.kuke-btn-outline:disabled {
	transition: none;
	color: #ddd;
	border-color: #ddd;
}

.kuke-btn-outline:hover:disabled {
	background: none;
	transition: none;
	transform: none;
}

.kuke-btn-outline:active:disabled {
	transition: none;
	color: #ddd;
}

a.kuke-btn-outline {
	text-decoration: none;
	color: #fff;
}

.kuke-btn-content {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
}

.kuke-icon-btn {
	display: block;
	background: white;
	clip-path: circle(50% at center);
	transition: transform 0.1s;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.kuke-icon-btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 20%;
}

.kuke-icon-btn:hover {
	transform: scale(1.1);
	transition: transform 0.1s;
}

.kuke-icon-btn:active {
	transform: scale(0.9);
	transition: transform 0.1s;
}

/*.kuke-icon-btn:focus {
	outline: none;
	border-width: 2px;
	border-style: dashed;
	border-radius: 50%;
	border-color: #000;
}*/

.text-center {
	font-family: Moments;
	font-size: 36pt;
	letter-spacing: 0;
	text-transform: none;
	color: #000;
}

h1.text-center {
	margin-bottom: 0;
}

.filter-bar {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	background: #e5e5e5;
	border-radius: 0.5em;
	overflow: hidden;
	margin: 3rem 2rem;
	border-bottom: solid 2px #ddd;
	max-width: 800px;
}

.filter-bar button {
	flex-grow: 1;
	display: block;
	text-decoration: none;
	color: #353535;
	background: #f0f0f0;
	padding: 0.5em 1em;
	font-weight: 400;
	transition: color 1s, background 1s;
	text-align: center;
	border: none;
}

.filter-bar.nav li > a {
	flex-grow: 1;
	display: block;
	text-decoration: none;
	color: #353535;
	background: #f0f0f0;
	padding: 0.5em 1em;
	font-weight: 400;
	transition: color 1s, background 1s;
	text-align: center;
	border: none;
}

.filter-bar button:hover {
	background: #666;
	color: #f3f3f3;
	transition: color 0.2s, background 0.2s;
}

.filter-bar.nav li > a:hover {
	background: #666;
	color: #f3f3f3;
	transition: color 0.2s, background 0.2s;
}


.filter-bar button:active {
	background: #ddd;
	color: #353535;
	transition: color 0.1s, background 0.1s;
}

.filter-bar.nav li:active > a {
	background: #ddd;
	color: #353535;
	transition: color 0.1s, background 0.1s;
}

.filter-bar.nav li.active > a {
	background: #353535;
	color: #f0f0f0;
}

.filter-bar button.active {
	background: #353535;
	color: #f0f0f0;
}


.x-center {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.hidden {
	display: none !important;
}

.kuke-select {
	position: relative;
	display: inline-block;
	/* height: 32px; */
	background: #fbfbfb;
	border: solid 1px #666;
	border-radius: 3px;
}

.kuke-select-arrow {
	position: absolute;
	top: calc(50% - 0.25em);
	right: 0.5em;
	width: 0 !important;
	height: 0 !important;
	border-top: solid 0.5em #666;
	border-left: solid 0.5em rgba(0, 0, 0, 0);
	border-right: solid 0.5em rgba(0, 0, 0, 0);
	border-bottom: solid 0.5em rgba(0, 0, 0, 0);
	background: none;
	z-index: 2;
	pointer-events: none;
}

.kuke-select-text:hover + .kuke-select-arrow {
	border-top-color: #fff;
}

.kuke-select.open .kuke-select-arrow {
	top: auto;
	bottom: calc(50% - 0.25em);
	border-bottom: solid 0.5em #666;
	border-top: solid 0.5em rgba(0, 0, 0, 0);
}

.kuke-select.open .kuke-select-text:hover + .kuke-select-arrow {
	border-bottom-color: #fff;
}

.kuke-select:focus {
	outline: none;
}

.kuke-select-text {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 0.25em 0.5em;
}

.kuke-select.open {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.kuke-select-text:hover {
	background: #666;
	color: #fff;
}

.kuke-select-menu {
	display: none;
	position: absolute;
	width: calc(100% + 2px) !important;
	left: -1px;
	z-index: 1;
	background: none;
}

.kuke-select.open .kuke-select-menu {
	display: block;
}

.kuke-option {
	border-left: solid 1px #666;
	border-right: solid 1px #666;
	background: #f6f6f6;
	padding: 0.25em 0.5em;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.kuke-option:first-child {
	border-top: solid 1px #ccc;
}

.kuke-option:last-child {
	border-bottom: solid 1px #666;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.kuke-option:nth-child(even) {
	background: #fbfbfb;
}

.kuke-option:hover {
	background: #666;
	color: #fff;
}

/* .kuke-select {
	height: 2em;
	background: #f0f0f0;
	border: solid 1px #666;
	border-radius: 3px;
}

.kuke-select:hover {
	background: #fff;
}

.kuke-select::before {
	content: "Selecione";
}

.kuke-select div {
	height: 2em;
	pointer-events: none;
}

.kuke-select-menu {
	display: none;
}

.kuke-select.open .kuke-select-menu {
	display: block;
}

.kuke-option:hover {
	background: #fff;
} */

.fill-row-empty {
	flex-wrap: wrap;
	justify-content: center;
}

.fill-col-empty {
	flex-wrap: wrap;
	justify-content: center;
}

.empty-row-item {
	height: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	border-top: none !important;
	border-bottom: none !important;
}

.empty-col-item {
	width: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	border-left: none !important;
	border-right: none !important;
}

/* .format-money-real::before {
	content: "R$ ";
	-ms-user-select: text !important;
	-moz-user-select: text !important;
	-webkit-user-select: text !important;
	user-select: text !important;
}

.format-money-real {
	-ms-user-select: text !important;
	-moz-user-select: text !important;
	-webkit-user-select: text !important;
	user-select: text !important;
} */

#kuke-page-header-simple {
	width: 100%;
	height: 30px;
	margin: 0;
	padding: 0;
}

#kuke-page-header {
	position: relative;
	display: block;
	width: 100%;
	min-height: 25em;
	padding: 3em;
	padding-top: 80px;
}

#kuke-page-header .background {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	filter: brightness(0.5);
	z-index: -100;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

#kuke-page-header .background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#kuke-page-header h1 {
	font-family: Moments !important;
	color: #fff;
	text-transform: none;
	font-size: 72pt;
	letter-spacing: 0;
}

#kuke-page-header h2 {
	font-family: AvenirNext !important;
	color: #fff;
	text-transform: none;
	font-size: 20pt;
	font-weight: 400;
	letter-spacing: 0;
	max-width: 24em;
}

#kuke-navbar-logo {
	-ms-user-select: none;
	-moz-user-selecT: none;
	-webkit-user-select: none;
	user-select: none;
}

.kuke-section {
	color: #000;
	font-size: 12pt;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.kuke-section > h2 {
	font-family: AvenirNext;
	font-weight: bold;
	font-size: 2em;
	letter-spacing: 0;
	margin: 1em;
	text-align: center;
}

.kuke-section ul {
	list-style: none;
	margin: 3em 0;
	padding: 0;
	width: 100%;
	/* min-width: 1060px; */
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.kuke-section .image_banner_home {
	width: 50%;
}

@media screen and (max-width: 840px) {
	.kuke-section .image_banner_home {
		width: 90%;
	}
}

@media screen and (max-width: 1060px) {
.kuke-section ul {
	flex-direction: column;
	align-items: center;
	min-width: auto;
}

.kuke-section ul li.empty-row-item {
	flex-basis: 0 !important;
	height: 0 !important;
}
}

.kuke-section ul li {
	display: block;
	flex-shrink: 0;
}

.kuke-icon-and-text {
	font-size: 12pt;
	display: block;
	margin: 1em;
	background: none;
	width: 12em;
	text-align: center;
	text-transform: uppercase;
}

.kuke-home-text  {
	align-items: center;
	display: block;
	width: 340px;	
	margin: 0;
	
	padding: 0;
}

.pb {
	margin-top: 52px !important;
}

.kuke-home-text p {	
	font-size: 10pt;
	background: none;
	text-align: center;
	text-transform: uppercase;
	margin-top: -15px;
	margin-left: 10px;
    margin-right: 10px;	
}

@media screen and (max-width: 840px) {	
	.kuke-section > h2 {
		font-family: AvenirNext;
		font-weight: bold;
		font-size: 1.5em;
		letter-spacing: 0;
		margin: 1em;
		text-align: center;
	}

	.kuke-home-text  {
		width: 340px;		
	}

	.pb, .pb2 {
		margin-top: -16px !important;
	}

	.kuke-home-text p {	
		margin-top: -15px;	
		margin-left: 10px;
		margin-right: 10px;
		margin-bottom: 15px;
	}
}


.kuke-home-imagem {
	width: 150px;	
	margin: 12px 0 0 100px;
	filter: brightness(0);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.kuke-home-icon-and-text {
	font-size: 12pt;
	display: block;
	margin: 1em;
	background: none;
	width: 12em;
	text-align: center;
	text-transform: uppercase;
}


.kuke-icon-and-text img {
	width: 4em;
	height: 4em;
	margin: 1em;
	filter: brightness(0);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.kuke-recipe-post {
	position: relative;
	flex: 1 1 380px;
	background: #f0f0f0;
	color: #000;
	font-size: 9pt;
	display: flex !important;
	flex-direction: column;
	max-width: 420px;
	/* min-height: 580px; */
	/* height: auto; */
	overflow: hidden;
	border-bottom: 2px solid #666;
	border-radius: 14px;
	transition: all 0.5s;
	margin: 10px;
}


@media screen and (max-width: 640px) {
	.kuke-recipe-post {
		flex: 1 1 620px;
	}

    .kuke-recipe-post img {
			max-width: 420px;
			max-height: 280px;
	}
}

.kuke-recipe-post:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
	transform: translateY(-10px);
	transition: all 0.25s;
}

.kuke-recipe-post img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.kuke-recipe-post figure {
	height: 280px;
	transition: opacity 0.5s;
}

.kuke-recipe-post figure:hover {
	opacity: 0.75;
	transition: opacity 0.5s;
}

.kuke-recipe-post figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kuke-recipe-post header {
	font-size: 1.25em;
	border-bottom: 1px solid #666;
	text-align: center;
	padding: 0.5em;
	margin: 0 1em;
}

.kuke-recipe-post header div {
	display: inline-block;
	margin: 0 0.5em;
}

.kuke-recipe-post header img {
	width: 1.25em;
	height: 1.25em;
	transform: translateY(-0.1em);
	filter: brightness(0.5);
}

.kuke-recipe-post article {
	flex: 1 0;
	margin: 1em 2em;
}

.kuke-recipe-post article h3 {
	margin-top: 0;
	margin-bottom: 1em;
	font-family: AvenirNext;
	font-size: 1.5em;
	font-weight: 400;
}

.kuke-recipe-post article p {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 1.25em;
	letter-spacing: 0;
	font-family: AvenirNext;
	max-height: 5em;
	overflow: hidden;
}

.kuke-recipe-post > article > footer {
	font-size: 1.25em;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.kuke-recipe-post > footer {
	margin: 1em;
}

.kuke-recipe-post > footer > * {
	margin: 0;
}

.kuke-recipe-post > footer > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

.kuke-recipe-post .format-money-real {
	font-size: 1.75em;
	letter-spacing: 0;
	font-family: AvenirNext;
	font-weight: 400;
}

.kuke-recipe-post .format-quantity-people {
	font-size: 1em;
}

.kuke-recipe-description {
	max-height: 4em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	margin-bottom: 1em;
}

.relative {
	position: relative;
}

.kuke-fade {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(
		rgba(240, 240, 240, 0),
		rgba(240, 240, 240, 0.2),
		rgba(240, 240, 240, 0.9),
		rgba(240, 240, 240, 1.0)
	);
	pointer-events: none;
}

.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}

.flex-col {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.kuke-blog-post {
	position: relative;
	flex: 1 1 380px;
	background: #f0f0f0;
	color: #000;
	font-size: 10pt;
	display: block;
	/* min-width: 480px; */
	max-width: 560px;
	min-height: 440px;
	overflow: hidden;
	border-bottom: 2px solid #666;
	border-radius: 14px;
	transition: all 0.5s;
	margin: 10px;
}

.kuke-blog-post:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
	transform: translateY(-10px);
	transition: all 0.25s;
}

.kuke-blog-post > * {
	margin: 1.5em;
}

.kuke-blog-post figure {
	height: 200px;
	overflow: hidden;
	margin: 0;
}

.kuke-blog-post figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kuke-blog-post header {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
	padding-top: 0.25em;
}

.kuke-blog-post header > * {
	padding: 0;
	margin: 0;
}

.kuke-blog-post h3 {
	font-family: AvenirNext;
	letter-spacing: 0.25em;
	font-weight: 400;
	font-size: 1.5em;
}

.kuke-blog-post h4 {
	font-family: AvenirNext;
	letter-spacing: 0.125em;
	font-weight: 0;
	font-size: 1em;
	color: #aaa;
	white-space: nowrap;
}

.kuke-blog-post .fa-calendar-o {
	border-right: solid 1px #aaa;
	margin-right: 0.5em;
	padding-right: 0.5em;
}

.kuke-blog-post p {
	max-height: 7em;
	overflow: hidden;
}

.kuke-blog-post .kuke-btn-outline {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0 0 1em 1em;
	padding: 0.5em 3em;
}

.kuke-vermais {
	text-align: center;
	height: 40px;
}

.vermais{
	color: #000;
	text-decoration: underline;
	font-family: Arial, Helvetica, sans-serif;
}

.viewport-spacer {
	width: 100vw;
	height: 100vh;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

@keyframes popup {
	0%, 100% {
		opacity: 0;
	}
	25%, 75% {
		opacity: 1;
	}
}

.coming-soon {
	position: relative;
}

.coming-soon::after {
	opacity: 0;
	content: "Em breve";
	color: #000;
	background: #fdfdfd;
	border-bottom: solid 2px #666;
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
	font-size: 1.5rem;
	text-align: center !important;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 0);
	padding: 0.5em 1em;
	transition: all 0.5s;
	transition-delay: 2.5s;
	transition-timing-function: ease;
}

.coming-soon:active::after {
	opacity: 1;
	transform: translate(-50%, -60%);
	transition: all 0s;
}

a {
	text-decoration: inherit;
}
a, a:hover, a:active, a:focus {
	color: inherit;
}

.kuke-btn-login {
	width: auto !important;
	text-align: center;
	margin-top: 0.3em;
	padding: 0.5em 2em !important;
	border-radius: 32px;
	border: solid 1px #fff;
}

/*.nav.navbar-nav {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}*/