@charset "utf-8";

* {
	margin: 0;
	padding:0;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding: 99px;
	--negro: #1c1c1c;
	--blanco: #ffffff;
	--verde: #669933;
	--amarillo: #ffd405;
	--oro: #bcae6a;
	--rojo: #fe4f02;
	--rojo2: #e84e1b;
	--azul: #0000fe;
	--beige: #fffbf1;
	
	--width: calc(100% - 42px);
	--maxWidth: 999px;
}

body {
	font-family: 'Kanit';
	font-weight: normal;
	color: var(--negro);
	background: url("../imgs/fondo.webp") center center no-repeat fixed;
	background-size: cover;
	line-height:1.4;
	letter-spacing: 0.21em;
	overflow-x:hidden !important;
}
body.bg-beige {
	background: var(--beige);
}

h1 {
	line-height:1;
	font-family: 'Kanit Bold';
	font-weight: normal;
	font-size: 5.1em;
	text-wrap: balance;
}
h2 {
	line-height:1;
	font-family: 'Kanit Bold';
	font-weight: normal;
	font-size: 1.8em;
	text-wrap: balance;
}
h3 {
	font-family: 'Kanit Bold';
	font-weight: normal;
	font-size: 1.5em;
	text-wrap: balance;
}
h4 {
	font-family: 'Kanit Bold';
	font-weight: normal;
	font-size: 1.2em;
	text-wrap: balance;
}
a {
	font-size: 1em;
    text-decoration:none;
	color: var(--negro);
	cursor: pointer;
	transition: all 0.6s ease-in-out;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Kanit Bold';
	/*font-size:1.11em;*/
	font-size:2.25vh;
	border-radius: 0 !important;
	cursor: pointer !important;
	border: none;
	transition: all 0.6s ease-in-out;
}
button:active {
    outline: none;
    border: none;
}
button:hover {
	cursor:pointer;
}
button:focus,
input:focus,
textarea:focus {
	outline:none;
}
p {
	text-wrap: pretty;
}
p, ul {
	font-size:0.9em;
}
p b,
p em {
	font-family: 'Kanit Bold';
	font-weight: normal;
}

::selection {
	color: var(--blanco);
	background: var(--verde);
}
::-moz-selection {
	color: var(--blanco);
	background: var(--verde);
}

/* --------------------------- full --------------------------- */

#superContainer {
    height: 100%;
    position: relative;
	-ms-touch-action: none; 
}
.section {
    position: relative;
}
.slide, .slidesContainer {
    height: 100% !important;
    display: block;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}
.tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height:100%;
}
#fullpage {
	overflow:hidden;
}

.section,
.section .slide,
.section .tableCell{
    height: auto !important;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}

/* --------------------------- css --------------------------- */

header {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	background: url("../imgs/fondo.webp") center center no-repeat fixed;
	background-size: cover;
	transition: all ease-in-out 0.6s;
	z-index: 99;
}
body.bg-beige header {
	background: var(--beige) !important;
}
header .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
header .inter > div {
	width: 33.3%;
	text-align: center;
}
header .inter div img {
	height: 72px;
	margin: 12px auto;
	transition: all 0.6s ease-in-out;
}
header .inter .menu {
	position: relative;
	display: flex;
	gap: 30px;
	justify-content: flex-start;
}
header .inter .menu:last-child {
	justify-content: flex-end;
}
header .inter .menu a {
	font-family: 'Kanit Light';
	font-size: 0.9em;
	position: relative;
	text-transform: uppercase;
	color: var(--verde);
}
header .inter .menu a::after {
	content: '';
	width: 0;
	height:1px;
	background: var(--verde);
	position: absolute;
	left: 50%;
	bottom:-3px;
	transform: translateX(-50%);
	transition: all 0.6s ease-in-out;
	z-index: 1;
}
header .inter .menu a:hover::after,
header .inter .menu a.active::after {
	width: 100%;
}
header .inter .menu a.red::after {
	display: none;
}
header .inter .menu a span {
	font-size: 1.5em;
}

#nos header {
	background: none;
}
#nos header img {
	opacity: 0;
}
#nos header .inter .menu a {
	color: var(--blanco);
}
#nos header .inter .menu a::after {
	background: var(--blanco);
}
#nos header.active {
	background: url("../imgs/fondo.webp") center center no-repeat fixed;
}
#nos header.active img {
	opacity: 1;
}
#nos header.active .inter .menu a {
	color: var(--verde);
}
#nos header.active .inter .menu a::after {
	background: var(--verde);
}

header .inter ul {
	list-style-type: none;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
}

.btn-menu {
	width: 36px;
	height:36px;
	background: var(--blanco) !important;
	position: relative;
	display: none;
}
.btn-menu span {
	width: 21px;
	height:2px;
	background: var(--verde);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease-in-out;
}
.btn-menu span::before,
.btn-menu span::after {
	content: '';
	width: 100%;
	height:2px;
	background: var(--verde);
	position: absolute;
	left: 0;
	transition: all 0.6s ease-in-out;
}
.btn-menu span::before {
	top: -7px;
}
.btn-menu span::after {
	bottom:-7px;
}
/* active */
.btn-menu.active span {
	background: none;
}
.btn-menu.active span::before {
	top: 0;
	transform: rotate(45deg);
}
.btn-menu.active span::after {
	bottom:0;
	transform: rotate(-45deg);
}

