/* Variáveis de Cores */
:root {
  --primary-color: #14387d; /* Azul Marinho */
  --secondary-bg-color: #f0f0f0; /* Cinza Claro para fundos de seção */
  --text-color: #333; /* Cor de texto principal */
  --white: #fff;
  --gold-accent: #d2ad6c; /* Dourado sutil */
  --light-blue-bg: #eef2f7; /* Azul muito claro */
}

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300; /* Peso Light */
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--white);
  overflow-x: hidden;
}

/* Manter o container customizado, ele sobrescreverá o do Bootstrap se necessário */
.container {
  width: 90%;
  max-width: 1400px; /* Seu max-width customizado */
  margin: 0 auto;
  padding: 0 0px; /* Removendo padding lateral aqui, use padding classes do Bootstrap se necessário */
}

section {
  padding: 100px 0;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  color: var(--primary-color);
  font-weight: 700; /* Peso Bold */
}

h2 {
  font-size: 3.5em;
  text-align: center;
  margin-bottom: 20px; /* A classe mb-4 do Bootstrap no HTML cuida disso agora */
}

h3 {
   font-size: 2.4em;
   margin-bottom: 15px; /* A classe mb-3 ou mb-4 do Bootstrap no HTML pode cuidar disso */
   font-weight: 600; /* Peso Semibold */
}


.section-subtitle {
   font-size: 1.3em;
   text-align: center;
   margin-bottom: 80px; /* A classe mb-5 ou mb-4 do Bootstrap no container do título cuida disso */
   color: #666;
   font-weight: 400; /* Peso Regular */
}

/* --- Estilos do Ícone do Menu Fixo --- (Mantidos como estão) */
.menu-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  font-size: 1.8em;
  color: var(--white);
  cursor: pointer;
  background-color: var(--primary-color);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-icon:hover {
  color: var(--gold-accent);
  background-color: var(--gold-accent);
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* --- Fim Estilos do Ícone do Menu Fixo --- */


/* Estilos genéricos para botões (Mantidos como estão) */
.btn-saiba-mais {
  display: inline-block;
  background-color: var(--gold-accent);
  color: var(--primary-color);
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 35px;
  font-weight: 600;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-saiba-mais:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-empresa {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0 0 0;
}

.btn-empresa:hover {
  background-color: var(--gold-accent);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Media Queries Gerais (Alguns ajustes de font-size mantidos, espaçamento agora por Bootstrap) */
@media (max-width: 1024px) {
  section {
      padding: 80px 0;
  }
   h2 {
      font-size: 2.8em;
  }
   h3 {
       font-size: 2em;
   }
   .section-subtitle {
      font-size: 1.2em;
   }
   .btn-saiba-mais {
      padding: 14px 35px;
      font-size: 1.1em;
   }
   .btn-empresa {
      padding: 12px 25px;
      font-size: 0.95em;
   }
    /* Ajuste do ícone do menu fixo */
   .menu-icon {
      font-size: 1.6em;
      width: 50px;
      height: 50px;
      top: 15px;
      right: 15px;
   }
}

@media (max-width: 768px) {
  section {
      padding: 60px 0;
  }
   h2 {
      font-size: 2.2em;
  }
   h3 {
       font-size: 1.8em;
   }
  .section-subtitle {
      font-size: 1.1em;
  }
  .btn-saiba-mais {
      padding: 12px 30px;
      font-size: 1em;
  }
   .btn-empresa {
      padding: 10px 20px;
      font-size: 0.9em;
  }
   /* Ajuste do ícone do menu fixo */
   .menu-icon {
      font-size: 1.5em;
      width: 45px;
      height: 45px;
      top: 10px;
      right: 10px;
   }
}

@media (max-width: 480px) {
  section {
      padding: 40px 0;
  }
  h2 {
      font-size: 1.8em;
  }
  h3 {
      font-size: 1.5em;
  }
  .section-subtitle {
      font-size: 1em;
  }
  .btn-saiba-mais {
      padding: 10px 25px;
      font-size: 0.9em;
  }
   /* Ajuste do ícone do menu fixo */
   .menu-icon {
      font-size: 1.3em;
      width: 40px;
      height: 40px;
      top: 8px;
      right: 8px;
   }
}