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 */


@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;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding-right: 5%;
}

.menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.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;
}

.lang-icon {
  margin-left: 18px;
  width: 25px;
  cursor: pointer;
}

.lang-iconmobile {
  width: 25px;
  cursor: pointer;

}








.hero {
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #000000 20%,
    #0075b9 70%,
    #fff 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.videos-youtube {
  padding-top: calc(100vh / 7);
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 90%;
  max-width: 700px; /* controla o tamanho geral */
  margin: 0 auto;
}

.videos-youtube img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videos-youtube img:hover {
  transform: scale(1.02);
}






















/* Rodapé */
.rodape {
  text-align: center;

}

.logo-rodape {
  margin-top: 25px;
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}


@media (max-width: 510px) {

.cabecalho {
  height: calc(100vh / 10);
}
}

@media (max-width: 1080px) {
 /* esse é um outro que diz respeito à largura da tela */

  .hero-container,
  .sobre-container,
  .contato-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-frase {
  color: white;
  font-size: 25px;
  font-weight: 400;
  }

  .sobre-esquerda {
  width: 100%;
  }

  .contato-form {
  width: 100%;
  }


  .info.email a {
    display: inline-block;
    max-width: 180px;       /* ajuste conforme seu layout */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }


}

@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 */

  .logo {
  height: 5vh;
  }


  .menu {
    display: none;      /* esconde o menu */
  }
  .hamburger {
    display: block;     /* mostra o sanduíche */
  }



}