#openmenu {
	width: 100vw;
	height:100vh;
	position: fixed;
	display: block;
	top: 0;
	left:100%;
	transition: all 0.6s ease-in-out;
	color: var(--blanco);
	background: var(--amarillo);
	padding: 150px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu a {
	font-size: 1.3em; /* ? */
	display: block;
	margin: 0 0 30px;
	color: var(--negro);
	position: relative;
}
#openmenu a.active {
	color: var(--blanco);
}
#openmenu a::after {
	content: '';
	width: 12px;
	height:12px;
	background: var(--blanco);
	position: absolute;
	top: 50%;
	left:12px;
	transform: translate(0,-50%);
	border-radius: 50px;
	transition: all 0.6s ease-in-out;
	opacity: 0;
}
#openmenu a.active::after {
	opacity: 1;
}
#openmenu div:last-child {
	direction: flex;
	padding: 24px 0 0;
}
#openmenu div:last-child a {
	font-size: 0.9em;
	margin: 0 9px 24px;
	display: inline-block !important;
}
#openmenu div:first-child a {
	font-family: 'Kanit Bold';
	text-transform: uppercase;
}

#cortina {
	width: 100vw;
	height:100vh;
	position: fixed;
	opacity: 0;
	left:0;
	background: url("../imgs/fondo.webp") center center no-repeat fixed;
	background-size: cover;
	animation: gone 1.2s;
	pointer-events: none !important;
	z-index: 66;
}
#cortina.bg-beige {
	background: var(--beige);
}
@-webkit-keyframes gone {
	0% {
		opacity: 1;
	}
	42% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@-moz-keyframes gone {
	0% {
		opacity: 1;
	}
	42% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes gone {
	0% {
		opacity: 1;
	}
	42% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.section {
	position: relative;
}

main {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
}

.bg-gris {
	background: var(--gris);
	z-index: 3;
}
.bg-amarillo {
	background: var(--amarillo);
	z-index: 3;
}
.bg-rojo {
	background: var(--rojo);
	z-index: 3;
}

.btn {
	width: auto;
	font-family: 'Kanit';
	font-size: 0.9em;
	color: var(--blanco);
	background: var(--negro);
	padding:9px 15px;
	border-radius: 15px !important;
	position: relative;
	display: inline-block;
}
.btn:hover {
	color: var(--blanco);
	background: var(--verde);
}

.polygono {
	width: 100vw;
	height:calc(100vh - 90px);
	overflow: hidden;
	clip-path: polygon(100% 0, 100% 88%, 35% 100%, 0% 88%, 0 0);
	margin: 0 0 30vh;
}
.polygono img {
	width: 102%;
	height:102%;
	object-fit: cover;
}

#btns {
	width: var(--width);
	max-width: var(--maxWidth);
	position: fixed;
	left: 50%;
	bottom:12px;
	transform: translateX(-50%);
	display: flex;
	justify-content: flex-end;
	pointer-events: none;
	z-index: 9;
}
#btns a {
	pointer-events: visible;
}
#btns img {
	width: 120px;
	margin: 0 0 -6px;
}

#portada {
	margin: 150px auto 0;
	position: relative;
}

#owl {
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
.owl-carousel {
	width: 100%;
	max-width: calc(100vw - 60px);
	position:relative;
	display:block;
	cursor: grab;
	margin: 0 auto 48px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 3;
}
.owl-carousel:active {
	cursor: grabbing;
}
.owl-carousel div {
	float:left;
}
.owl-carousel .item {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	padding:0 18px 72px;
	z-index: 1;
}
.owl-carousel .item > div {
	position: relative;
}
.owl-carousel .item .imagen {
	width: 75%;
	max-width: 900px;
}
.owl-carousel .item .imagen .burrito {
	width: 81%;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}
