.fondoPita {
  background-image: url('../images/pitas.png'); /* Reemplaza con la URL o ruta de tu imagen */
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto; /* Puedes usar 'contain' o 'cover' si necesitas ajustar el tamaño */
}

.fondoPitaIzq {
  background-image: url('../images/pitas.png'); /* Reemplaza con la URL o ruta de tu imagen */
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: auto; /* Puedes usar 'contain' o 'cover' si necesitas ajustar el tamaño */
}


.shadow-dance-text {
    font-size: 4rem;
    color: #fff;
    text-shadow: 5px 5px 0 #ff005e, 10px 10px 0 #00d4ff;
    animation: shadow-dance 2s infinite;
}

@keyframes shadow-dance {
    0%, 100% {
        text-shadow: 5px 5px 0 #ff005e, 10px 10px 0 #00d4ff;
    }
    50% {
        text-shadow: -5px -5px 0 #00d4ff, -10px -10px 0 #ff005e;
    }
}

/*

en el html
<div class="shadow-dance-container">
    <h1 class="shadow-dance-text">ZAPALLO</h1>
</div>


*/

/* texto split */

@font-face {
  font-family: 'Mangaba';
  src: url('../fonts/Mangaba.otf') format('opentype');
}


.split-text-container {
    display: flex;
    font-size: 5rem;
    text-transform: uppercase;
    color: #f39200;
    overflow: hidden;
	text-align: center;
	
}

.text-part {
    display: inline-block;
    position: relative;
    transform: translateX(0);
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.text-part.left {
    transform: translateX(-200%);
    animation-name: slide-in-left;
	font-family: 'mocha-mattari';

}

.text-part.right {
    transform: translateX(200%);
    animation-name: slide-in-right;
	font-family: 'Mangaba';
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(200%);
    }
    100% {
        transform: translateX(0);
    }
}

.textoIngredientes{
    margin: 0 auto;
   /* border-right: 2px solid rgba(255,255,255,.75); */
    font-size: 19px;
    text-align: left;
    width: 100%; 
	font-family: 'avenir-medium' !important;;
}

/* typewriter  
https://prismic.io/blog/css-text-animations
*/

/* Cursor */
.cursor{
    position: relative;
    width: 24em;
    margin: 0 auto;
   /* border-right: 2px solid rgba(255,255,255,.75); */
    font-size: 22px;
    text-align: left;
    white-space: pre;
    overflow: hidden;
    transform: translateY(-50%);    
}
/* Animation */
.typewriter-animation {
  animation: 
    typewriter 5s steps(50) 1s 1 normal both, 
    blinkingCursor 500ms steps(50) infinite normal;
	 font-family: 'avenir-medium';
}
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blinkingCursor{
  from { border-right-color: rgba(255,255,255,.75); }
  to { border-right-color: transparent; }
}

/* multiples shadows 
 <main>Los mas ricos y saludables snacks con semillas de AMARANTO, LINO y GIRASOL!</main>
*/

main {
  transition: all 0.5s;
  -webkit-text-stroke: 4px #f39200;
  font-variation-settings: "wght" 900, "ital" 1;
  font-size: 60px;
  text-align: center;
  color: transparent;
   font-family: 'avenir-medium';
  text-shadow: 10px 10px 0px #07bccc,
    15px 15px 0px #e601c0,
    20px 20px 0px #e9019a;
   /* 25px 25px 0px #f40468;
    45px 45px 10px #482896; */
  cursor: pointer;
}

main:hover {
  font-variation-settings: "wght" 100, "ital" 0;
  text-shadow: none;
}

/* letra que se engorda

<h1>CSS Variable font transition on hover</h1>
<section><div class="title"><i class="fas fa-angle-double-left"></i>Hover Here<i class="fas fa-angle-double-right"></i></div></section>



section{
  display:flex;
  justify-content: center;
  align-items: center;
  background: black;
  height: 100vh;
}

*/
.title {
   font-family: 'politica_ExtraBold';
  font-size: 32px;
  color: #f39200;
  text-align: center;
  font-variation-settings: "wght" 100;
  transition: font-variation-settings 1s ease-out;
  &:hover {
    font-variation-settings: "wght" 1000;
  }
}

.fas {
  font-family: FontAwesome;
  font-size: 60px;
  font-style: normal;
  color: orange;
   padding: 0 40px;
  transform: translateY(-5px);
  display: inline-block;
  line-height: 20px;
  font-weight: 400;
}

/* botones con bordes que aparecen funciona ok*/

.btn{

cursor:pointer;
  position:relative;
  padding:10px 20px;
  background: #f39200;
	color: #ffffff;
  font-size:28px;
  border-top-right-radius:10px;
  border-bottom-left-radius:10px;
  transition:all 1s;
  &:after,&:before{
    content:" ";
    width:10px;
    height:10px;
	  color: #ffffff;
    position: absolute;
    border :0px solid #fff;
    transition:all 1s;
    }
  &:after{
    top:-1px;
    left:-1px;
    border-top:5px solid #3eab34;
    border-left:5px solid #3eab34;
  }
  &:before{
    bottom:-1px;
    right:-1px;
    border-bottom:5px solid #3eab34;
    border-right:5px solid #3eab34;
  }
  &:hover{
    border-top-right-radius:0px;
  border-bottom-left-radius:0px;
    /* background:rgba(62,171,52,.5); / verde /
     color: #f39200; */
    &:before,&:after{
      
      width:100%;
      height:100%;
      /* border-color:white; */
    }
  }
}

