/* Números na home — fundo escuro, cabeçalho padrão da home, valores em gradiente (tipo +2 bilhões), traços verticais */

.home-numeros {
  position: relative;
  padding: clamp(64px, 10vw, 104px) 0;
  background: #000000;
  overflow: hidden;
}


.home-numeros .home-section-head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.home-numeros .home-section-kicker {
  color: #f0fdfa;
  background: rgba(19, 78, 74, 0.55);
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.home-numeros .home-section-title {
  color: #f8fafc;
}

.home-numeros .home-section-desc {
  color: rgba(148, 163, 184, 0.96);
}

.home-numeros .home-stagger-item {
  filter: none;
}

.home-numeros-blog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.home-numeros-blog-col {
  padding: 8px 0 8px clamp(22px, 4vw, 36px);
  border-left: 1px solid rgba(84, 160, 255, 0.42);
  text-align: left;
}

.home-numeros-blog-col:first-child {
  padding-left: 0;
  border-left: none;
}

.home-numeros-blog-value {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(105deg, #54a0ff 0%, #1dd1a1 55%, #5efce8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* “+” do +10 mais à frente / em destaque */
.home-numeros-value-plus {
  display: inline-block;
  margin-right: 0.02em;
  font-size: 1.28em;
  font-weight: 900;
  line-height: 1;
  vertical-align: -0.05em;
  transform: translateX(-0.14em);
  letter-spacing: 0;
  background: linear-gradient(105deg, #54a0ff 0%, #1dd1a1 55%, #5efce8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home-numeros-blog-value .home-numeros-value-prefix,
.home-numeros-blog-value .home-numeros-value-suffix {
  background: linear-gradient(105deg, #54a0ff 0%, #1dd1a1 55%, #5efce8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home-numeros-blog-value .home-numeros-value-prefix {
  font-weight: 800;
}

/* Roleta vertical (odômetro) — colunas 0–9 */
.home-numeros-roll {
  display: inline-flex;
  align-items: flex-end;
  vertical-align: baseline;
  line-height: 1.1;
}

.home-numeros-roll-col {
  display: inline-block;
  height: 1.1em;
  overflow: hidden;
  line-height: 1.1;
}

.home-numeros-roll-strip {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.home-numeros-roll-line {
  flex-shrink: 0;
  height: 1.1em;
  min-height: 1.1em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(105deg, #54a0ff 0%, #1dd1a1 55%, #5efce8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home-numeros-blog-label {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.88);
  max-width: 28ch;
}

.home-numeros-blog-col.is-counted .home-numeros-blog-value {
  animation: homeNumerosBlogPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes homeNumerosBlogPop {
  0% {
    transform: translateY(6px);
    opacity: 0.5;
    filter: blur(2px);
  }

  100% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-numeros-blog-col.is-counted .home-numeros-blog-value {
    animation: none;
  }

  .home-numeros-roll-strip {
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .home-numeros-blog-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-numeros-blog-col {
    padding: 20px 0 20px 0;
    border-left: none;
    border-top: 1px solid rgba(84, 160, 255, 0.35);
  }

  .home-numeros-blog-col:first-child {
    padding-top: 0;
    border-top: none;
  }

  .home-numeros-blog-label {
    max-width: 40ch;
  }
}