.cada-produto {
  padding: 5rem 0;
}

.cada-produto .container {
  max-width: 1440px;
}

.cada-produto .section-title {
  margin: 0 auto 32px;
  max-width: 850px;
  text-align: center;
}

.cada-produto-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 80px;
}

.cada-produto-cards__card {
  width: 100%;
  height: 100%;
  padding: 32px;
  border-radius: 5px 50px;
  background: #fff;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.cada-produto-cards__card:hover {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
}

.cada-produto-cards__card-icon {
  width: 48px;
  height: 48px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #3565b1;
}

.cada-produto-cards__card h3 {
  color: #13233e;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.9px;
  margin: 24px 0;
}

.cada-produto-cards__card p {
  color: #7d7d7d;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

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

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