/* === Painel Administrativo === */
  
.hero-painel {
  text-align: center;
  padding: 50px;
  background-color: #f8f9fa;
}

    .hero-painel h1 {
      font-family: 'Poppins', sans-serif;
       color: #004080;      
    }

    .hero-painel a {
      color: white;
      text-decoration: none;
    }

    .hero-painel a:hover {
        text-decoration: underline;
    }

    .container-painel {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .container-painel h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #004080;
    }

    .grid-painel {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .card-painel {
      background-color: white;
      width: 250px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s;
    }

    .card-painel:hover {
      transform: translateY(-5px);
    }

    .card-painel h3 {
      color: #004080;
      margin-bottom: 10px;
    }

    .card-painel p {
      font-size: 14px;
      color: #555;
    }

    .btn-painel {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      background: #004080;
      color: white;
      text-decoration: none;
      border-radius: 5px;
    }

    .btn-painel:hover {
      background: #003366;
    }   

    @media (max-width: 768px) {
      .grid-painel {
        flex-direction: column;
        align-items: center;
      }
    } 
 

/* === Painel Navegação do Professor === */      

    .container-professor {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .container-professor h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #004080;
    }

     .grid-professor {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

     .card-professor {
      background-color: white;
      width: 250px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s;
    }  
    

    .card-professor:hover {
      transform: translateY(-5px);
    }

    .card-professor h3 {
      color: #004080;
      margin-bottom: 10px;
    }

    .card-professor p {
      font-size: 14px;
      color: #555;
    }

    .btn-professor {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      background: #004080;
      color: white;
      text-decoration: none;
      border-radius: 5px;
    }

    .btn-professor:hover {
      background: #003366;
    }   

    @media (max-width: 768px) {
      .card-professor {
        flex-direction: column;
        align-items: center;
      }
    }
    
/* === Cadastro do Professor === */  


/* Por enquanto esta utilizando códigos usuário*/

