#docentes {
    padding: 40px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .docentes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .docente-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
  
  .docente-card img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    max-width: 120px;
    margin-bottom: 15px;
  }
  
  h1 {
    background-color: #7f1e20;
    color: #fff;
    text-align: center;
    padding: 20px;
}  