* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }




  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}


html {
    overflow-x: hidden; /* Remove o scroll horizontal */
    overflow-y: scroll; /* Garante que o scroll vertical esteja presente */
}

html::-webkit-scrollbar {
    width: 12px; /* Largura do scrollbar */
}

html::-webkit-scrollbar-track {
    background: #202020; /* Cor da trilha do scrollbar */
}

html::-webkit-scrollbar-thumb {
    background-color: #FF0077; /* Cor do polegar do scrollbar */
    border-radius: 20px; /* Borda arredondada do polegar */
    border: 3px solid #202020; /* Borda do polegar */
}

  
  a {
    color: #ff0000;
    text-decoration: none;
    transition: 0.5s;
  }
  
  a:hover {
    opacity: 0.7;
  }
  
  .logo {
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 4px;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    background: #000000;
    height: 5vh;
  }
  
  main {

    background: url("img.banner/transferir\ \(1\).jpg") no-repeat center center;
    background-size: cover;
    height: 10vh;
   
  }
  
  .nav-list {
    list-style: none;
    display: flex;
    z-index: 2;
    font-size: 25px;
  }
  
  .nav-list li {
    letter-spacing: 3px;
    margin-left: 32px;
        box-shadow: #ff0054;
   
  }
  
  .mobile-menu {
    display: none;
    cursor: pointer;

    
  }
  
  .mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
    
 
  }
  
  @media (max-width: 999px) {
    body {
      overflow-x: hidden;
    }
    .nav-list {
      position: absolute;
      top: 8vh;
      right: 0;
      width: 60vw;
      height: 92vh;
      background: #0c0c0c;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;
      font-size: large;
    }
    .nav-list li {
      margin-left: 0;
      opacity: 0;
    }
    .mobile-menu {
      display: block;
    }
  }
  
  .nav-list.active {
    transform: translateX(0);
  }
  
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
  }
  
  .mobile-menu.active .line2 {
    opacity: 0;
  }
  
  .mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
  }





  
  body {
    font-family: 'Roboto', sans-serif;
    color: #333;
  }
  
  header {
    background-color: #000000;
    padding: 20px;
    text-align: center;
  }
  
  .logo {
    color: #ff0000;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .dev-info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
  }
  
  .container {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    padding: 40px;
    transition: transform 0.3s ease;
  }
  
  .dev-text {
    flex: 1;
    padding-left: 30px;
    text-align: justify;
  }
  
  .dev-text h1 {
    font-size: 36px;
    color: #e74c3c;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .dev-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ff0000;
  }
  
  .dev-text p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000b81;
  }
  
  .dev-text h3 {
    margin-top: 20px;
    color: #ff002b;
    font-weight: 700;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 5px;
    font-size: 21px;
  }
  
  .dev-text ul {
    list-style: disc;
    margin-left: 20px;
    line-height: 1.6;
    color: #000b81;
    font-size: 22px;
  }
  
  .dev-photo img {
    width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .dev-photo img:hover {
    transform: scale(1.05);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      padding: 20px;
      transform: scale(0.95);
    }
  
    .dev-photo img {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .dev-text {
      padding-left: 0;
    }
  
    .dev-text h1 {
      font-size: 28px;
    }
  
    .dev-text h2 {
      font-size: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .dev-text h1 {
      font-size: 24px;
    }
  
    .dev-text h2 {
      font-size: 18px;
    }
  
    .dev-text p,
    .dev-text h3 {
      font-size: 16px;
    }
  
    .dev-text ul {
      font-size: 14px;
    }
  }





  .video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Garante que o vídeo fique no fundo */
  }
  
  .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta o vídeo para cobrir toda a tela */
  }
  




  /* Responsividade */
  @media (max-width: 768px) {
    .membros {
      flex-direction: column;
      align-items: center;
    }
  
    .membro {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      width: 100px;
    }
  
    .btn {
      padding: 8px 16px;
    }
  }