/* Menu compartilhado: composição e cores da referência Season. */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap');
.dogma-hero .nav,
.guide-page .guide-header .nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: none;
  height: 81px;
  min-height: 81px;
  margin: 0;
  padding: 12px max(20px, calc((100vw - 1240px) / 2));
  background: rgba(10, 14, 23, .98);
  backdrop-filter: blur(10px);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.dogma-hero .brand { position: static; flex-shrink: 0; }
.dogma-hero .brand img,
.guide-header .brand img {
  display: block;
  width: 108px;
  height: 57px;
  object-fit: contain;
  filter: none;
}
.dogma-hero .nav-links {
  position: static;
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0;
  border: 0;
  background: none;
  font: 600 .85rem/1.6 Montserrat, Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.dogma-hero .nav-links > a:not(.panel-button) {
  padding: 8px 0;
  white-space: nowrap;
  color: #94a3b8;
  text-shadow: none;
  transition: color .3s ease;
}
.dogma-hero .nav-links > a:first-child { margin-left: auto; }
.dogma-hero .nav-links > a::after,
.dogma-hero .nav-links > a::before { display: none; }
.dogma-hero .nav-links > a:not(.panel-button):hover,
.dogma-hero .nav-links > a:not(.panel-button).active { color: #ff4fbd; }
.dogma-hero .nav-links > a.panel-button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  height: 37px;
  min-height: 37px;
  padding: 8px 20px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #9b4dff, #ff4fbd);
  color: #000;
  font: 700 .8rem/1.6 Montserrat, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: none;
  transition: box-shadow .3s ease, transform .3s ease;
}
.dogma-hero .nav-links > a.panel-button:hover {
  color: #000;
  box-shadow: 0 0 20px rgba(255,79,189,.5);
  transform: translateY(-2px);
}
.dogma-hero .panel-button span { display: none; }
.dogma-hero .menu-toggle { display: none; }
.dogma-hero .nav-links a:focus-visible,
.dogma-hero .menu-toggle:focus-visible { outline: 2px solid #ff4fbd; outline-offset: 5px; }
.guide-page .guide-header {
  height: 81px;
  min-height: 81px;
  background: #0a0e17 !important;
  border: 0;
}
.guide-page .class-explorer { height: calc(100svh - 81px); }
@media (max-width: 1100px) {
  .dogma-hero .nav, .guide-page .guide-header .nav { gap: 20px; }
  .dogma-hero .nav-links { gap: 20px; font-size: .75rem; }
  .dogma-hero .nav-links > a.panel-button { padding: 8px 14px; font-size: .72rem; }
}
@media (max-width: 900px) {
  .dogma-hero .nav, .guide-page .guide-header .nav { padding: 12px 20px; }
  .dogma-hero .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border: 0;
    background: none;
    color: #e0e6ed;
    cursor: pointer;
  }
  .dogma-hero .menu-toggle span { display: block; width: 24px; height: 2px; background: #e0e6ed; }
  .dogma-hero .menu-toggle b { font: 600 9px Montserrat, Arial, sans-serif; margin-top: 3px; }
  .dogma-hero .nav-links, .guide-header .nav-links {
    display: none;
    position: absolute;
    inset: 81px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px;
    background: rgba(10,14,23,.98) !important;
    border: 0;
    border-bottom: 1px solid rgba(255,79,189,.15);
    max-height: calc(100svh - 81px);
    overflow-y: auto;
    font-size: .85rem;
  }
  .dogma-hero .nav-links.open { display: flex; }
  .dogma-hero .nav-links > a:first-child { margin-left: 0; }
  .dogma-hero .nav-links > a:not(.panel-button) { padding: 10px 0; }
  .dogma-hero .nav-links > a.panel-button { margin: 8px 0 0; padding: 8px 20px; font-size: .8rem; height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .dogma-hero .nav-links > a { transition: none; }
  .dogma-hero .nav-links > a.panel-button:hover { transform: none; }
}
