.construcao-civil {
  padding: 5rem 0;
  background-color: var(--secondary-background);
}

.construcao-civil .section-paragraph {
  max-width: 650px;
}

.construcao-civil-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.construcao-civil-cards__card {
  width: 100%;
  height: 420px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  text-decoration: none;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
}

.construcao-civil-cards__card h3 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.04px;
}

.construcao-civil-cards__card span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

@media screen and (max-width: 768px) {
  .construcao-civil-cards {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 425px) {
  .construcao-civil-cards__card {
    padding: 32px;
  }
}
