.resultados {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url(../images/resultados-concretos.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
}

.resultados .section-title {
  color: #fff;
  max-width: 800px;
}

.resultados-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 64px;
}

.resultados-cards__card {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 70px 40px;
  background: #050202;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  transition: transform 0.2s ease-in-out;
}

.resultados-cards__card:hover {
  transform: translateY(-10px);
}

.resultados-cards__card h3 {
  color: #f60;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  letter-spacing: -1.08px;
}

.resultados-cards__card h3 strong {
  font-size: 2.5rem;
  font-weight: bold;
}

.resultados-cards__card p,
.resultados-cards__card h3 span {
  color: #fff;
  text-align: center;
  font-family: "Exo2", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.96px;
}

.contador {
  display: inline-block;
}

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

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