.owl-carousel .item .imagen .burrito img {
	width: 100%;
	-webkit-filter: drop-shadow(-3px 3px 6px rgba(28,28,28,0.3));
  	filter: drop-shadow(-3px 3px 6px rgba(28,28,28,0.3));
}
.owl-carousel .item .imagen .vegan {
	width: 90px;
	height:90px;
	background: var(--verde);
	border-radius: 50%;
	position: absolute;
	top: 9%;
	left:9%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.owl-carousel .item .imagen .vegan img {
	width: 42px;
}
.owl-carousel .item .imagen > img {
	width: 100%;
	-webkit-filter: drop-shadow(-3px 3px 6px rgba(28,28,28,0.3));
  	filter: drop-shadow(-3px 3px 6px rgba(28,28,28,0.3));
}
.owl-carousel .item .texto {
	width: calc(50% - 42px);
	position: absolute;
	bottom:60px;
	left:calc(50% + 42px);
	text-align: right;
	overflow-x: 3;
}
.texto,
.imagen {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.owl-carousel .item .texto h2 {
	width: 66%;
	font-size: 4.2em;
	color: var(--verde);
	margin: 0 0 30px 34%;
	text-align: right;
	line-height: 0.7;
}
.owl-carousel .item .texto h2::first-line {
	color: var(--amarillo);
	z-index: -1;
}
.owl-carousel .item .texto p {
	font-size: 0.7em;
}
.owl-carousel .item .texto .btn {
	margin: 30px 0 0;
}

.owl-carousel .owl-item.active .imagen > img {
	animation: rotateIn ease-in-out 1.2s 0.3s both, fadeOut 1.2s 1.8s forwards;
}
.owl-carousel .owl-item.active .imagen .burrito img {
	animation: zoomIn ease-in-out 1.2s 1.8s both;
}
.owl-carousel .owl-item.active h2,
.owl-carousel .owl-item.active p {
	animation: fadeInUp ease-in-out 1.5s 0.6s both;
}
.owl-carousel .owl-item.active .btn {
	animation: zoomIn ease-in-out 1.5s 0.3s both;
}
.owl-item.center > .item img {
	opacity: 1;
}

.owl-dots {
	width: 100%;
	height:0;
	text-align: center;
	position: relative;
	transform: translateY(-30px);
	z-index: 9;
}
.owl-dots .owl-dot {
	width: 18px;
	height:18px;
	border-radius: 50% !important;
	border: solid 1px var(--verde);
	background: none;
	position: relative;
	margin: 0 15px 0 0;
	cursor: pointer;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot.active, 
.owl-dots .owl-dot:hover {
	background: var(--verde);
}

#portada .nav {
	width: 100%;
	position: absolute;
	top: 50%;
	left:0;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 6;
}
#portada .nav button {
	width: 60px;
	height:60px;
	border: solid 1px var(--negro);
	pointer-events: visible;
	border-radius: 50% !important;
	background: none;
	opacity: 0.3;
}
#portada .nav button:hover {
	background: var(--blanco);
	opacity: 1;
}
#portada .nav button.prev {
	transform: translateX(calc(-100% - 15px));
}
#portada .nav button.next {
	transform: translateX(calc(100% + 15px));
}

.liston {
	width: 150vw;
	height:90px;
	background-color: var(--verde);
	position: absolute;
	top: 50%;
	overflow: hidden;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
	z-index: 1;
}
.liston:first-of-type {
	transform: rotate(-27deg) translate(-6vw,-180%);
}
.liston:last-of-type {
	background: var(--amarillo);
	transform: rotate(-12deg) translate(-9vw,-24%);
	z-index: 0;
}
.liston > div {
	height: 90px;
	display: flex;
	align-items: center;
	gap: 18px;
	white-space: nowrap;
	animation: marquee 33s linear infinite;
	position: relative;
}
.liston > div::before,
.liston > div::after {
	content: '';
	width: 150%;
	height:15px;
	background: url('../imgs/line_b.png') repeat-x;
	background-size: contain;
	position: absolute;
	left:0;
	z-index: 3;
}
.liston > div::before {
	top: 12px;
}
.liston > div::after {
	bottom:12px;
}
.liston > div h4 {
	font-size: 21px;
	white-space: nowrap;
}
.liston > div img {
	width: auto;
	height:24px;
}

.nos .liston {
	top: 0;
	transform: rotate(0) translate(-6vw,0);
	background: var(--rojo2);
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

#nos .liston {
	top: calc(100% - 48px);
	left:50%;
	transform: rotate(-6deg) translate(-50%,0);
	transform-origin: top left;
	background: var(--rojo);
}
#nos .liston:last-of-type {
	transform: rotate(12deg) translate(-50%,100%);
	background: var(--rojo2);
}

#subtitulo {
	margin: 60px auto 42px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#subtitulo h2 {
	width: 100%;
	font-family: 'Kanit';
	color: var(--amarillo);
	font-size: 180px;
	line-height: 0.6;
}
#subtitulo h2:nth-child(2) {
	text-align: right;
	color: var(--verde);
	padding:0 0 0.6em;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#subtitulo h2 img {
	width: auto;
	height:81%;
	position: absolute;
	top: 0;
	right:12%;
	transform: translateY(-27%);
	z-index: 3;
}

.placa {
	width: 100%;
	position: absolute;
	text-align: center;
	z-index: 3;
}
.placa > div {
	color: var(--blanco);
	background: var(--negro);
	padding:6px 60px;
	border-radius: 15px;
	margin: 0 auto;
	left: 50%;
	transform: translateY(-50%);
	display: inline-block;
	z-index: 6;
}

