/* ===== SECCIÓN MODELO PEDAGÓGICO ===== */

.modelo-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #f5f7fb, #eef2ff);
  text-align: center;
  font-family: 'Poppins', sans-serif;
    
}

.modelo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.modelo-header .subtitulo {
  color: #1e3a8a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
    
}

.modelo-header h2 {
  font-size: 2.5rem;
  margin: 15px 0;
  color: #1e3a8a;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
    
}

.modelo-header p {
  max-width: 700px;
  margin: 0 auto 70px;
  color: #555;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
    
}

/* GRID */
.modelo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.modelo-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.modelo-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* ÍCONO */
.modelo-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* TITULO */
.modelo-card h3 {
  color: #264653;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* TEXTO */
.modelo-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .modelo-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .modelo-cards {
    grid-template-columns: 1fr;
  }
}
