
.results-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; 
  margin: 3rem 0;
}

/* 🔧 Ajuste de tarjetas de resultados para laptop y escritorio */



.result-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1rem; /* Más espacio para el CTA */
  text-align: center;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #E0E0E0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(123, 97, 255, 0.2);
  border-color: #7B61FF;
}

.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7B61FF;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-label {
  color: #2A3B8F;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.2rem; /* Espacio antes del CTA */
}

.result-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.1;
  font-size: 1.8rem;
  color: #7B61FF;
}

.result-cta {
  display: inline-block;
  width: 100%;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: #7B61FF !important;
  text-decoration: none;
  border-top: 1px solid rgba(123, 97, 255, 0.2);
  transition: all 0.3s;
  margin-top: auto; /* Alinea el CTA al fondo */
}

.result-cta:hover {
  color: #2A3B8F !important;
  background: rgba(123, 97, 255, 0.05);
}

.result-cta i {
  margin-left: 0.3rem;
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.result-cta:hover i {
  transform: translateX(3px);
}

.results-tagline {
  text-align: center;
  color: #2A3B8F;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1rem auto 3rem;
  max-width: 600px;
  line-height: 1.5;
}

