body {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}/* Menu */
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* Reduzido para evitar excesso de espaço */
  padding: 10px 20px;
  background-color: #1f4e696d;
  color: white;
  position: fixed;
  top: -16px; /* Removido top: -17px para evitar corte */
  width: 100%;
  z-index: 1000;
  box-sizing: border-box; /* Garante que padding não aumente a largura */
}

.menu li {
  list-style: none;
}

.menu .link {
  text-decoration: none;
  color: white;
  font-size: 16px;
  padding: 8px 12px;
  transition: background 0.3s;
}

.menu .link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

/* Media Queries para Responsividade */
@media (max-width: 1024px) {
  .menu {
    gap: 10px;
    padding: 8px 15px;
  }
  .menu .link {
    font-size: 14px;
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .menu {
    gap: 8px;
    padding: 8px 10px;
    justify-content: center;
    flex-wrap: wrap; /* Permite que os links quebrem em várias linhas se necessário */
  }
  .menu .link {
    font-size: 12px;
    padding: 5px 8px;
  }
}

@media (max-width: 480px) {
  .menu {
    gap: 5px;
    padding: 6px 10px;
  }
  .menu .link {
    font-size: 10px;
    padding: 4px 6px;
  }
}
header {
  text-align: center;
  padding: 100px 20px;
  position: relative;

}
section {
  padding: 40px;
  margin: 20px auto;
  max-width: 1100px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#sobre{
    text-align: center;
    position: relative;
    display: flex;
    font-size: 1.01em;
  }

.area:hover {
  transform: scale(1.05);
  }


.socios-container {
      width: 100%;
      max-width: 1100px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      justify-content: center;
    }
.socio {
      background: rgb(255, 255, 255);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 10px 10px rgba(10, 10, 10, 0.5);
      text-align: center;
      flex: 1;
      
      transition: transform 0.3s ease-in-out;
      overflow-x: hidden;
    }
.socio:hover {
    transform: scale(1.07);
    }
.socio img { 
      width: 100%;
      border-radius: 10px;
    }


.link{
  color: #000000;
  font-family: 'Arial', sans-serif;
  margin: 10px; 
  text-decoration:none;
  
}
.links{
  overflow-x: hidden;
  transition: transform 0.5s ease-in-out;}

.links:hover {
    transform: scale(1.05);
    }


@media (max-width: 1108px) {
  body{
    font-size: 14px;
  }
  header {
    padding: 50px 20px;
  }

  section {
    padding: 20px;
    max-width: 70%;
  }

  #areas .area, #fundadores .socio {
    width: 90%;
    font-size: 16px;
    padding: 20px;
  }

  #fundadores .socios-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  section img {
    max-width: 30vw;
  }

  #fundadores .socios-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  #fundadores .socio {
    width: 90%;
    max-width: 400px;
    font-size: 10px;
  }

  #areas, #areas .area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    font-size: 10px;
  }
}

/* ================================
         video de fundo
   ================================*/
   .home-video{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 300%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
  }
  .video-vw{
    width: 100%;
    height: 150%;
    overflow-x: hidden;
  }
  @media (max-width: 768px) {
    body{
      overflow-x: hidden;
    }
    .home-video{
      right: 0;
      bottom: 0;
      position:fixed;
      height: 200%;
      width: 150%;
      overflow-x: hidden;
    }
    .video-vw{
      width: 100%;
      height: 150%;
      overflow-x: hidden;
    }
  }
/* ================================
         barra de rolagem
   ================================*/
   html, body {
    overflow-x: hidden; /* Impede a rolagem horizontal */
    overflow-y: auto; /* Mantém apenas a rolagem vertical */
  }
  
  /* Para navegadores que usam WebKit (Chrome, Edge, Safari) */
  html::-webkit-scrollbar {
    width: 10px;
    border-radius: 5px;
  }
  html::-webkit-scrollbar-track {
    background: #63636370;
  }
  html::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 2.5px;
  }
  html::-webkit-scrollbar-thumb:hover {
    background: #555;
  }