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;
}

.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;
}

.lang-iconmobile {
  width: 25px;
  cursor: pointer;

}

.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;
}










.secao1 {
  height: 100vh;
  background: #000000 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.secao1 .video-fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
}

.camadona {
  position: absolute;
  inset: 0;            /* ocupa toda a seção */
  z-index: 5;
  pointer-events: none; /* opcional: não bloquear cliques */
}

/* Imagem dentro da camada */
.camadona img {
  width: 100%;
  height: 100%;
  object-fit: fill;     /* DEFORMA para caber certinho */
  display: block;
}

.logo-fundo {
  position: absolute;
  width: 60vw;
  max-height: 60vh;
  z-index: 2;
}























.secao2 {
  min-height: 50vh;
  padding: 40px 10%;
  text-align: center;
  display: flex;
  flex-direction: row;
  background: linear-gradient(
    to bottom,
    #000000 20%,
    #4b4b4b 100%
  );
}

.imagens {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


.quem-somos {
  width: 50%;
  border-radius: 10px;
}

.quem-somos2 {
  width: 50%;
  border-radius: 10px;
}

.sobre-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  gap: 60px;
}

.sobre-esquerda {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  text-align: left;
}

.sobre-esquerda p {
  padding-bottom: 20px;
}

.sobre-container h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.sobre-container h3 {
  display: none;
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}

.sobre-container p {
  font-size: 21px;
  line-height: 1.6;
}

.botoes {
  display: flex;
  width: 100%;
  gap: 12px;            /* ← cria o vão entre os botões */
}

.botao {
  flex: 1;
  background: white;
  color: black;
  padding: 14px 0;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;   /* ← cada um vira um botão separado */
  text-align: center;
}




.sobre-direita{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.card-contato {
  text-align: left;
  background: rgb(158, 158, 158);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-contato h2 {
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.card-contato p {
  text-align: left;
}

/* blocos */
.contato-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10%;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  margin-bottom: 20px;
  cursor: pointer;
}

.contato-item:hover {
  text-decoration: none;
  color: inherit;
  opacity: 0.9;
}

.contato-item p {
  margin: 0;
  font-size: 100%;

  white-space: nowrap;      /* impede quebrar linha */
  overflow: hidden;         /* esconde o excesso */
  text-overflow: ellipsis;  /* mostra ... */
}

.contato-item .texto {
  min-width: 0;   /* MUITO IMPORTANTE em flexbox */
  flex: 1;
}

.contato-item.email {
  background: #242424;
}

.contato-item.whatsapp {
  background: #242424;
}

.contato-item.instagram {
  background: #242424;
}

/* ícones */
.contato-item .icone {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-item svg {
  width: 24px;
  height: 24px;
  stroke: rgb(0, 0, 0);
  fill: none;
  stroke-width: 2;
}

/* texto */
.contato-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}


.redes {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 30px;
}

.redes img {
  width: 40px;
  height: auto;
}

.redes a {
  font-size: 2.2rem;
  text-decoration: none;
  color: black;
  transition: transform 0.2s;
}

.redes a:hover {
  transform: scale(1.15);
}












































/* Rodapé */
.rodape {
    background: linear-gradient(
    to bottom,
    #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;
}

.secao1 {
    height: 60vh;
}

.sobre-container {    
  padding-top: 8vh;
}

}

@media (max-width: 1250px) {
  .sobre-container {
  flex-direction: column;
  }
}

@media (max-width: 1080px) {
 .secao2 {
    padding: 0px 0px;
 }
}

@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 */
  }



}