

.grid-products{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-top: 1em;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 2em;
  background: #fff;
  width: 100%;
  padding-left: 2em;
}

.product-row img {
  object-fit: cover;
  width: 100%;
}

.product-row-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2em;
  width: 80%;
  padding: 2em;
}

.product-row-text h3{
  color: #2d348f;
}

.product-row-text p{
  color: #8a8a8a;
}



@media (max-width: 425px) {
  #products {
    height: 100vh;
  }
  #products img {
    min-height: 100vh;
    content: url("./../imgs/fundoRGB.jpg");
    object-position: 25%;
    filter: brightness(70%);
  }

  img {
    position: relative;
    width: 100%;
    height: auto;
    filter: brightness(70%);
  }

  .product-row {
    grid-template-columns: 1fr;
    padding: 0;
    font-size: 1rem;
    width: 100%;
  }

  .grid-products{
    margin: 0;
  }

  .product-row-text{
    width: 100%;
  }
}