.contenedor {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  margin-right: 35px;
  width: 100%;
  display: inline-block;
}

/** productos **/
.productos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  margin-left: 0 !important;
  margin-right: 0 !important;
  align-items: flex-start;
}

.productos .producto {
  -webkit-box-flex: 0;
  background-color: #ffffff;
  margin-bottom: 1rem;
  border: 1px solid var(--main-second-color);
  border-radius: 32px;
  padding: 2px;
  width: 285px;
  height: 410px;
}

img {
  border-radius: 20px;
}

.productos .producto:hover {
  border-style: solid;
  border: 2px solid var(--main-contornoProducto-color) !important;
}

.productos .producto .imagen-producto {

  object-fit: cover;
  width: 160px;
  height: 160px;
  display: block;
  margin: 0 auto;
}


.productos .producto .info-producto {
  padding: 0.5rem 1.5rem;
}

.productos .producto .info-producto h4 {
  margin: 0;
  font-size: 1.2rem;
}

.productos .producto .info-producto .boton {
  background: rgb(214, 39, 86);
  background: radial-gradient(
    circle,
    rgba(214, 39, 86, 1) 0%,
    rgba(241, 58, 141, 1) 100%
  );
  padding: 0.5rem 1rem;
  display: block;
  text-align: center;
  color: #ffffff;
  border-radius: 16px;
  text-decoration: none;
}

.boton-ver-mas {
  background: rgb(214, 39, 86);
  background: radial-gradient(
    circle,
    rgba(214, 39, 86, 1) 0%,
    rgba(241, 58, 141, 1) 100%
  );
  padding: 0.5rem 1rem;
  display: block;
  text-align: center;
  width: 100px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 16px;
}

.productos .producto .info-producto .precio {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.productos .producto .info-producto .precio .oferta {
  text-decoration: line-through;
  color: gold;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}