.data-container{
 /* background:#ffebee; 
  height:100vh;
  scale:2; // added just to get good view on preview*/
  display:flex;
  justify-content:center;
  align-items:center;
	color: #ffffff;
}

/** otro boton con animacion */

.button_slide {
  color: #000;
	background-color: #fdc91d;
  border: 2px solid rgb(243, 146, 0);
  border-radius: 0px;
  padding: 10px 25px;
  display: inline-block;
  font-family: 'politica_ExtraBold';
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #f39200;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

.slide_down:hover {
  box-shadow: inset 0 100px 0 0 #3eab34;
}

.slide_right:hover {
  box-shadow: inset 400px 0 0 0 #3eab34;
}

.slide_left:hover {
  box-shadow: inset 0 0 0 50px #3eab34;
}

.slide_diagonal:hover {
  box-shadow: inset 400px 50px 0 0 #3eab34;
}

#outer {
  width: 300px;
  margin: 20px auto 0 auto;
  text-align: center;
}


/* boton comic

<!-- HTML !-->
<button class="button-19" role="button">Button 19</button> */

/* CSS */
.button-19 {
  appearance: button;
  background-color: #68d8dc;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
   font-family: 'politica_ExtraBold';
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 13px 16px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: filter .2s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  width: 60%;
}

.button-19:after {
  background-clip: padding-box;
  background-color: #0fb4bb;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.button-19,
.button-19:focus {
  user-select: auto;
}

.button-19:hover:not(:disabled) {
  filter: brightness(1.1);
  -webkit-filter: brightness(1.1);
}

.button-19:disabled {
  cursor: auto;
}

.button-19:active {
  border-width: 4px 0 0;
  background: none;
}

/* otro boton con sombra 

<!-- HTML !-->
<button class="button-52" role="button">Button 52</button>*/

/* CSS */
.button-52 {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-52:after {
  content: "";
  background-color: #0fb4bb;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.button-52:hover:after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .button-52 {
    padding: 13px 50px 13px;
  }
}

/* boton con movimiento
<!-- HTML !-->
<button class="button-57" role="button"><span class="text">Button 57</span><span>Alternate text</span></button> 

https://getcssscan.com/css-buttons-examples
*/

/* CSS */
.button-57 {
  position: relative;
  overflow: hidden;
  border: 1px solid #d38002;
  color: #ffffff;
  display: inline-block;
  font-size: 20px;
  line-height: 15px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background: #f39200;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
	/*yo*/
	border-radius: 25px;
  border-width: 0 0 4px;
  box-sizing: border-box;
	width: 30%;
	font-family: 'mocha-mattari';
	
}

.button-57 span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.button-57 span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 13px;
	width: 50%;
}

.button-57:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d38002;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-57:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.button-57:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}


/* CSS */
.button-58 {
  position: relative;
  overflow: hidden;
  border: 1px solid #eab818;
  color: #ffffff;
  display: inline-block;
  font-size: 20px;
  line-height: 15px;
  padding: 18px 18px 15px;
  text-decoration: none;
  cursor: pointer;
  background: #fcd24c;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
	/*yo*/
	border-radius: 25px; /*16*/
  border-width: 0 0 4px;
  box-sizing: border-box;
/*	width: 50%; */
	font-family: 'mocha-mattari';
	
}

.button-58 span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.button-58 span:last-child {
  color: #ffffff;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 65%; /*50*/
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 13px;
/*	width: 70%; 50*/
}

.button-58:after {
  content: "";
  position: absolute;
  bottom: -50%; 
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eab818;
	color: #ffffff;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-58:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
  color: #ffffff;
}

.button-58:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}

/* CSS BOTON VERDE CEBOLLA */
.button-onion {
  position: relative;
  overflow: hidden;
  border: 1px solid #309426;
  color: #ffffff;
  display: inline-block;
  font-size: 20px;
  line-height: 15px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background: #3eab34;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
	/*yo*/
	border-radius: 25px;
  border-width: 0 0 4px;
  box-sizing: border-box;
	width: 30%;
	font-family: 'mocha-mattari';
	
}

.button-onion span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.button-onion span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 13px;
	width: 50%;
}

.button-onion:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #309426;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-onion:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.button-onion:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}

/* CSS Celeste sal */
.button-salt {
  position: relative;
  overflow: hidden;
  border: 1px solid #68d8dc;
  color: #ffffff;
  display: inline-block;
  font-size: 20px;
  line-height: 15px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background: #0fb4bb;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
	/*yo*/
	border-radius: 25px;
  border-width: 0 0 4px;
  box-sizing: border-box;
	width: 25%;
	font-family: 'mocha-mattari';
	
}

.button-salt span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.button-salt span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 13px;
	width: 50%;
}

.button-salt:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #68d8dc;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-salt:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.button-salt:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}
