.produtos {
  padding: 5rem 0;
  background-color: #121212;
}

.produtos-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 80px;
}

.produtos-cards__card {
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 300px;
  text-decoration: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.produtos-cards__card h3 {
  color: #e7e7e7;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 121.12%;
  letter-spacing: -1.28px;
  margin-bottom: 40px;
}

@media screen and (min-width: 650px) {
  .produtos-cards {
    grid-template-columns: 1fr 1fr;
  }
  .produtos-cards__card:first-of-type {
    grid-row: span 2;
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .produtos-cards__card {
    height: 360px;
  }
}

@media screen and (min-width: 1024px) {
  .produtos-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
