/* CSS exclusivo do menu principal AC Nacional */
.menu-responsivo {
  width: 100%;
  background: #f8fafc;
  border-bottom: none;
  min-height: 80px;
  position: relative;
  z-index: 100;
}
.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  width: 100%;
  position: relative;
}
.menu-logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
  height: 80px;
}
.menu-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo-compacta {
  height: 64px;
  width: auto;
  margin-right: 0;
  box-shadow: none !important;
  filter: none !important;
  transition: none;
}
.menu-list {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.menu-list li a, .submenu-btn {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 8px;
  border-radius: 4px;
  transition: background .2s, color .2s;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-list li a:hover, .submenu-btn:hover {
  background: #e6eef7;
  color: #478ac9;
}
.has-submenu {
  position: relative;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  display: block;
}
.has-submenu.submenu-open > .submenu {
  display: block;
}
.has-submenu > .submenu-btn:after {
  content: " \f078";
  font-family: 'FontAwesome';
  font-size: 0.8em;
  margin-left: 4px;
  vertical-align: middle;
  pointer-events: none;
}
.submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #f8fafc;
  min-width: 160px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 0 0 6px 6px;
  z-index: 999;
  padding: 4px 0;
  list-style: none;
}
.submenu li {
  list-style: none;
}
.submenu li a {
  padding: 8px 16px;
  font-size: 0.98rem;
  color: #1a1a1a;
  font-weight: 500;
  border-radius: 0;
  background: none;
}
.submenu li a:hover {
  background: #e6eef7;
  color: #478ac9;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  z-index: 200;
}
.menu-hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: #1a1a1a;
  position: relative;
}
.menu-hamburger::before,
.menu-hamburger::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #1a1a1a;
  position: absolute;
  left: 0;
}
.menu-hamburger::before { top: -8px; }
.menu-hamburger::after { top: 8px; }
@media (max-width: 900px) {
  .menu-container {
    padding: 0 4px;
  }
  .menu-logo {
    height: 56px;
    margin-right: 8px;
  }
  .logo-compacta {
    height: 40px;
  }
}
@media (max-width: 768px) {
  .menu-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 2px;
  }
  .menu-logo {
    height: 48px;
    margin-right: 0;
  }
  .logo-compacta {
    height: 36px;
  }
  .menu-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #f8fafc;
    border-bottom: 1px solid #eee;
    z-index: 150;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    align-items: flex-start;
    padding: 16px 0 8px 0;
  }
  .menu-list.menu-open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .submenu {
    position: static;
    min-width: 100vw;
    box-shadow: none;
    border-radius: 0;
  }
}