.titulo {
	text-align: center;
	padding:72px 0 30px;
	z-index: 3;
}
.titulo.esp {
	margin: 0 auto -60px;
	padding:30px 0 0;
}
.titulo h2 {
	font-family: 'Kanit';
	font-size: 2.1em;
	padding:24px 0;
	display: inline-block;
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.titulo h2::after,
.titulo h2::before {
	content: '';
	width: 300px;
	height:15px;
	background: url('../imgs/line_w.png') repeat-x;
	background-size: contain;
	position: absolute;
	left:50%;
	transform: translateX(-50%);
}
.titulo.titN h2::after,
.titulo.titN h2::before {
	background: url('../imgs/line_b.png') repeat-x;
}
.titulo.titV h2::after,
.titulo.titV h2::before {
	background: url('../imgs/line_v.png') repeat-x;
}
.titulo h2::after {
	top: 0;
}
.titulo h2::before {
	bottom:0;
}

.menu2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 48px 0;
	padding:12px 0 90px;
}
.bg-amarillo::after,
.bg-amarillo::before {
	content: '';
	width: 100%;
	height:396px;
	background: url('../imgs/peces.png') repeat-x;
	background-size: contain;
	position: absolute;
	left:0;
	opacity: 0.4;
	z-index: 0;
}
.bg-amarillo::after {
	top: 0;
}
.bg-amarillo::before {
	bottom:0;
}
.menu2 .box {
	width: 50%;
	position: relative;
	letter-spacing: normal;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: 3;
}
.menu2 .box.peq {
	width: calc(50% - 42px);
}
.menu2 .box.gra {
	width: 100%;
}
.box .tit {
	width: 100%;
	position: relative;
	display: flex;
	gap: 18px;
	align-items: center;
	margin: -0.6em auto -0.3em;
	z-index: 3;
}
.box.gra .tit {
	justify-content: center;
}
.box .tit number {
	font-family: 'Kanit Bold';
	font-size: 6em;
}
.box .tit h3 em {
	font-size: 0.7em;
	font-style: normal;
	display: block;
}
.box .tit.esp h3 {
	width: 60%;
	padding:1.5em 0 1.8em;
	text-align: center;
}
.box .tit > img {
	width: 90px;
}
.box p.esp {
	margin: 30px 0 0;
}
.box ul,
.box p {
	font-size: 1em;
}
.box p span {
	color: var(--verde);
}
.box ul {
	position: relative;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-start;
	align-items: flex-start;
}
.box ul li {
	width: calc(50% - 42px);
	position: relative;
}
.box ul.esp li {
	padding:0 0 0 9px;
}
.box ul.esp li::after {
	content: '';
	width: 6px;
	height:2px;
	background: var(--negro);
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
}

.box ol {
	width: calc(100% - 30px);
}
.box ol li {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
}
.box ol li::before {
	content: '';
	width: 4px;
	height:4px;
	background: var(--negro);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translate(-34px,-50%);
}
.box ol li::after {
	content: '';
	width: 100%;
	border-top: dashed var(--verde) 1px;
	position: absolute;
	top: 50%;
	z-index: 0;
}
.box ol li * {
	position: relative;
	z-index: 1;
}
.box ol li p {
	background: var(--amarillo);
	padding:0 9px 0 0;
}
.box ol li p small {
	font-family: 'Kanit Light';
	font-size: 0.7em;
}
.box ol li span {
	color: var(--verde);
	background: var(--amarillo);
	padding:0 0 0 9px;
}

.presentaciones {
	display: inline-block;
	padding:0 0 0 24px;
}
.presentaciones > div {
	text-align: center;
}
.presentaciones > div:not(:last-child) {
	margin: 0 0 18px;
}
.presentaciones > div img {
	width: 100%;
	max-width: 99px;
}
.presentaciones > div h3 {
	display: block;
	margin: 0 auto;
}

.cajas {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 39px 0;
	flex-wrap: wrap;
}
.box.gra .cajas {
	gap: 39px 27px;
	justify-content: center;
}
.caja {
	width: calc(50% - 15px);
	position: relative;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.box.gra .caja {
	width: calc(33.3% - 20px);
}
.caja.chica {
	align-items: center;
}
.caja img {
	width: 60px;
}
.caja .texto {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: flex-start;
}
.caja .texto h4 {
	width: 100%;
	font-family: 'Kanit';
	font-size: 1.3em !important;
	position: relative;
}
.caja .texto p {
	font-family: 'Kanit Light';
	font-size: 0.9em !important;
}
.caja .texto p small {
	font-family: 'Kanit Light';
	font-size: 0.7em !important;
	margin: 0 0 0 6px;
}
.caja .texto span.precio {
	font-family: 'Kanit Light';
	color: var(--verde);
	font-size: 0.9em !important;
}
.bg-amarillo .caja p.esp2 {
	max-height: 30px;
	margin: 0;
	padding:3px 12px;
	color: var(--blanco);
	background: #fa5b29;
	border-radius: 18px;
}

#conoce {
	min-height: 1200px;
	max-height: calc(100vh + 90px);
	position: relative;
	overflow: hidden;
}
#conoce .fondo {
	width: 102%;
	height:102%;
	position: absolute;
	object-fit: cover;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 0;
}
.fondo {
	animation-duration: 1.3s;
	animation-delay: 0.3s;
}
#conoce main {
	z-index: 3;
}
#conoce .texto {
	text-align: center;
	padding:60px 0 0;
}
#conoce .texto h1 {
	width: 100%;
	font-size: 3.9em;
	color: var(--blanco);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-shadow: -3px 3px 6px rgba(28,28,28,0.3);
}
#conoce .texto h1 img {
	width: auto;
	height:1.2em;
}
#conoce .texto a {
	margin: 30px auto 0;
}

#stickers {
	width: 100%;
	position: relative;
	display: flex;
	z-index: 3;
}
#stickers > div {
	width: 25%;
	height:0;
	padding:0 0 33.3%;
	display: block;
	overflow: hidden;
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#stickers > div .fondo {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 0;
}
#stickers > div img:not(.fondo) {
	width: calc(100% - 60px);
	max-width: 240px;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	animation-duration: 1.3s;
	animation-delay: 0.6s;
	z-index: 3;
}

