/* Estilos gerais */
* {
    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: 24px;
    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: 10vh;
  }
  
  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:18px;
  }
  
  .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;
    }
    .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);
  }


 
  
  .equipe {
    padding: 40px;
    text-align: center;
  }
  
  .equipe h2 {
    margin-bottom: 40px;
    color: #d400ff;
    font-size: 60px;
  }
  
  .membros {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .membro {
    background-color: #000000;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.1);
    padding: 30px;
    margin: 15px;
    text-align: center;
    width: calc(20% - 30px);
    border-radius: 10px;
    
    
  }
  
  .membro img {
    width: 250px; /* Ajuste o tamanho da imagem para maior visibilidade */
    height: 250px; /* Define uma altura fixa para manter a proporção */
    object-fit: cover; /* Ajusta a imagem para cobrir a área sem distorção */
    border-radius: 50%; /* Torna a imagem circular */
    margin-bottom: 15px;
}


  
  .membro h3 {
    margin-bottom: 10px;
    font-size: large 30px ;
    color: #00ffc8;
  }
  
  .membro p {
    margin-bottom: 10px;
    color: #ff0000;
    font-size: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #ff1900;
    color: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 20px;
  }
  
  .btn:hover {
    background-color: #c0392b;
  }
/* Estilos para resolução Desktop (1440x1024) */
@media (min-width: 1024px) {
  .membro img {
    width: 250px; /* Tamanho adequado para tela maior */
    height: 250px;
  }
}

/* Estilos para resolução Tablet (834x1194) */
@media (max-width: 1024px) and (min-width: 768px) {
  .membro img {
    width: 200px; /* Ajuste menor para tablets */
    height: 200px;
  }
}

/* Estilos para resolução Smartphone (390x844) */
@media (max-width: 768px) {
  .membro img {
    width: 150px; /* Tamanho menor para smartphones */
    height: 150px;
  }
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
  .membros {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 21px;
  }

  .membro {
    width: calc(50% - 40px); /* Mostra 2 membros por linha em tablets */
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .membros {
    flex-direction: column;
    align-items: center;
  }

  .membro {
    width: 80%; /* Ocupa a maior parte da tela */
    margin-bottom: 20px;
  }
}

.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 */
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');


  
  /* Estilos do Footer */
  .footer {
    background-color: #1a1a1a;
    color: #ffd700;
    padding: 40px 30px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    top: 20px;
  }
  
  .footer-logo h3 {
    color: #ff4c4c;
    font-family: 'Cinzel', sans-serif;
    font-size: 26px;
    margin-bottom: 40px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex-basis: 30%;
    margin-bottom: 20px;
  }
  
  .footer-section h4 {
    color: #ff0077;
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .footer-section p, .footer-section ul, .footer-section a {
    color: #f0e1d1;
    line-height: 1.8;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #00ffc8;
    transition: color 0.3s ease;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ff7b7b;
    margin-top: 20px;
  }
  
  .social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #ff7b7b;
  }
  
  .social-icons a:hover {
    color: #ff4c4c;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-section {
      flex-basis: 100%;
    }
  
    .social-icons a {
      margin-right: 10px;
    }
  }
  
  /* 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;
    }
  }