/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Rafale', sans-serif;
  background-color: #ffffff; /* fundo branco limpo */
  color: #2b2b2b;
  overflow-x: hidden;
}

/* ===== CORES ===== */
:root {
  --dourado: #B68D40;
  --dourado-escuro: #8c6c31;
}

/* ===== CABEÇALHO ===== */
header {
  text-align: center;
  padding: 40px 20px 20px;
  color: var(--dourado);
}

header h1 {
  font-family: 'Alex Brush', cursive;
  font-size: clamp(40px, 5vw, 68px);
  color: var(--dourado);
  margin-bottom: 10px;
}

header h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
  color: var(--dourado-escuro);
  font-weight: 700;
}

header h3 {
  font-size: 18px;
  color: var(--dourado-escuro);
  opacity: 0.9;
}

main {
  padding-top: 30px; /* Melhor transição para o conteúdo */
}

.consultoria {
  border-top: 1px solid rgba(182, 141, 64, 0.2); /* Divisor suave entre o header e o conteúdo */
  padding-top: 40px;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.slide-up {
  opacity: 0;
  animation: slideUp 1.4s ease-out forwards;
  animation-delay: 0.3s;
}

/* ===== SEÇÃO CONSULTORIA ===== */
.consultoria {
  max-width: 720px;  /* Largura otimizada */
  margin: 0 auto;    /* Centraliza o conteúdo */
  padding: 40px 20px; /* Respiro nas laterais */
}

.consultoria h2 {
  font-size: 32px;
  margin-bottom: 45px;
  color: var(--dourado-escuro);
  text-align: left;
}

/* Blocos de conteúdo */
.bloco {
  margin-bottom: 40px;
}

.bloco h3 {
  font-size: 20px;
  color: var(--dourado);
  margin-bottom: 14px;
  font-weight: 700;
}

.bloco p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #333;
}

/* Bloco de destaque */
.bloco.destaque {
  background-color: rgba(182, 141, 64, 0.06);
  border-left: 4px solid var(--dourado);
  padding: 24px 26px;
  border-radius: 6px;
}

.consultoria h2 {
  font-size: 32px;  /* Maior destaque ao título */
  margin-bottom: 35px;
  text-align: left;  /* Alinhado à esquerda para mais autoridade */
}

.consultoria p {
  font-size: 16px;
  line-height: 1.75; /* Aumento do espaçamento entre linhas */
  margin-bottom: 20px; /* Mais espaçamento entre parágrafos */
  color: #333;
}

.botao-voltar {
  display: inline-block;
  background-color: var(--dourado);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.botao-primario {
  display: inline-block;
  background-color: var(--dourado);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  margin-top: 35px; /* Distância maior para destacar */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.botao-primario:hover {
  background-color: var(--dourado-escuro);
  transform: scale(1.05);  /* Leve aumento no hover */
}

.botao-voltar:hover {
  background-color: var(--dourado-escuro);
  transform: scale(1.05);
}

.menu-secundario {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 35px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.menu-secundario span {
  color: var(--dourado);;
  font-weight: 400;
  margin-right: 10px;
}

.menu-secundario a {
  text-decoration: none;
  color: var(--dourado);;
  margin: 0 8px;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.menu-secundario a:hover {
  background-color: var(--dourado-escuro);
  color: #ffffff;
  transform: scale(1.05);
}

/* ===== RODAPÉ ===== */
footer {
  text-align: center;
  font-size: 14px;
  color: var(--dourado-escuro);
  padding: 20px 10px;
  border-top: 2px solid rgba(182, 141, 64, 0.2);
}

footer p {
  margin: 5px 0;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

.slide-up {
  opacity: 0;
  animation: slideUp 1.4s ease-out forwards;
  animation-delay: 0.3s;
}

.fade-in-delayed {
  opacity: 0;
  animation: fadeIn 1.4s ease-out forwards;
  animation-delay: 0.6s;
}
@media (max-width: 768px) {

  header h1 {
    font-size: 42px;
  }

  header h2 {
    font-size: 24px;
  }

  .consultoria {
    padding: 30px 16px;
  }

  .consultoria h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .bloco h3 {
    font-size: 18px;
  }

  .bloco p {
    font-size: 15px;
  }

  .botao-primario {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}
