/* ===== SECCIÓN ESTADÍSTICAS ===== */
.about-section {
  position: relative;
  width: 100%;
  padding: 50px 20px;
  text-align: center;
  color: #ffffff;
  background: #1e3a8a; /* Fondo azul institucional */
}

/* Contenedor principal */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Título centrado */
.about-container h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.5em;
  margin-bottom: 60px;
  letter-spacing: 1px;
  color: #ffffff; /* Título en amarillo */
  text-align: center; /* centrado */
}

/* ===== INDICADORES ===== */
.indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;       /* centra indicadores horizontalmente */
  gap: 40px;
}

/* Cards */
.indicator {
  background: #ffd700;            /* card amarillo */
  color: #1e3a8a;                 /* texto azul institucional */
  border-radius: 10px;
  padding: 30px 20px;
  width: 180px;
  flex: 0 1 180px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  text-align: center;
}

.indicator:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.3);
}

/* Imagen */
.indicator img {
  width: 140px;
  height: 140px;
  border-radius: 10%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Número */
.indicator .number {
  font-size: 2.5em;
  font-weight: 800;
  color: #1e3a8a; /* azul para los números */
  margin-bottom: 10px;
}

/* Texto */
.indicator p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1e3a8a; /* azul institucional */
}

/* RESPONSIVE: apilar verticalmente en pantallas pequeñas */
@media (max-width: 992px) {
  .indicators {
    flex-direction: column;      /* apila los indicadores */
    align-items: center;         /* centra la columna */
    gap: 30px;
  }

  .indicator {
    width: 80%;                  /* ocupa más ancho en móvil */
    flex: none;                  /* quita flex-grow/shrink */
  }
}

/* ============================= */
/* ANIMACIÓN PROFESIONAL CARDS */
/* ============================= */

.animar-card {
  opacity: 0;
  transform: translateX(-80px) translateY(30px) rotate(-3deg);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.animar-card.visible {
  opacity: 1;
  transform: translateX(0) translateY(0) rotate(0);
}