
  /* 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 */
  }
}

/*NAV BAR*/
nav {
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1C1C1C;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  font-weight: bold;
  font-size: 18px;
  height: 10%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

/* LOGO */
nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 30px;
  margin-right: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* MENU */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Espaçamento entre os itens */
  padding: 0;
  margin: 0;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  padding: 8px 10px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
nav ul li.active a,
.menubar ul li.active a {
    color: #f5a623;
    font-weight: bold;
    border-bottom: 2px solid #f5a623;
}




/* MENU RESPONSIVO */
.hamburger {
  display: none; /* Escondido por padrão */
  cursor: pointer;
}

.hamburger .line {
  width: 10px;
  height: 0px;
  background-color: #f0f0f0;
  display: block;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

/* MENU MOBILE */
.menubar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10% 0;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.5s ease-in;
  z-index: 20;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.active {
  display: flex;
}

.menubar ul {
  padding: 0;
  list-style: none;
  text-align: center;
}

.menubar ul li {
  margin-bottom: 24px;
}

.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  padding: 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  nav ul {
      display: none; /* Esconde o menu principal */
  }

  .hamburger {
      display: block; /* Exibe o botão hamburguer */
  }

  .menubar ul {
      flex-direction: column;
  }
}


/* MENU DESKTOP */
@media (min-width: 769px) {
  nav ul {
      display: flex !important; /* Garante que o menu reapareça em telas grandes */
  }

  .hamburger {
      display: none; /* Esconde o botão hamburguer */
  }

  .menubar {
      display: none !important; /* Esconde o menu lateral em telas grandes */
  }
}

/* MENU MOBILE */
@media (max-width: 768px) {
  nav ul {
      display: none; /* Esconde o menu principal */
  }

  .hamburger {
      display: block; /* Exibe o botão hamburguer */
  }

  .menubar.active {
      display: flex; /* Mostra o menu lateral quando ativo */
  }
}


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

/* Footer Styles */
.footer {
  background-color: #ffffff;  /* Cor de fundo branca */
  padding: 70px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #333333;  /* Cor do texto escura */
  margin-top: 50px;
  padding-top: 30px;
}



/* Footer Column */
.footer-col {
  width: 25%;
  padding: 0 20px;
}

/* Footer Titles */
.footer-col h4 {
  font-size: 18px;
  color: #333333; /* Cor de título escura */
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: bold;
  position: relative;
}

/* Underline decoration for titles */
.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #007bff;  /* Cor azul */
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

/* Footer Links */
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  color: #7BB0FF;  /* Cor dos links */
  text-decoration: none;
  font-weight: bold;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a[href^="mailto:"],
.footer-col ul li a.footer-email,
.footer-email {
  text-transform: lowercase !important;
}

.footer-col ul li a:hover {
  color: #0056b3;  /* Cor do link ao passar o mouse */
  padding-left: 8px;
}

/* Social Links Styling */
.social-links a {
  display: inline-block;
  height: 45px;
  width: 45px;
  background-color: #7BB0FF;
  margin: 0 8px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  background-color: #86b300;
  color: #fff;
  transform: scale(1.1);
}


/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  margin: 20px 0;
}

.footer-bottom a.footer-link {
  display: inline-block;
  margin: 5px 0;
}

.footer-link {
  color: #007bff;  /* Cor azul para links */
  font-size: 14px;
  text-decoration: none;
}

.footer-link:hover {
  color: #0056b3;
}

.footer-credit {
  font-size: 12px;
}

.logo-footer {
  margin-top: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .footer-col {
      width: 50%;
      padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  .footer-col {
      width: 100%;
      padding: 10px;
  }
}


/* Estilo para o botão Ficha Técnica */
.ficha-tecnica-button {
  background-color: #7BB0FF; /* Cor de fundo azul */
  color: #ffffff;  /* Cor do texto branco */
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.ficha-tecnica-button:hover {
  background-color: #86b300;  /* Cor de fundo azul mais escura ao passar o mouse */
  transform: scale(1.05);  /* Efeito de aumento suave ao passar o mouse */
}
