* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
  }
  
  header {
    background-color: #424e61;
    color: white;
    width: 100%;
    padding: 20px;
  }
  
  .cabecalho-itens {
    max-width: 1980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cabecalho-imagem {
    width: 6%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .titulo_site {
    padding: 50px;
    text-align: center;
    width: 50%;
    font-size: 30px;
  }
  
  .sociais {
    display: flex;
    justify-content: flex-end;
    width: 25%;
    padding-right: 30px;
  }
  
  .banner1 {
    display: flex;
    justify-content: center;
  }
  
  .estudante_titulo {
    padding: 50px;
    text-align: center;
  }
  
  .estudante-nome {
    text-align: center;
  }
  
  .estudante-imagem {
    width: 120px;
  }
  
  .estudante-icone {
    width: 38px;
    padding: 4px 8px;
  }
  
  .estudante {
    background-color: #2df788;
    padding: 24px 0;
    text-align: center;
  }
  
  .estudante-div {
    text-align: center;
    padding: 24px 0;
  }
  
  .estudantes_todos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .escola {
    background-image: linear-gradient(#40A2E3, #297bb3);
    color: white;
    padding: 24px 0;
    text-align: center;
  }
  
  .escola-titulo {
    padding: 50px;
    text-align: center;
  }
  
  .logo_rodape {
    height: 80px;
    padding: 12px 0;
  }
  
  .link {
    color: #ffffff;
    text-decoration: none;
  }
  
  /* style.css */

/* 1. Estado inicial: move o banner para cima e o torna invisível */
.banner1-oculto {
    opacity: 0;
    transform: translateY(-50px);
    transition: none; /* Garante que não haja transição antes de começar */
}

/* 2. Classe que dispara a animação */
.banner1-animado {
    /* Define a transição suave */
    transition: opacity 1s ease-out, transform 1s ease-out;
    opacity: 1;
    transform: translateY(0);
}
.oculto {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.visivel {
    opacity: 1;
    transform: translateY(0);
}