@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
}

.box {
  width: 250px;
  height: 350px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  box-sizing: border-box;
  margin: 20px 10px;
  border: solid 1px #01a4b5;
}

.imgproducto {
  height: 150px;
  max-height: 100%;
  max-width: 100%;
}

.details {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
}

.details p {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 0 !important;
  font-size: 0.8rem !important;
  font-weight: 500;
  color: #000;
  text-align: justify;
  letter-spacing: 0;
}

.title {
  color: #000;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 1rem;
}

.precio {
  margin-top: 15px !important;
  margin-bottom: 0 !important;
  font-size: 0.9rem !important;
  font-weight: 500;
}

.box:hover {
  /* background-color: #01a4b5; */
  transform-style: preserve-3d;
  transform: scale(1.02);
  transition: all ease 0.3s;
}

.box:hover .title {
  /* color: #efb810; */
  color: #01a4b5;
}

.box:hover .details p {
  color: #01a4b5;
}

.box:hover .precio {
  color: #efb810;
}

.box:hover .imgproducto {
  transform: translateY(-15px);
}

.tipo {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  display: inline;
  align-items: center;
  justify-content: space-between;
}

.tipoimg {
  width: 20px;
  height: 20px;
}

.titlepage {
  margin-left: 20%;
  margin-right: 20%;
  color: #01a4b5 !important;
}

.titlepage h2 {
  color: #01a4b5 !important;
  font-size: 1.5rem;
}

.saboresdiv {
  display: none;
}

.sabores {
  margin: 0 !important;
}

/* .lSSlideWrapper {
  display: grid !important;
  align-content: center !important;
  align-items: center !important;
  justify-content: center !important;
} */

/*--responsive for mobile phone--*/
@media (max-width: 768px) {
  .box {
    width: 94%;
    height: 350px;
  }
  .imgproducto {
    height: 150px;
  }

  .details p {
    text-align: justify;
    /* width: 250px; */
  }
  .saborestodo {
    display: none;
  }

  .saboresdiv {
    display: block;
  }

  .sabores {
    width: 100%;
    height: 10%;
  }

  .titlepage h2 {
    color: #01a4b5 !important;
    font-size: 0.9rem;
  }
}

/* @media (max-width: px) {
  .saborestodo {
    display: none;
  }

  .saboresdiv {
    display: block;
  }

  .sabores {
    width: 100%;
    height: 150px;
  }
} */
