/* === Ajuste responsivo: métricas do hero sem compressão ===
   A caixa .hero__facts é irmã do .hero__content. Como o .hero usa flex,
   é necessário empilhar os blocos em coluna para a área de métricas não
   ficar espremida na lateral em notebooks/monitores menores. */
.hero {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

.hero__content {
  flex: 0 0 auto;
}

.hero__facts.container,
.hero__facts {
  flex: 0 0 auto;
  width: min(100% - clamp(40px, 8vw, 150px), var(--container)) !important;
  margin: clamp(34px, 4vw, 56px) auto 0 !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)) !important;
  gap: 1px;
  background: var(--line);
  overflow: hidden !important;
}

.hero__facts > div {
  min-width: 0;
  padding: clamp(22px, 2.4vw, 30px) clamp(18px, 2.2vw, 28px);
  background: var(--black-2);
  border-right: 0 !important;
  border-bottom: 0 !important;
}

.hero__facts strong {
  font-size: clamp(34px, 3.4vw, 44px);
  line-height: .95;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero__facts span {
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.35;
  max-width: 22ch;
}

/* Tablets: mantém leitura sem a caixa invadir o conteúdo principal */
@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero__facts.container,
  .hero__facts {
    width: min(100% - 48px, var(--container)) !important;
  }
}

/* Celular: mantém respiro lateral e deixa a área ocupar o fluxo normal */
@media (max-width: 680px) {
  .hero__facts.container,
  .hero__facts {
    width: min(100% - 34px, var(--container)) !important;
    margin-top: 32px !important;
  }

  .hero__facts strong {
    font-size: clamp(32px, 9vw, 38px);
  }
}