#texto {
	width: 100%;
	position: absolute;
	left: 50%;
	transform: translate(-50%,-69%);
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 1.2s;
	z-index: 12;
}
#texto h3 {
	font-size: 2.4em;
	line-height: 0.9;
	color: var(--blanco);
	text-shadow: 6px 6px 6px rgba(28,28,28,0.3);
}
#texto h3 big {
	font-size: 1.8em;
	display: block;
}
#texto.esp {
	position: relative;
	margin: 0 auto;
	padding:180px 0 0;
	left: 0;
	transform: translate(0,0);
}
#texto.esp img {
	width: auto;
	height:72%;
	position: absolute;
	top: 21%;
	transform: translateX(9%);
}
#texto.esp h3 {
	text-shadow: none;
	color: var(--negro);
}
#texto.esp h3 big {
	color: var(--verde);
}

#apps {
	min-height: 999px;
	max-height: calc(100vh - 90px);
	position: relative;
	overflow: hidden;
}
#apps .fondo {
	width: 102%;
	height:102%;
	position: absolute;
	object-fit: cover;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 0;
}
#apps main {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	padding:72px 0;
	text-align: center;
	z-index: 3;
}
#apps .miniBox {
	color: var(--blanco);
	background: var(--verde);
	padding:6px 60px;
	border-radius: 15px;
	margin: 0 auto;
	left: 50%;
	transform: translateY(-50%);
	display: inline-block;
	box-shadow: -6px 6px 6px rgba(28,28,28,0.3);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: 6;
}
#apps .logos {
	width: 100%;
	position: relative;
	padding:0 60px;
	margin: 24px auto;
	display: flex;
	gap: 60px;
	align-items: center;
	justify-content: center;
}
#apps .logos img {
	width: 33.3%;
	max-width: 180px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#apps h3 {
	font-family: 'Kanit';
	color: var(--blanco);
	text-shadow: -6px 6px 6px rgba(28,28,28,0.3);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

.fotos {
	position: relative;
	display: flex;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.fotos .box {
	width: 25%;
	height:0;
	padding:0 0 25%;
	overflow: hidden;
	position: relative;
}
.fotos .box img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.9s ease-in-out;
	z-index: 1;
}
.fotos .box:hover img {
	transform:  translate(-50%,-50%) scale(1.2);
}

#instafeed-container {
	width: 100vw;
	position: relative;
	display: flex;
}
#instafeed-container > a {
	width: 25%;
	height:25vw;
	overflow: hidden;
	position: relative;
}
#instafeed-container > a img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.9s ease-in-out;
	z-index: 1;
}
#instafeed-container > a:hover img {
	transform:  translate(-50%,-50%) scale(1.2);
}

.nos {
	padding:300px 0;
}
.nos .estampa {
	width: auto;
	height:300px;
	position: absolute;
	z-index: 6;
}
.nos .estampa img {
	width: auto;
	height:100%;
	filter: drop-shadow(6px 6px 6px rgba(28,28,28,0.3));
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.nos .estampa:nth-child(1) {
	top: -75px;
	right:7.5vw;
}
.nos .estampa:nth-child(2) {
	top:  60px;
	left: 7.5vw;
	transform: scale(0.75);
}
.nos .estampa:nth-child(3) {
	bottom:111px;
	right:7.5vw;
	transform: rotate(-15deg);
}
.nos .estampa:nth-child(4) {
	bottom:24px;
	left: 7.5vw;
}

.descripcion {
	padding:72px 0 42px;
}
.descripcion * {
	margin: 0 0 30px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.descripcion p {
	line-height: 1.6;
	text-align: justify;
  	text-justify: inter-word;
}
.descripcion h2 {
	font-size: 2.4em;
	color: var(--verde);
}
.bg-rojo .descripcion h2 {
	color: var(--amarillo);
}
.bg-rojo .descripcion p {
	font-size: 1.2em;
	color: var(--negro);
	letter-spacing: 0.12em;
	opacity: 0.7;
}

.marco {
	width: 100%;
	position: relative;
	padding:15px 0;
}
.marco::after,
.marco::before {
	content: '';
	width: 100%;
	height:15px;
	background: url('../imgs/line_b.png') repeat-x;
	background-size: contain;
	position: absolute;
	left:50%;
	transform: translateX(-50%);
}
.marco::after {
	top: 0;
}
.marco::before {
	bottom:0;
}
.marco img {
	width: 100%;
	margin: 0 0 -5px;
}

#info {
	padding:120px 0 0;
}
#info main {
	z-index: 3;
}
#info .texto {
	text-align: center;
	padding:60px 0 0;
}
#info .texto h1 {
	width: 100%;
	font-family: 'Kanit';
	font-size: 3.9em;
	color: var(--negro);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
#info .texto h1 img {
	width: auto;
	height:1.2em;
}
#info .texto a {
	margin: 30px auto 0;
}

