/* Overlay escuro quando menu está aberto */
.menu-overlay {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Nav links responsivo */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

/* Menu mobile estilizado - Ocupa tela inteira */
.nav-links.mobile-active {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--azul-medio);
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 100px 20px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
}

.nav-links.mobile-active.show {
  transform: translateX(0);
}

/* Links do menu mobile */
.nav-links.mobile-active .nav-link,
.nav-links.mobile-active .atendimento-btn {
  width: 100%;
  padding: 15px;
  margin: 5px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-links.mobile-active .nav-link:hover,
.nav-links.mobile-active .atendimento-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

/* Prevenir scroll quando menu está aberto */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Ajuste para o header quando menu está aberto */
header {
  transition: all 0.3s ease;
}
