.page-title {
  background-image: url(../images/informacoes.webp);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.informacoes {
  padding: 5rem 0;
  background-color: #f7f7f7;
}

.section-title {
  text-align: left;
  margin-bottom: 80px;
}

.informacoes-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.informacoes-cards__card {
  width: 100%;
  text-decoration: none;
  border: 1px solid #888;
  display: flex;
  flex-direction: column;
}

.informacoes-cards__card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #fff;
}

.informacoes-cards__card-content h3 {
  color: #221200;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 20px;
}

.informacoes-cards__card-content p {
  color: #5c5c5c;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 20px;
}

.informacoes-cards__card-content span {
  color: #bb2115;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 425px) {
  .informacoes-cards__card-content h3 {
    font-size: 1.25rem;
  }
  .informacoes-cards__card-content p {
    font-size: 1rem;
  }
}

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

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

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