@import url('https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css');

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 70px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
  justify-items: center;
  align-items: center;
}

.grid-item {
  position: relative;
  overflow: hidden;
}

.card {
  border: none;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-text {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.text-muted {
  font-size: 14px;
}

.preco {
  font-size: 16px;
  font-weight: bold;
  color: #222222;
}

@media (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}