* {
  margin: 0;
}

body {
  font-family: "quicksand", sans-serif;
}

.grid {
  display: grid;
  grid-gap: 20px;

  grid-template-columns: repeat(auto-fill, 1 fr);
  /*padding-inline: 8%;*/
  /* grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(5, 1fr);*/
}

h1 {
  font-size: 2.5rem;
  animation: fadeIn linear 2s;
  display: grid;
  align-items: center;
  justify-items: center;
}

/*ANIMACION*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h2 {
  font-size: 1.7rem;
  color: rgb(132, 165, 0);
  animation: fadeIn linear 2s;
  display: grid;
  text-align: center;
  text-align-last: center;
  align-items: center;
  justify-items: center;
}

h3 {
  font-size: 1.2rem;
  justify-items: center;
  color: rgb(132, 165, 0);
  animation: fadeIn linear 2s;
  text-align: center;
  margin: 15% 10% 0% 12%;
}

p {
  padding-inline: 25%;
  padding-block: 2%;
  font-size: 1.3rem;
  text-align-last: center;
  text-align: center;
  text-justify: inter-word;
  word-break: break-word;
  animation: fadeIn linear 2s;
}

.productos {
  margin: 10%;
}

.uva {
  background-image: url("/Images/product/uva-fondo.png");
  background-size: cover;
  width: 100%;
  height: 140vh;
  background-repeat: no-repeat;
  grid-row: 2;

  display: grid;
  align-items: center;
  justify-items: center;
}

.uva-img {
  display: grid;
  align-items: center;
  justify-items: center;

  margin-top: 10rem;
  width: 30rem;

  height: 80vh;
  background: rgba(255, 255, 255, 0.61);

  border-radius: 68% 42% 44% 56% / 58% 61% 39% 42%;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.445);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.404);
  animation: blob 8s infinite;
}

.uva-img img {
  margin: 10% 10% 0% 10%;
}
.uva-img h3 {
  font-size: 2rem;
  margin: 0;
  margin-top: -40px;
  padding-bottom: 2rem;
}

.limon {
  padding-bottom: 130px;
  background-image: url("/Images/product/limon-fondo.png");
  background-size: cover;
  width: 100%;
  height: 40%;
  background-repeat: no-repeat;
  grid-row: 3;

  display: grid;
  align-items: center;
  justify-items: center;
}

.limon-img {
  display: grid;
  align-items: center;
  justify-items: center;

  margin-top: 10rem;
  width: 30rem;
  height: 82vh;

  background: rgba(255, 255, 255, 0.61);
  border-radius: 60% 40% 52% 48% / 42% 63% 37% 58%;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.445);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.404);
  animation: blob 8s infinite;
}

.limon-img img {
  margin: 10% 10% 0% 10%;
}
.limon-img h3 {
  font-size: 2rem;
  margin: 0;
  margin-top: -40px;
  padding-bottom: 3rem;
  cursor: pointer;
}

.verde {
  background-image: url("/Images/product/verde-fondo.png");
  background-size: cover;
  width: 100%;
  height: 42%;
  background-repeat: no-repeat;
  grid-row: 4;

  display: grid;
  align-items: center;
  justify-items: center;
}

.verde-img {
  display: grid;
  align-items: center;
  justify-items: center;

  margin-top: 10rem;
  width: 30rem;

  height: 80vh;
  background: rgba(255, 255, 255, 0.61);

  border-radius: 55% 45% 52% 48% / 52% 37% 63% 48%;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.445);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.404);
  animation: blob 8s infinite;
}

.verde-img img {
  margin: 10% 10% 0% 10%;
}
.verde-img h3 {
  font-size: 2rem;
  margin: 0;
  margin-top: -40px;
  padding-bottom: 2rem;
}

/*ANIMACION BLOBS*/
@keyframes blob {
  50% {
    border-radius: 43% 57% 49% 51% / 49% 69% 31% 51%;
  }
}

.footer {
  margin-top: 700px;
  margin-bottom: 0;
  padding-top: 1%;
  width: 100%;
  height: calc(103vh - 590px) !important;
  border: none;
  overflow: hidden;
}

@media (max-width: 500px) {
  body {
    margin-top: 100px;
    overflow-x: hidden;
  }

  p {
    padding-inline: 1%;
  }

  .uva,
  .limon,
  .verde {
    background-position: center;
    background-size: 160%;
    height: 90vh;
  }

  .footer {
    margin-top: 120px;
  }
}

@media (max-width: 800px) {

body{
  margin-top: 70px;
}
p {
  padding-inline: 10%;
}

  .uva,
  .limon,
  .verde {
    background-position: center;
    background-size: 100%;
    height: 90vh;
  }
  .footer {
    margin-top: 120px;
  }

}
