a.inicio {
  font-weight: bold;
}

main {
  height: 1100px;
  padding-top: 1%;
}

.banner {
  max-width: 2300px;
  margin: auto;
  color: white;
  height: 50%;
  background-image: url(../images/Carroussel/Carroussel-1.webp);
  background-size: 90% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
h2.titulo {
  width: 40%;
  display: flex;
  flex-direction: column;
  font-size: 40px;
  position: relative;
  top: 25%;
  left: 9%;
}
section.informacion-inicio {
  height: 50%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* font-size: 22px; */
}

section.informacion-inicio .texto {
  width: 45%;
  margin-left: 2%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
section.informacion-inicio .muestras {
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

img.muestra {
  width: calc(90% / 3);
  height: 60%;
}

.boton-circular {
  border-radius: 30px;
  height: 10%;
}

/* Media query para poder ajustar el formato de la página, cuando el ancho sea menor de 600px. */
@media screen and (width < 600px) {
  main {
    height: 900px;
  }
  .banner {
    width: 100%;
    height: 25%;
    background-size: 100%;
  }

  h2.titulo {
    height: 45%;
    width: 30%;
    font-size: 25px;
    position: relative;
    top: 15%;
  }

  section.informacion-inicio {
    height: 75%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
  }

  section.informacion-inicio .texto {
    width: 95%;
    height: 45%;
    display: flex;
    align-items: center;
  }

  section.informacion-inicio .muestras {
    width: 100%;
    height: 55%;
  }

  img.muestra {
    height: 70%;
  }

  .boton.boton-circular {
    height: 15%;
  }
}
