/* ===============================
   MENU SUPERIOR – ISOLADO E IDÊNTICO
   =============================== */

.topbar,
.topbar * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cinzel', serif !important;
}

/* HEADER */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 9999;
}

/* LOGO */
.topbar .logo {
  display: flex;
  align-items: center;
}

.topbar .logo img {
  height: 45px;
  display: block;
}

/* NAV CENTRAL */
.topbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px; /* mesmo espaçamento visual do site */
}

/* LINKS */
.topbar-nav a {
  color: #ddd !important;
  text-decoration: none !important;
  font-size: 15px !important;
  letter-spacing: 1.2px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.topbar-nav a:hover {
  color: #f5c16c !important;
}

/* AUTH */
.topbar .auth {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar .auth a {
  color: #ddd !important;
  text-decoration: none !important;
  font-size: 14px !important;
  letter-spacing: 1px;
}

/* BOTÃO REGISTRAR */
.topbar .btn-register {
  padding: 8px 18px;
  border: 1px solid #f5c16c;
  color: #f5c16c !important;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.topbar .btn-register:hover {
  background: #f5c16c;
  color: #000 !important;
}
