/* ========================================
   ESTILOS DO MENU SECUNDÁRIO
   ======================================== */
.menu-secundario {
  background-color: var(--bg-menu-sec);
  /* bege do menu principal */
  padding: 1px 0;
  height: 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  justify-content: center;
  display: flex;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.menu-secundario nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.menu-secundario ul {
  justify-content: center;
  align-items: center;
  position: relative;
  left: 30px;
  right: 0%;
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-secundario ul li a {
  font-family: "Georgia", serif;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  color: var(--text-primary);
  /* #8a6447 */
  transition: .2s ease;
}

.menu-secundario ul li a:hover {
  color: var(--accent-gold);
  /* #e99517d7 */
  text-decoration: underline;
}

/* Botão igual ao da primeira imagem */
.btn-cadastro {
  background: var(--accent-dark);
  padding: 9px 25px;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-family: Arial, sans-serif;
  transition: .2s ease;
}

.btn-cadastro:hover {
  filter: brightness(1.1);
  background: var(--accent);
}

.banner,
.menu-secundario,
header {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}