/* ESTRUTURA DA BARRA DE NAVEGAÇÃO */
#flipbook-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px;
  background: #0D0D0D;
  flex-shrink: 0;
}

/* BOTÕES ANTERIOR E PRÓXIMO */
.nav-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #C9A84C;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.nav-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.7);
}

/* BOLINHAS (DOTS) DE PÁGINA */
.nav-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  transition: background 0.25s;
  cursor: pointer;
}

.nav-dot.ativo {
  background: #C9A84C; /* Bolinha dourada quando a página está ativa */
}

/* ESTILO DO RODAPÉ */
#rodape-site {
  text-align: center;
  padding: 10px 16px 14px;
  font-size: 10px;
  color: rgba(201, 168, 76, 0.3);
  letter-spacing: 1px;
  background: #0D0D0D;
}