
  /* Reset CSS para garantir consistência entre navegadores */
* {
box-sizing: border-box; /* Facilita o controle do padding e margin */
margin: 0; /* Remove margem padrão */
padding: 0; /* Remove preenchimento padrão */
font-family: "Plus Jakarta Sans";
font-size: 16px; 

}

html {
scroll-behavior: smooth; /* Suaviza a rolagem para âncoras */
font-family: "Plus Jakarta Sans";
font-size: 16px; 
background-color: #121212 ; /* Cor de fundo suave */
}

/* Estilo Global */
body {
padding: 0;
margin: 0;
font-family: "Plus Jakarta Sans"; /* Fonte padrão */
background-color: #121212 ; /* Cor de fundo suave */
color: #fff; /* Cor de texto padrão */
line-height: 1.6; /* Aumenta a legibilidade */
font-size: 18px;
}

/* Remover estilo de lista padrão */
ul {
list-style: none; /* Remove os marcadores de lista */
padding: 0; /* Remove o preenchimento */
margin: 0; /* Remove a margem */
}

/* Ajuste de links */
a {
color: #7BB0FF; /* Cor dos links */
text-decoration: none; /* Remove o sublinhado */
transition: color 0.3s ease; /* Efeito de transição suave */
}

a:hover {
color: #7BB0FF; /* Cor dos links ao passar o mouse */
}

/* Estilo global para parágrafos */
p {
  font-family: "Plus Jakarta Sans"; /* Fonte limpa e moderna */
  font-size: 18px; /* Tamanho de fonte padrão mais equilibrado */
  line-height: 1.7; /* Espaçamento entre linhas para melhor legibilidade */
  color: #f4f4f4; /* Cor mais suave (branco gelo) para não ser tão forte quanto o branco puro */
  margin-bottom: 1.5rem; /* Espaçamento maior entre parágrafos */
  /* text-align: justify; Justificação para aparência mais organizada e formal */
  /* text-justify: inter-word;  Ajusta o espaçamento entre palavras em textos justificados */
  hyphens: auto; /* Permite a quebra de palavras automaticamente, evitando grandes espaços em justificação */
}

/* Ajustes para links dentro de parágrafos */
p a {
  color: #7BB0FF; /* Cor azul suave para links */
  text-decoration: underline; /* Sublinhado para destaque */
  transition: color 0.3s ease, text-decoration 0.3s ease; /* Transição suave para interações */
}

p a:hover {
  color: #7BB0FF; /* Cor mais escura para links ao passar o mouse */
  text-decoration: none; /* Remove o sublinhado ao passar o mouse para um visual mais limpo */
}

/* Estilo para links visitados */
p a:visited {
  color: #7BB0FF; /* Cor de link visitado (um azul mais suave) */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  p {
    font-size: 16px; /* Reduz o tamanho da fonte para telas pequenas */
    line-height: 1.5; /* Ajusta o espaçamento entre linhas para facilitar a leitura em telas menores */
    margin-bottom: 1rem; /* Menor espaçamento inferior para economizar espaço em telas menores */
  }

  p a {
    font-size: 15px; /* Ajusta o tamanho do link em telas pequenas */
  }
}


/* Estilo para H1 */
h1 {
  font-family: "Plus Jakarta Sans"; /* Fonte principal */
  font-size: 40px; /* Tamanho maior para o título principal */
  color: #fff; /* Cor escura para impacto visual */
  margin-bottom: 1rem; /* Espaçamento inferior */
  text-align: center; /* Centraliza o título */
}

/* Estilo para H2 */
h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 2rem; /* Levemente menor que o H1 */
  font-weight: bold;
  color: #7BB0FF;
  margin-bottom: 0.8rem;
  text-align: left; /* Alinhamento padrão à esquerda */
  border-bottom: 2px solid #7BB0FF; /* Linha decorativa */
  padding-bottom: 0.3rem;
}

/* Estilo para H3 */
h3 {
  font-family: "Plus Jakarta Sans";
  font-size: 1.75rem; /* Intermediário */
  color: #7BB0FF;
  margin-bottom: 0.7rem;
}

/* Estilo para H4 */
h4 {
  font-family: "Plus Jakarta Sans";
  font-size: 1.3rem; /* Menor que H3 */
  font-weight: 600; /* Peso reduzido */
  color: #7BB0FF;
  margin-bottom: 0.6rem;
}

/* Estilo para H5 */
h5 {
  font-family: "Plus Jakarta Sans";
  font-size: 1.25rem; /* Pequeno, mas distinto */
  font-weight: 600;
  color: #7BB0FF;
  margin-bottom: 0.5rem;
  text-transform: uppercase; /* Letras maiúsculas para destaque */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }
}






.submit-button {
  background-color: #7BB0FF; /* Cor do botão principal */
  gap: 20px;
  color: white;
  padding: 10px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  
  width: 22%; /* Largura padrão */
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra leve */
}

/* Hover interativo */
.submit-button:hover {
  background-color: #94C023; /* Tom mais escuro no hover */
  color: #222; /* Cor do texto no hover */
  transform: scale(1.05); /* Leve ampliação */
}

/* Estilo responsivo */
@media (max-width: 1024px) {
  .submit-button {
      width: 40%; /* Aumenta a largura em tablets */
      font-size: 14px; /* Texto ligeiramente menor */
  }
}

@media (max-width: 768px) {
  .submit-button {
      width: 60%; /* Aumenta ainda mais a largura em dispositivos móveis */
      font-size: 13px; /* Reduz o tamanho da fonte */
      padding: 12px; /* Ajusta o espaçamento interno */
  }
}

@media (max-width: 480px) {
  .submit-button {
      width: 80%; /* Quase toda a largura da tela */
      font-size: 12px; /* Texto menor para dispositivos muito pequenos */
      padding: 14px; /* Mais espaçamento para toque confortável */
  }
}

/* NAVBAR PRINCIPAL */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1c1c1c;
  text-transform: uppercase;
  font-size: 15px;
  height: 65px;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo a img {
  height: 40px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logo a img:hover {
  transform: scale(1.1);
}

/* LINKS DESKTOP */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ffd700;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ffd700;
  left: 0;
  bottom: -4px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* BOTÃO HAMBURGUER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.hamburger .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

/* MENU MOBILE */
.menubar {
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  background-color: #1c1c1c;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menubar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.menubar ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menubar ul li a {
  display: block;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menubar ul li a:hover,
.menubar ul li a.active {
  color: #ffd700;
  background-color: #2a2a2a;
}

/* RESPONSIVIDADE */
/* Estilo base para desktop */
.nav-links {
  display: flex;
}

.hamburger {
  display: none;
}

/* Até 900px: esconder menu e mostrar hamburger */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .menubar {
    display: none;
  }
  .menubar.show {
    display: block;
  }
}

/* Até 768px: tablets e celulares em modo paisagem */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  header {
    padding: 10px;
  }
}

/* Até 480px: celulares em modo retrato */
@media (max-width: 480px) {
  body {
    font-size: 12px;
  }
  .logo {
    font-size: 18px;
  }
  .btn {
    width: 100%;
  }
}





/* Base Styles */
.container12 {
  max-width: 1170px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
ul, li {
  list-style: none;
  padding-left: 0;
}

