.estatisticas-container {
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 700px;
  margin: 0 auto;
  color: #222222;
}

.estatisticas-header h2 {
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 6px;
}

.estatisticas-header p {
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Lista de Botões */
.estatisticas-botoes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-estatistica {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #f8fafc;
  color: #003366;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  transition: all 0.15s ease-in-out;
}

.btn-estatistica:hover {
  background-color: #003366;
  color: #ffffff;
  border-color: #003366;
}

.seta {
  font-size: 1.1rem;
}