#salsas {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding:120px 0 0;
}
#salsas > div:not(.placa) {
	width: 50%;
	height:0;
	padding:0 0 33.3%;
	position: relative;
	overflow: hidden;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#salsas > div img {
	position: absolute;
	transition: transform 0.3s ease-out;
	width: auto;
	height: auto;
	animation-duration: 1.3s;
	animation-delay: 1.8s;
	z-index: 6;
}
#salsas .fondo {
	width: 102%;
	height:102%;
	object-fit: cover;
	top: 0;
	left:0;
	z-index: 1;
}
#salsas .botella {
	height: 94%;
  	top: 6%;
  	left:29%;
  	z-index: 3;
}
#salsas .elem1,
#salsas .elem2,
#salsas .elem3 {
	height:33.3%;
}
.yogurth .elem1 {
	height:21% !important;
	top: 7%;
	left:33%;
}
.yogurth .elem2 {
	height:42% !important;
	bottom:9%;
	left:30%;
}
.yogurth .elem3 {
	height:42% !important;
	bottom:15%;
	left:54%;
}
.chipotle .elem1 {
	height:21% !important;
	top: 21%;
	left:54%;
}
.chipotle .elem2 {
	height:24% !important;
	bottom:28%;
	left:31%;
}
.chipotle .elem3 {
	height:42% !important;
	bottom:6%;
	left:53%;
}
.cilantro .elem1 {
	height:47% !important;
	bottom:9%;
	left:27%;
}
.cilantro .elem2 {
	height:30% !important;
	top: 27%;
	left:52%;
}
.teriyaki .elem1 {
	height:30% !important;
	top: 21%;
	left:30%;
}
.teriyaki .elem2 {
	height:30% !important;
	bottom:9%;
	left:27%;
}
.teriyaki .elem3 {
	height:13% !important;
	bottom:20%;
	left:56%;
}
.anguila .elem1 {
	height:24% !important;
	top: 21%;
	left:15%;
}
.anguila .elem2 {
	height:28% !important;
	bottom:6%;
	left:21%;
}
.anguila .elem3 {
	height:36% !important;
	top: 27%;
	left:51%;
}
.alioli .elem1 {
	height:22% !important;
	top: 27%;
	left:28%;
}
.alioli .elem2 {
	height:27% !important;
	bottom:15%;
	left:57%;
}
.alioli .elem3 {
	height:93% !important;
	top: 3%;
	left:18%;
	z-index: 2 !important;
}

footer {
	padding:42px 0;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	text-align: center;
}
footer .inter p {
	font-size: 0.7em;
	color: var(--verde);
}

#platillos > main {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 90px 0;
	justify-content: space-between;
	margin: 0 auto 42px;
	padding:42px 0;
	border-bottom: solid 2px var(--verde);
}
#platillos > main:last-child {
	border: none;
}
#platillos > main.inicio {
	margin: 42px auto 0;
}
#platillos .titulo {
	width: 100%;
}
#platillos .titulo h2 {
	color: var(--verde);
}

#platillos .box {
	width: calc(50% - 42px);
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#platillos .box > h2 {
	color: var(--verde);
	margin: 0 0 30px;
}
#platillos .box > div {
	position: relative;
}
#platillos .box .imagen {
	width: 100%;
	position: relative;
	margin: 0 0 12px;
}
#platillos .box .imagen img {
	width: 100%;
	display: block;
	margin: 0 0 -6px;
}
#platillos .box .texto {
	width: 100%;
	padding:9px 0 0;
}
#platillos .box .texto > * {
	margin: 0;
}
#platillos .box .texto h2 {
	font-family: 'Kanit';
	margin: 0 0 12px;
	position: relative;
}
#platillos .box .texto h2 b {
	font-size: 0.6em;
	position: absolute;
	top: 50%;
	left:0;
	transform: translate(-120%,-50%);
	color: var(--verde);
}
#platillos .box .texto p span {
	margin: 0 0 0 18px;
	color: var(--verde);
}
#platillos .box .texto > h4 {
	font-family: 'Kanit Light';
	color: var(--verde);
	font-size: 0.9em;
	margin: 0 0 3px;
}
#platillos .box .texto p.desc {
	font-family: 'Kanit Light';
	font-size: 0.9em;
	margin: 0 0 15px;
	letter-spacing: 0.12em;
	flex-grow: 1;
}
#platillos .box .texto .prot {
	font-family: 'Kanit';
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 3px;
	align-items: center;
	margin: 15px 0 24px;
}
#platillos .box .texto .prot.mas {
	margin: 15px 0 0;
}
#platillos .box .texto .prot h4 {
	width: 100%;
	font-size: 0.9em;
}
#platillos .box .texto .prot p {
	padding:3px 12px;
	background: var(--amarillo);
	border-radius: 18px;
}
#platillos .box .texto .prot span {
	position: relative;
	z-index: 3;
}
#platillos .box .texto .prot span::after {
	content: '';
	width: 270%;
	height:69%;
	background: var(--rojo2);
	position: absolute;
	top: 54%;
	left:50%;
	transform: translate(-50%,-50%);
	border-radius: 15px;
	z-index: -1;
}
#platillos .box .texto .prot img {
	width: auto;
	height:36px;
	-webkit-filter: invert(1) contrast(500%);
}
#platillos .box .texto .tams {
	width: 100%;
	position: relative;
	display: flex;
	gap: 9px 24px;
}
#platillos .box .texto .tams p {
	margin: 0 0 9px;
}
#platillos .box .texto .tams p small {
	font-family: 'Kanit Light';
	display: block;
	font-size: 0.7em;
}
#platillos .box .texto .tams span {
	color: var(--verde);
}

