/* AJUSTE FINAL DOS CARDS DE ESTATÍSTICAS */

/* Hero Stats Container - Ajustado para 2 cards */
.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.5rem !important;
  width: 100% !important;
  max-width: 400px !important;
  margin: 0 auto !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(20px) !important;
  border-radius: 20px !important;
  padding: 1.5rem !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

/* Card individual - estilo refinado */
.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 15px; /* Mais respiro vertical */
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  min-height: 120px;
}

/* Números - laranja */
.stat-card .number {
  color: #F15A29;
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px; /* Espaçamento entre número e legenda */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Legendas - branco e centralizado */
.stat-card .label {
  color: #FFFFFF;
  font-size: 0.75rem; /* Reduzido para caber melhor */
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: normal;
  text-align: center;
  width: 100%;
  word-spacing: 0.1em; /* Espaçamento entre palavras */
}

/* Desktop - quebra de linha para "A MAIS EM VENDAS" */
@media (min-width: 769px) {
  .stat-card .label.break-desktop {
    white-space: pre-line;
    line-height: 1.4; /* Melhor espaçamento entre linhas */
  }
}

/* Mobile - responsividade completa */
@media (max-width: 768px) {
  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    padding: 1.5rem !important;
    max-width: 90% !important;
    margin: 0 auto !important;
  }

  .stat-card {
    width: 100%;
    padding: 25px 20px;
    min-height: 100px;
  }

  .stat-card .number {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .stat-card .label {
    font-size: 0.8rem;
  }

  .stat-card .label.break-desktop {
    white-space: normal; /* Mobile: "A MAIS EM VENDAS" em uma linha */
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .stat-card {
    padding: 20px 15px;
  }

  .stat-card .number {
    font-size: 1.75rem;
  }

  .stat-card .label {
    font-size: 0.75rem;
  }
}

/* Cards de números na seção inferior - mesma consistência */
.numbers-section .number-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 2.5rem 1.5rem !important;
  min-height: 180px !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

.numbers-section .number-value {
  color: #F15A29 !important;
  font-family: var(--font-display, 'Bebas Neue', sans-serif) !important;
  font-size: 3rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  margin-bottom: 12px !important;
}

.numbers-section .number-label {
  color: var(--navy, #0C3B6B) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-align: center !important;
}