body {
  margin: 0;
  margin-bottom: 20px;
  color: white;
  background-image: url(../images/background.jpg);
  background-position: center;
  background-size: cover;
  height: 100%;
}
.products-title {
  width: 100%;
  margin: 35px 0;
}
.products-title.lastT {
  color: #6385fb;
}
.products__card-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 15px;
  margin-top: 0;
  flex-wrap: wrap;
}
.products__card {
  display: flex;
  width: 100vw;
  min-height: 200px;
  background-color: rgba(85, 153, 255, 0.8);
  border-radius: 43px;
  padding: 20px;
}
.products__card div {
  width: 100%;

}
.products-info {
  display: flex;
  flex-direction: column;
}
.products__image-card {
  align-self: center;
  width: 320px;
  height: 228px;
  border-radius: 43px;
}
.products__title-card {
  color: white;
  margin: 0 20px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);

}

.products__paragraph-card {
  color: white;
  font-size: 20px;
  font-family: sans-serif;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
  margin: 20px;
}

.products-title.contacto {
  margin: 20px 0;
}


@media (max-width: 768px) {
  .products__title-card {
    margin-top: 15px;
    text-align: center;
  }
  .products__card {
    flex-direction: column;
    width: auto;
  }
  .products__image-card {
    align-self: center;
    width: 100%;
    height: auto;
    margin-top: 5px;
  }
  .products__paragraph-card{
    margin: 20px 10px;
    margin-bottom: 0;
  }
}

@media (max-width: 290px) {
  .products__paragraph-card {
    font-size: 18px;
  }
}