@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif;}
html, body { height: 100%; }
body { padding-top: 10vh; } /* compensa navbar fixa */

.navbar{
  position: fixed;
  top: 0;
  left: 0; right: 0;
  height: 10vh;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  z-index: 1000; /* fica acima do overlay do menu */
}

.navbar img{
  height: 9vh;
  min-height: 52px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #fff;
}

/* Desktop: menu horizontal normal */
.navOptions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navOptions a{
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  padding: 8px 10px;
}

/* Botão hamburger */
.menu-toggle{
  display: none;            /* só aparece no mobile */
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span{
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}

.menu-toggle span:nth-child(1){ top: 14px; }
.menu-toggle span:nth-child(2){ top: 21px; }
.menu-toggle span:nth-child(3){ top: 28px; }

/* Morfologia hambúrguer -> X */
.menu-toggle.active span:nth-child(1){ top: 21px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity: 0; }
.menu-toggle.active span:nth-child(3){ top: 21px; transform: rotate(-45deg); }


.banner{
  width: 100%;
}

.banner img{
  width: 100%;
}

.galeria{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.galeria1{
  display: flex;
  width: 100%;
}

.galeria1 img{
  width: 100%;
}

.galeria2{
  display: flex;
  width: 100%;
  margin-top: 2px;
}

.galeria2 img{
  width: 100%;
}

.galeria3{
  display: flex;
  width: 100%;
  margin-top: 2px;
}

.galeria3 img{
  width: 100%;
}

.linkcontato{
  width: 100%;
}

.linkcontato img{
  width: 100%;
  margin: 0;
  padding: 0;
}

.footer{
  display: flex;
  width: 100%;
  background: rgb(0,0,0);
  justify-content: space-between;
  text-align: center;
  align-items: center;
  padding: 2%;
}

.footer .endereco{
  width: 40%;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 0.6rem;
  color: white;
}

.footer .endereco .mapa{
  width: 100%;
}

.footer .redesSociais{
  width: 40%;
  display: flex;
  flex-direction: column;
  text-align: right;
  align-content: center;
  justify-content: center;
}

.footer .redesSociais a{
  text-decoration: none;
  cursor: pointer;
  color: white;
  padding: 2%;
}

.footer .redesSociais a:hover{
  color: aqua;
}

.contentSobre{
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 2%;
}

.colaboradores{
  background-color: rgb(255, 255, 255);
  border: 1px solid black;
  border-radius: 10px;
  width: 40%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  align-content: center;
}

.colaboradores img{
  width: 100%;
  padding: 1%;
  border-radius: 10px;
}

.contentParceiros{
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.contentParceiros .galeriaParceiros{
  width: 90%;
  display: flex;
  justify-content: space-evenly;
  border: 1px solid black;
  border-radius: 10px;
  padding: 2%;
  margin-top: 2%;
}

.contentParceiros .card{
  width: 42%;
  border: 1px solid black;
  border-radius: 10px;
}

.contentParceiros .card a{
  display: flex;
  width: 100%;
}

.contentParceiros .card img{
  width: 100%;
  border-radius: 10px;
  padding: 1%;
}




/* MOBILE */
@media (max-width: 768px){
  .menu-toggle{ display: inline-block; }

  /* Overlay do menu: fica abaixo da navbar e ANIMADO */
  .navOptions{
    position: fixed;
    top: 10vh;               /* exatamente abaixo da navbar */
    left: 0; right: 0;
    z-index: 999;            /* abaixo da navbar (1000) para o botão ficar clicável */
    display: block;          /* necessário pro max-height funcionar */
    max-height: 0;           /* escondido */
    overflow: hidden;
    background: rgba(0,0,0,0.96);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
  }

  .navOptions.active{
    max-height: 80vh;        /* altura máxima ao abrir (ajuste se quiser) */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navOptions a{
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 1.1rem;
  }

  .navOptions a:hover{
    color: aqua;
  }
  
  .contentParceiros .galeriaParceiros{
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border: 1px solid black;
  border-radius: 10px;
  padding: 2%;
  margin-top: 2%;
  }
}
