body{
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

#pagina{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header img{
    width: 18vw;
    height: 18vh;
}

header {
    background-color: #354d54 !important;
    width: 100%;
    height: 18vh;
    border: 1px solid white;
    display: flex;
    justify-content: space-between;
}

header h1{
    margin-top: 13%;
    font-size: 50px;
    color: white;

}

#vazio{
    width: 18vw;
    height: 18vh;
}

.sidebar {
    width: 250px;
    background-color: #333;
    color: white;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: -250px; /* Escondido inicialmente */
    transition: left 0.3s ease;
    z-index: 1000;
  }
 
  .sidebar.active {
    left: 0;
  }
 
  .sidebar h2 {
    margin-top: 0;
  }
 
  .sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
  }
 
  .sidebar ul li {
    margin: 15px 0;
  }
 
  .sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 8px;
    transition: background 0.3s;
  }
 
  .sidebar ul li a:hover {
    background-color: #575757;
  }
 
  /* Botão com seta */
  #toggle-btn {
    position: fixed;
    top: 20px;
    left: 0;
    width: 30px;
    height: 40px;
    background-color: #333;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    z-index: 1100;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: left 0.3s ease;
  }
 
  /* Ajuste a posição do botão quando o menu está aberto */
  .sidebar.active ~ #toggle-btn {
    left: 250px;
  }
 
  /* Conteúdo da página */
  .conteudo {
    margin-left: 20px;
    padding: 20px;
  }
 
   
  #toggle-btn {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 40px;
    background-color: #333;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    z-index: 1100;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: left 0.3s ease;
  }
 
  /* Quando o menu estiver ativo, mova a seta junto */
  .sidebar.active ~ #toggle-btn {
    left: 250px;
  }

  #navvazio{
    height: 200px;
  }

  #sidebar a{
    color: white;
  }

main{
    flex: 1;
    padding: 20px;
}

footer{
    background-color: #568fe8 !important;
    width: 100%;
    height: 120px;
    padding: 15px 0;
    border-top-left-radius: 80%;
    border-top-right-radius: 80%;
    text-align: center;
    color: black;
}

#footervazio{
    height: 30px;
}

.footervazio{
    height: 30px;
}

.team {
    text-align: center;
    padding: 50px 20px;
  }
  
  .team h1 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #ffffff;
  }
  
  .team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .member {
    background-color: #568fe8;
    padding: 20px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid white;
  }
  
  .member:hover {
    transform: scale(1.05);
  }
  
  .member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .member p {
    font-size: 1em;
    color: #ffffff;
    margin: 0;
  }
  
  .member span {
    display: block;
    font-size: 0.9em;
    color: #ffffff;
  }

  #container{
    width: 70%;
    color: white;
    margin: auto;
    padding: 30px;
    font-size: 1.3rem;
    text-align: center;
   
  }
  #descicao{
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  
  #justifica{
    text-align: justify;
  }
  
  
  iframe{
    border-radius: 5%;
  }