/* ============================================================
   SECCIÓN DATOS NUMÉRICOS
   ============================================================ */

.numeros {
  background: var(--color-bg-darker);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  position: relative;
  overflow: hidden;
}

/* Background con números gigantes apenas perceptibles */
.numeros__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  pointer-events: none;
  font-family: var(--font-sans);
  font-size: clamp(8rem, 24vw, 26rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(74, 139, 184, 0.04);
  line-height: 1;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
  filter: blur(1px);
}
.numeros__bg span {
  flex-shrink: 0;
}

/* Gradiente radial sobre el background */
.numeros::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(74, 139, 184, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.numeros .section__container {
  position: relative;
  z-index: 1;
}

.numeros__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.numero {
  text-align: left;
  padding: 1.5rem 0;
  border-left: 1px solid var(--color-border-soft);
  padding-left: clamp(1rem, 2vw, 2rem);
  position: relative;
  transition: transform 0.4s var(--ease-out-quart);
}
.numero:hover {
  transform: translateY(-6px);
}
.numero:first-child {
  border-left: none;
  padding-left: 0;
}

.numero__icon {
  width: 40px;
  height: 40px;
  color: var(--color-cyan-bright);
  margin-bottom: 1.25rem;
  opacity: 0.9;
  transition: transform 0.4s var(--ease-out-quart), opacity 0.3s ease-out;
  padding: 0.375rem;
  border-radius: 8px;
  background: rgba(74, 139, 184, 0.08);
  border: 1px solid rgba(74, 139, 184, 0.18);
}
.numero__icon svg {
  width: 100%;
  height: 100%;
}
.numero:hover .numero__icon {
  transform: scale(1.12);
  opacity: 1;
  background: rgba(74, 139, 184, 0.15);
}

.numero__value {
  display: flex;
  align-items: baseline;
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  margin: 0 0 0.875rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #B8CCDB 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.numero__value-suffix {
  font-size: 0.5em;
  font-weight: 600;
  margin-left: 0.15em;
  background: none;
  -webkit-text-fill-color: var(--color-cyan-electric);
  color: var(--color-cyan-electric);
}
.numero__label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.numero__caption {
  font-size: 0.8125rem;
  color: var(--color-text-faint);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .numeros__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
  .numero:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}
@media (max-width: 540px) {
  .numeros__grid {
    grid-template-columns: 1fr;
  }
  .numero {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--color-border-soft);
    padding-top: 1.5rem;
  }
  .numero:first-child {
    border-top: none;
    padding-top: 0;
  }
}
