/* Card externo — fundo branco com cantos arredondados sobre o amarelo */
.promoCard {
  width: 100%;
  background: var(--c-surface);
  border-radius: 24px;
  padding: 16px 14px 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}

/* Badge "ATENÇÃO" — pílula azul escuro centralizada */
.promoCard__head {
  width: 100%;
  display: flex;
  justify-content: center;
}

.promoCard__badge {
  display: inline-block;
  background-color: #151e2c;
  color: #FFFFFF;
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 50px;
  text-align: center;
  white-space: nowrap;
}

/* Dois cards de stat lado a lado */
.promoCard__stats {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 18px 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat__label {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #151e2c;
  line-height: 1.3;
  text-align: center;
}

.stat__value {
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #151e2c;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
