html, body {
  font-family: 'Montserrat', sans-serif;
  scroll-snap-type: y mandatory;
  margin: 0;
  padding: 0;
}






/* Animação de fade-in branco quando entra no site */
.fade-in {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background-color: rgb(0, 0, 0);
  z-index: 9999;

  animation: fadeOut 1.5s ease forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}












.cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh / 8);
  background-color: #000000;
  color: white;

  display: flex;
  align-items: center;   /* centraliza verticalmente */
  padding-left: 20px;    /* espaço da esquerda */
  z-index: 10;

  transition: top 0.3s ease;
}

.lang-icon {
  margin-left: 18px;
  width: 25px;
  cursor: pointer;
}

.lang-iconmobile {
  width: 25px;
  cursor: pointer;

}

.menu {
  display: flex;
  margin-left: auto;
  padding-right: 5%;
  align-items: center;
}

.menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;

  margin-left: auto;   /* empurra para a direita */
  margin-right: 50px;    /* espaço de 5% da tela */
}

.menu-mobile {
  position: fixed;
  top: 0;
  right: 0;

  width: 100%;
  height: 100vh;

  background-color: #000000;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 30px;

  transform: translateX(100%);
  transition: transform 0.3s ease;

  z-index: 999;
}

.menu-mobile a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.fechar {
  position: absolute;
  top: 30px;
  right: 30px;

  font-size: 32px;
  color: white;
  cursor: pointer;
}

.menu-mobile.active {
  transform: translateX(0);
}

.logo {
  height: 7vh;
  width: auto;
  display: block; 
}

.cabecalho a {
  display: inline-block;
}

.cabecalho a .logo {
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}









/* ===== Seção ===== */
.secao1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100vh;
  background: #0d0d0d;
  color: #e5e5e5;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.Equipe-container {
  padding-top: calc(100vh / 12);
}

.Equipe-container h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.Equipe-container p {
  color: #a1a1a1;
  margin-bottom: 50px;
}

/* ===== Grid de cartões ===== */
.cartões {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== Cartão ===== */
.cartão {
  background: linear-gradient(145deg, #141414, #1c1c1c);
  border-radius: 18px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* brilho suave */
.cartão::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.cartão:hover::before {
  opacity: 1;
}

.cartão:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}

/* ===== Foto ===== */
.foto-membro {
  width: 100%;
  height: 150px;
  object-fit: scale-down;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, border 0.3s;
}

.cartão:hover .foto-membro {
  transform: scale(1.08);
  border-color: #888;
}

/* ===== Nome ===== */
.cartão h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ===== Cargo ===== */
.cartão p {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 18px;
}

/* ===== Ícones sociais ===== */
.cartão a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 4px;
  border-radius: 10px;
  background: #121212;
  transition: all 0.3s ease;
}

.cartão a:hover {
  background: #2a2a2a;
  transform: translateY(-3px);
}

.cartão a img {
  width: 18px;
  height: 18px;
  filter: grayscale(100%) brightness(1.8);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.cartão a:hover img {
  filter: none;
  transform: scale(1.1);
}


.bancodetalentos {
  display: flex;
  align-items: center;      /* centraliza na vertical */
  justify-content: center;  /* centraliza na horizontal */
  text-align: center;

  min-height: 100%;          /* ocupa toda a altura do cartão */
  padding-bottom: 20px;
  cursor: pointer;
}


.cta-link {
  text-decoration: none; /* remove sublinhado */
  color: inherit;        /* mantém a mesma cor do texto */
  display: block;        /* deixa toda a área clicável */
}

















.cta-projetos {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 5vh;
  background: #0d0d0d;
  color: #e5e5e5;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.espacoprojetos h1 {
  font-size: 25px;
  font-weight: 100;
  padding-bottom: 15px;
}

.botao-projetos {
  background: white;
  color: black;
  padding: 14px 14px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;   /* ← cada um vira um botão separado */
  text-align: center;
}

























/* Rodapé */
.rodape {
    background: linear-gradient(
    to bottom,
    #0d0d0d,
    #4b4b4b
    );
  color: white;
  padding: 20px;
  text-align: center;
}

.logo-rodape {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

@media (max-width: 510px) {

.sobre-container h3 {
  display: flex;
  }

.cabecalho {
  height: calc(100vh / 10);
}

.contato-item {
    padding: 5%;
}

.contato-item p {
  display: none;
    font-size: 100%;
}

.card-contato h2 {
    font-size: 10vw;
}

.card-contato {
    padding: 20px 20px;
}

.sobre-esquerda {
    width: 80%;
}

.sobre-direita {
   width: 90%;

}

.logo {
    height: 5vh;
}

.sobre-container {    
  padding-top: 8vh;
}

}

@media (max-width: 1250px) {
  .sobre-container {
  flex-direction: column;
  }
}

@media (max-width: 1080px) {
  .cartões {
    grid-template-columns: 1fr; /* apenas uma coluna */
  }
}

@media (max-height: 900px) {
/* quando a tela é baixa e
 isso afeta a responsividade dos conteúdos */

}

@media (max-height: 810px) {
/* quando a tela é muito baixa e
 isso afeta a responsividade dos conteúdos */

}

@media (max-width: 1024px) {
     /* Essa é a largura máxima, será usada para mobiles */

  .menu {
    display: none;      /* esconde o menu */
  }
  .hamburger {
    display: block;     /* mostra o sanduíche */
  }



}