#platillos .box ul li {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
}
#platillos .box ul li::before {
	content: '';
	width: 4px;
	height:4px;
	background: var(--negro);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translate(-34px,-50%);
}
#platillos .box ul li::after {
	content: '';
	width: 100%;
	border-top: dashed var(--verde) 2px;
	position: absolute;
	top: 50%;
	z-index: 0;
}
#platillos .box ul li * {
	position: relative;
	z-index: 1;
}
#platillos .box ul li p {
	background: var(--beige);
	padding:0 9px 0 0;
}
#platillos .box ul li p small {
	font-family: 'Kanit Light';
	font-size: 0.7em;
}
#platillos .box ul li span {
	color: var(--verde);
	background: var(--beige);
	padding:0 0 0 9px;
}

#platillos .box > p {
	margin: 30px 0 0;
}
#platillos .box > p span {
	color: var(--verde);
}

#platillos .box .texto .btn {
	font-size: 0.8em;
	margin: 24px 0 0;
	padding:9px 18px;
	background: var(--verde);
}

.fotoCompleto {
	width: 100%;
	position: relative;
	margin: -42px 0;
	overflow: hidden;
}
.fotoCompleto img {
	width: 100%;
	margin: 0 0 -6px;
	border-top-left-radius:   48px;
	border-bottom-left-radius:48px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

.subsubtitulo {
	width: 100%;
	text-align: center;
}
.subsubtitulo h2 {
	font-family: 'Kanit';
	font-size: 3em;
	color: var(--verde);
}

.box.esp {
	padding:0 0 48px;
}
.box.esp .rueda {
	width: 78px;
	height:78px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 30px;
	border: solid 1px var(--verde);
	border-radius: 50%;
}
.box.esp .rueda img {
	width: 54px;
	height:auto;
	-webkit-filter: invert(1) contrast(500%);
}
.box.esp h1 {
	font-size: 3em;
	color: var(--verde);
	margin: 18px 0 0;
}
.box.esp span {
	color: var(--verde);
}
.box.esp .caja img {
	-webkit-filter: invert(1) contrast(500%);
}

@media screen and (max-width:1551px) {
	.fotos .box {
		width: 33.3%;
		padding:0 0 33.3%;
	}
	.fotos .box:nth-child(4) {
		display: none;
	}

	#instafeed-container > a {
		width: 33.3%;
		height:33.3vw;
	}
	#instafeed-container > a:nth-child(4) {
		display: none;
	}
}

