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;
}











/* ===== FAQ ===== */
.faq {
  margin-top: calc(100vh / 8);
  min-height: 100%;
  background: #0d0d0d;
  color: #e5e5e5;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

/* ===== Accordion ===== */
.faq details {
  background: linear-gradient(145deg, #141414, #1c1c1c);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.faq details:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.9);
}

/* título */
.faq summary {
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
}

/* remove seta padrão */
.faq summary::-webkit-details-marker {
  display: none;
}

/* seta custom */
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

/* texto */
.faq p {
  margin-top: 12px;
  color: #a1a1a1;
  line-height: 1.6;
  font-size: 0.95rem;
}


















/* Rodapé */
.rodape {
  background: linear-gradient(
    to bottom,
    #0d0d0d 1%,
    #4b4b4b 100%
  );
  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 */
  }



}