/**
 * Seção Números – Torpedo de Voz (layout igual WhatsApp/RCS).
 * Fundo gradient voz, cards glass, número animado + label + descrição.
 */

.voz-stats-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.voz-stats-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--voz-gradient);
  z-index: 0;
}

.voz-stats-section .container {
  position: relative;
  z-index: 1;
}

.voz-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.voz-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.voz-stat-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
}

.voz-stat-card.voz-domino-item.visible,
.voz-stat-card.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.voz-stat-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.voz-stat-number {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.voz-stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 8px;
}

.voz-stat-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

[data-theme="dark"] .voz-stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .voz-stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .voz-stat-label {
  color: rgba(255, 255, 255, 0.98);
}

[data-theme="dark"] .voz-stat-desc {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .voz-stats-section {
    padding: 60px 0;
  }

  .voz-stats-grid {
    grid-template-columns: 1fr;
  }

  .voz-stat-number {
    font-size: 2.5rem;
  }
}