.stats-section {
  position: relative;
  padding: 60px 20px;
  margin-bottom: 20px;
  text-align: center;
  background: url('/images/manitos.png') no-repeat center/cover;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/manito2.png') no-repeat center/cover;
  z-index: 1;
}

.stats-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.stat-box {
  border-radius: 10px;
  padding: 5px;
  flex: 1 1 200px;
  max-width: 250px;
  color: #ffffff;
}

.stat-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.stat-box span {
     color: #56a4f7;
}

.stat-box .counter {
  font-size: 32px;
  font-weight: bold;
  display: block;
}

.stat-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stat-content img {
  width: 50px;
  height: 50px;
}

/* Responsivo */
@media (max-width: 768px) {
  .stats-section {
    padding: 15px 5px; /* un poco más de aire que antes */
    background-size: cover;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 15px; /* espacio moderado entre cada caja */
  }

  .stat-box {
    margin: 0;
    padding: 8px 5px; /* más relleno interno */
    flex: none;
    max-width: 100%;
  }

  .stat-box h3 {
    margin-bottom: 5px;
  }

  .stat-content img {
    width: 50px;
    height: 50px;
  }
}

