a.navegacion-contenido.tienda {
  font-weight: bold;
}

main {
  height: 700px;
}

section.articulos {
  height: 90%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-evenly;
  justify-content: space-evenly;
}

.producto {
  height: 65%;
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: rgb(63, 60, 60);
}

.producto img {
  max-width: 250px;
  height: 100%;
  width: 100%;
}

.producto h3 {
  font-size: 16px;
  position: relative;
  bottom: 1.5%;
}
.boton.boton-cuadrado {
  width: 90%;
  height: 15%;
}

section.numero-seccion {
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 2%;
}

.boton.boton-circular {
  /* font-size: 14px; */
  border-radius: 30px;
  width: 30px;
  height: 30px;
  margin-left: 10px;
}

/* Media query para poder ajustar el formato de la página, cuando el ancho sea menor de 600px. */
@media screen and (width < 600px) {
  section.articulos {
    display: flex;
    flex-wrap: wrap;
  }
  .producto {
    width: 40%;
    height: 40%;
  }

  .boton.boton-cuadrado {
    font-size: 16px;
  }
}
