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 */
  justify-content: center;
  padding-left: 20px;    /* espaço da esquerda */
  z-index: 10;

  transition: top 0.3s ease;
}

.menu {
  margin-left: auto;
  padding-right: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  gap: 50px;
}
.hero-imagem {
  padding-top: 10vh;
}

.hero-imagem img {
  border-radius: 35px;
  max-height: 80vh;
  max-width: 100%;
}

.hero-frase {
  color: white;
  font-size: 2vw;
  font-weight: 400;
  max-width: 600px;
}

.hero-frase span {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
}



















.secao1 {
  min-height: 50vh;
  padding: 80px 10%;
  background: #0075b9;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  transition: height 0.4s ease;
}

.sobre-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  gap: 60px;
}

.sobre-esquerda {
  width: 50%;
  text-align: left;
}

.sobre-container h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.sobre-container p {
  font-size: 21px;
  line-height: 1.6;
}

.botoes {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.botao {
  background: white;
  color: black;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
}

.botao-secundario {
  background: transparent;
  color: white;
  border: 2px solid white;
}






































.contato {
  min-height: 100vh;
  padding: 20px 20px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    #0075b9 0%,
    #ffffff 100%
  );
}

/* Title container with icon aligned to the left */
.contato-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: nowrap; /* keep icon and title on the same line */
}

.contato-titulo .titulo-icone {
  width: 48px;
  height: auto;
  display: inline-block;
  margin-left: 5%;
  margin-right: 5px;
  flex-shrink: 0;
}

.contato-titulo h1 {
  margin: 0;
  padding: 0;
  font-size: 40px;
  color: #ffffff;
}

.sub {
  font-size: 25px;
  color: #ffffff;
  margin-bottom: 50px;
}

.card-contato {
  background: white;
  max-width: 480px;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  width: 100%;
  
}
.card-contato span {
  width: 40px;
  height: auto;
}
.card-contato h2 {
  text-align: center;
  color: #0050ac;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 20px;
  text-decoration: none;
  cursor: pointer;
}

/* Links dentro dos blocos de contato devem herdar a cor roxa e não ter sublinhado */
.card-contato .info a,
.card-contato .info a:visited,
.card-contato .info a:hover,
.card-contato .info a:active {
  color: #000000;
  text-decoration: none;
}

/* Links dentro dos blocos de contato devem herdar a cor roxa e não ter sublinhado */
.card-contato .info a,
.card-contato .info a:visited,
.card-contato .info a:hover,
.card-contato .info a:active {
  color: #0075b9;
  text-decoration: none;
}

.contato-wrapper {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* FORMULÁRIO */
.form-contato form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-contato label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: #000000;
}

.form-contato input,
.form-contato textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  background: #dbf4ff;
  font-size: 1rem;
  font-family: inherit;
}

.form-contato input:focus,
.form-contato textarea:focus {
  outline: 2px solid #000000;
}

.form-contato button {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  border: none;
  background: #0075b9;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.form-contato button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,.2);
}

.info span {
  font-size: 1.8rem;
  color: #000000
}

.info strong {
  color: #0075b9;
  text-align: left;
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
}

.info p {
  color: #0075b9;
}



.email {
  background: #dbf4ff;
}

.whatsapp {
  background: #dbf4ff;
}

.endereco {
  background: #dbf4ff;
}

.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 {
  text-align: center;

}
.rodape P {
  font-size: 14px;
}

.rodape h2 {
  font-size: 14px;
  color: #aaa;
  font-weight: 300;
  padding: 10px;
}

.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 */
  }



}