@media screen and (max-width:666px) {
	
	html {
		--width: calc(100% - 30px);
		scroll-padding: 60px;
	}
	
	p, ul {
		font-size: 0.84em;
	}
	
	h1 {
		font-size: 1.8em;
	}
	h2 {
		font-size: 1.5em;
	}
	
	h3 {
		font-size: 1.2em;
	}
	
	header .inter div img {
		height: 45px;
		margin: 12px 0 9px;
	}
	header .inter .menu {
		gap: 12px;
	}
	header .inter .menu {
		order: 3;
		justify-content: flex-end;
	}
	header .inter > div:not(.menu) {
		order: 2;
	}
	header .inter .menu:last-child {
		justify-content: flex-start;
		order: 1;
	}
	header .inter .menu a {
		font-size: 0.84em;
	}
	header .menu a:not(.red) {
		display: none;
	}
	.btn-menu {
		display: inline-block;
	}
	
	.btn {
		font-size: 0.84em;
		padding:9px 24px;
	}
	
	#btns img {
		width: 90px;
	}
	
	#portada {
		margin: 120px auto 0;
	}
	.owl-carousel {
		max-width: calc(100vw - 30px);
		margin: 0 auto 72px;
		overflow: visible;
	}
	.owl-carousel .item {
		flex-wrap: wrap;
	}
	.owl-carousel .item .imagen {
		width: calc(100% - 30px);
	}
	.owl-carousel .item .imagen .vegan {
		width: 60px;
		height:60px;
		top: 0;
		left:0;
	}
	.owl-carousel .item .imagen .vegan img {
		width: 30px;
	}
	.owl-carousel .item .texto {
		width: 100%;
		position: relative;
		bottom:0;
		left:0;
		text-align: center;
	}
	.owl-carousel .item .texto h2 {
		font-size: 2.7em;
		margin: 0 20% 30px;
		text-align: center;
	}

	.owl-dots {
		transform: translateY(-45px);
	}
	.owl-dots .owl-dot {
		width: 15px;
		height:15px;
	}

	#portada .nav {
		display: none;
	}

	.liston {
		height:60px;
		top: 42%;
	}
	.liston:first-of-type {
		transform: rotate(-30deg) translate(-6%,-180%);
	}
	.liston:last-of-type {
		transform: rotate(-6deg) translate(-9%,-99%);
	}
	.liston > div {
		height: 60px;
		gap: 15px;
		animation: marquee 21s linear infinite;
	}
	.liston > div::before,
	.liston > div::after {
		height:9px;
	}
	.liston > div::before {
		top: 9px;
	}
	.liston > div::after {
		bottom:9px;
	}
	.liston > div h4 {
		font-size: 12px;
	}
	.liston > div img {
		height:15px;
	}
	.nos .liston {
		top: 0;
		transform: rotate(0) translate(-6vw,0);
	}

	#subtitulo {
		width: calc(100vw + 12px);
		margin: 48px -6px 24px;
	}
	#subtitulo h2 {
		font-size: 75px;
	}
	#subtitulo h2 img {
		transform: translateY(-30%);
	}

	.placa > div {
		padding:6px 48px;
	}

	.titulo {
		padding:60px 0 30px;
	}
	.titulo h2 {
		font-size: 1.2em;
	}
	.titulo h2::after,
	.titulo h2::before {
		height:12px;
	}

	.menu2 {
		padding:12px 0 90px;
	}
	.bg-amarillo::after,
	.bg-amarillo::before {
		height:60vh;
		background-size: cover;
	}
	.menu2 .box {
		width: 100%;
	}
	.menu2 .box.peq {
		width: 100%;
	}
	.box .tit,
	.box.gra .tit {
		justify-content: center;
	}
	.box .tit number {
		font-size: 5.1em;
	}
	.box p.esp {
		text-align: center;
	}
	.box ul {
		gap: 18px;
		padding:0 0 0 63px;
	}

	.presentaciones {
		padding:0;
		display: flex;
		position: relative;
		justify-content: space-between;
	}
	.presentaciones > div {
		width: calc(50% - 15px);
	}
	.cajas {
		gap: 36px 0;
	}
	.box.gra .cajas {
		gap: 36px 0;
	}
	.box .caja,
	.box.gra .caja {
		width: calc(50% - 6px);
	}
	.caja img {
		width: 51px;
	}
	.caja .texto {
		gap: 12px;
	}
	.caja .texto > div {
		width: calc(50% - 6px);
		font-size: 0.84em;
	}

	#conoce {
		min-height: 960px;
		max-height: calc(100vh - 90px);
	}
	#conoce .texto {
		padding:21px 0 0;
	}
	#conoce .texto h1 {
		font-size: 2.4em;
		flex-wrap: wrap;
		margin: 0 auto 12px;
	}
	#conoce .texto h1 img {
		height:1.5em;
	}
	#conoce .texto a {
		margin: 27px auto 0;
	}

	#stickers {
		flex-wrap: wrap;
	}
	#stickers > div {
		width: 50%;
		padding:0 0 50%;
	}

	#texto {
		transform: translate(-50%,-66%);
	}
	#texto h3 {
		font-size: 1.5em;
	}

	#apps {
		min-height: 600px;
		max-height: calc(100vh - 120px);
	}
	#apps .logos {
		padding:0 30px;
		gap: 30px;
		flex-wrap: wrap;
	}
	#apps .logos img {
		width: calc(50% - 60px);
	}
	#apps h3 {
		font-size: 0.9em;
	}

	.fotos .box {
		width: 33.3%;
		padding:0 0 33.3%;
	}
	.fotos .box:nth-child(4) {
		display: none;
	}
	
	.nos {
		padding:210px 0;
	}
	.nos .estampa {
		height:180px;
	}
	.nos .estampa:nth-child(1) {
		top: -48px;
		right:1.8vw;
	}
	.nos .estampa:nth-child(2) {
		left: 0;
		transform: scale(0.84);
	}
	.nos .estampa:nth-child(3) {
		right:1.2vw;
		transform: rotate(-15deg) scale(0.84);
	}
	.nos .estampa:nth-child(4) {
		bottom:27px;
		left: 0.6vw;
	}

	.descripcion {
		padding:60px 15px 30px;
	}
	.descripcion * {
		margin: 0 0 24px;
	}
	.descripcion p {
		line-height: 1.3;
	}
	.descripcion h2 {
		font-size: 2.1em;
	}
	.bg-rojo .descripcion p {
		font-size: 1em;
	}
	
	#info .texto {
		padding:21px 0 0;
	}
	#info .texto h1 {
		font-size: 2.4em;
		flex-wrap: wrap;
		margin: 0 auto 12px;
	}
	#info .texto h1 img {
		height:1.5em;
	}
	#info .texto a {
		margin: 27px auto 0;
	}
	
	#salsas {
		padding:90px 0 0;
	}
	#salsas > div:not(.placa) {
		width: 100%;
		padding:0 0 66.6%;
	}

	footer .inter p {
		font-size: 0.6em;
	}
	
	#platillos > main {
		gap: 72px 0;
		margin: 0 auto 30px;
		padding:24px 0;
	}
	#platillos > main.inicio {
		margin: 30px auto 0;
	}

	#platillos .box {
		width: 100%;
	}
	#platillos .box > h2 {
		margin: 0 0 24px;
	}
	#platillos .box .texto {
		padding:12px 0 0;
	}
	#platillos .box .texto h2 {
		margin: 0 0 9px;
	}

	.fotoCompleto {
		margin: -30px 0;
	}
	.subsubtitulo h2 {
		font-size: 2.1em;
	}

	.box.esp {
		padding:0;
	}
	.box.esp .rueda {
		width: 66px;
		height:66px;
		margin: 0 0 24px;
	}
	.box.esp .rueda img {
		width: 45px;
	}
	.box.esp h1 {
		font-size: 2.4em;
	}
	
}