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;
}

.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: 50vh;
  background: linear-gradient(
    to bottom,
    #000000 20%,
    #0075b9 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.botapadding {
  padding: 40px;
}

.hero-content {

  max-width: 800px;
  padding-top: calc(100vh / 8);
  color: white;
}

















.conteudo-downloads {
  background: linear-gradient(
    to bottom,
    #0075b9 20%,
    #fff 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.download-item {
  background-color: #f9f9f9;
  border: 2px solid #000000;
  border-radius: 15px;
  padding: 20px;
  margin: 20px auto;
  max-width: 400px;
  text-align: center;
}

.download-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 15px;
  border: #000000 solid 1px;
}

.botoes-download {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
} 

.botoes-download .icon-download {
  border: none;
  max-width: 80px;
  max-height: 80px;
  margin-right: 8px;
  cursor: pointer;
}

.botoes-download .icon-download:hover {
  opacity: 0.8;
}

















/* Rodapé */
.rodape {
  text-align: center;

}

.logo-rodape {
  margin-top: 25px;
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}


@media (max-width: 510px) {

.hero-content h1 {
    font-size: 17px;
}


.download-item h2 {
  font-size: 17px;
}


.botoes-download .icon-download {
    max-width: 30px;
}

.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 {
  max-height: 5vh;
  }


  .menu {
    display: none;      /* esconde o menu */
  }
  .hamburger {
    display: block;     /* mostra o sanduíche */
  }



}