/*=== Contadores - NUEVO DISEÑO LIMPIO ===*/
.contadores_home {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

/* Contenedor de cada ítem */
.counter-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Número */
.item-counter {
  font-size: 4rem;
  font-weight: 400;
  color: var(--primario);
  line-height: 1.1;
}

/* Texto */
.counter-title {
  font-size: 2rem;
  margin-top: 1rem;
  color: var(--azul-oscuro);
  text-align: center;
  display: block;
  white-space: nowrap;
}



/* Mobile ajustes */
@media (max-width: 767px) {
  .counter-section {
    padding: 2rem 1rem;
  }

  .item-counter {
    font-size: 3.8rem;
  }

  .counter-title {
    font-size: 1.6rem;
  }

  .contadores_home {
    margin-top: 2rem;
    margin-bottom: 0rem;
  }
}
