/* ==== SECCIÓN MALLA CURRICULAR ==== */
.malla-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
  padding: 80px 40px;
  color: #1a1a1a;
  text-align: center;
  margin: 100px auto 0;
  width: 100%;
  max-width: 100%;
  border-top: 4px solid #25d366;
  border-bottom: 4px solid #25d366;
  box-shadow: inset 15px 0 25px rgba(0, 0, 0, 0.05), /* sombra izquierda */
              inset -15px 0 25px rgba(0, 0, 0, 0.05), /* sombra derecha */
              0 6px 25px rgba(0, 0, 0, 0.05);         /* sombra general */
  animation: fadeIn 1s ease-out;
}

/* Contenido centrado */
.malla-texto {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

/* Título */
.malla-texto h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0b4121;
}

/* Descripción */
.malla-texto p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* ==== Beneficios ==== */
.malla-beneficios {
  list-style: none;
  padding: 25px 35px;
  margin: 0 auto 40px;
  text-align: left;
  display: inline-block;
  background: #f1fff6;
  border-radius: 16px;
  border-left: 5px solid #25d366;
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.08);
}

.malla-beneficios li {
  margin: 12px 0;
  font-size: 1.05rem;
  color: #1c4e2e;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.malla-beneficios i {
  color: #25d366;
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.malla-beneficios li:hover i {
  transform: scale(1.2);
  color: #128c7e;
}

/* ==== Botón WhatsApp ==== */
.btn-malla {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-malla i {
  font-size: 1.4rem;
}

.btn-malla:hover {
  background: #1ebe5b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* ==== Animación ==== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==== Responsividad ==== */
@media (max-width: 992px) {
  .malla-section {
    padding: 60px 25px;
    border-radius: 0;
    box-shadow: inset 10px 0 20px rgba(0, 0, 0, 0.04),
                inset -10px 0 20px rgba(0, 0, 0, 0.04);
  }

  .malla-texto h2 {
    font-size: 1.8rem;
  }

  .malla-beneficios {
    padding: 20px;
    box-shadow: none;
  }
}

@media (max-width: 600px) {
  .malla-section {
    padding: 50px 20px;
  }

  .malla-texto h2 {
    font-size: 1.5rem;
  }

  .malla-texto p {
    font-size: 0.95rem;
  }

  .malla-beneficios li {
    font-size: 0.95rem;
  }

  .btn-malla {
    width: 100%;
    max-width: 320px;
  }
}