/* ═══════════ SEÇÃO NÚMEROS / KPIS (FLEXBOX CLEAN) ═══════════ */
#numeros {
  background: #191613;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

#numeros .stats-container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

#numeros .stats-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* FLEXBOX EM LINHA */
#numeros .stats-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* ESTILO VISUAL DO CARD */
#numeros .stat-card {
  container-type: inline-size;
  container-name: statcard;
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #2a2a30;
  border-left: 3px solid var(--brand, #00f0ff);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background-color 0.3s ease,
              box-shadow 0.3s ease;
}

#numeros .stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 102, 0, 0.66);
  border-left-color: var(--brand, #fe5000);
}

/* WRAPPER: número + texto na mesma linha, com fallback seguro */
#numeros .stat-number-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: .6rem;
  row-gap: .1rem;
  margin-bottom: 1.2rem;
  min-width: 0;
}

#numeros .stat-plus,
#numeros .stat-text {
  font-family: var(--font-display, sans-serif);
  font-weight: 300;
  color: var(--brand, #fe5000);
  line-height: 1.1;
}

#numeros .stat-plus {
  font-size: clamp(1.5rem, 7cqi, 3rem);
  white-space: nowrap;
  flex-shrink: 0;
}

#numeros .stat-text {
  font-size: clamp(1rem, 4.7cqi, 2rem);
}

#numeros .stat-desc {
  color: #ffffff;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

#numeros .stat-source {
  color: var(--white-dim, #a1a1aa);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: auto;
}

#numeros .stats-action {
  margin-top: 3.5rem;
  text-align: center;
}

/* RESPONSIVO: Empilha no Mobile */
@media (max-width: 768px) {
  #numeros .stats-grid {
    flex-direction: column;
  }
  
  #numeros .stat-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ═══════════ SEÇÃO PROVA SOCIAL (ISOLADA) ═══════════ */
#prova-social.ps-section {
  background: #191613;
  padding: clamp(3rem, 6vw, 5rem) 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.ps-container {
  width: 100%;
  margin: 0 auto;
}

.ps-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem auto;
  padding: 0 1.5rem;
}

.ps-eyebrow {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand, #00f0ff);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.ps-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #ffffff;
  font-weight: 400;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.ps-headline em {
  font-style: normal;
  color: var(--brand, #00f0ff);
}

.ps-body {
  color: var(--white-dim, #a1a1aa);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
}

/* CARROSSEL DESLIZANTE (MARQUEE) */
.ps-logo-wall {
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.ps-marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ps-marquee-slide 40s linear infinite;
  will-change: transform;
}

.ps-logo-wall:hover .ps-marquee-track,
.ps-logo-wall:active .ps-marquee-track {
  animation-play-state: paused;
}

.ps-marquee-group {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
  align-items: center;
  flex-shrink: 0;
}

.ps-logo-slot {
  width: 150px;
  height: 65px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.8rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.ps-logo-slot:hover {
  border-color: rgba(255, 98, 0, 0.737);
  background: rgba(255, 255, 255, 0.04);
}

.ps-logo-slot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.9) grayscale(0.2);
  transition: filter 0.3s ease;
}

.ps-logo-slot:hover img {
  filter: brightness(1) grayscale(0);
}

@keyframes ps-marquee-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .ps-marquee-group {
    gap: 1rem;
    padding-right: 1rem;
  }

  .ps-logo-slot {
    width: 130px;
    height: 55px;
    padding: 0.6rem;
  }
}