@charset "utf-8";
/* CSS Document */
/* =========================
   SECCIÓN AIRBOSS STATS (CONTADORES)
========================= */
.airboss-stats-section {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 44, 91, 0.8), rgba(0, 44, 91, 0.8)),
              url('../../images/capacidad-industrial.webp') center/cover;
  color: white;
  position: relative;
}

.stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stats-text h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 30px;
  transform: none;
  display: block;
}

.stats-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.stats-numbers {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stat-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-item p {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #c40000;
  line-height: 1;
}

/* RESPONSIVE COUNTERS */
@media (max-width: 1200px) {
  .stats-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .airboss-stats-section {
    padding: 40px 0;
  }
  
  .stats-text h2 {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stats-numbers {
    gap: 30px;
  }
  
  .stat-item {
    padding-bottom: 20px;
  }
}
