/* ==================== PROVA SOCIAL NUMÉRICA ==================== */
.stats {
  background: linear-gradient(135deg, #C48F94 0%, #8E5F65 100%);
  color: #fff;
  padding: 50px 8%;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item:last-child {
  border-right: 0;
}
.stat-number {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  opacity: 0.95;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 18px;
  }
  .stat-item:nth-last-child(-n+2) {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .stat-number {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.85rem;
  }
}
