/* CSS para menu mobile ajustado */

/* Menu Mobile Styles */
.menu-mobile-trigger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* Esconde qualquer botão menu-toggle antigo */
.menu-toggle {
  display: none !important;
}

.menu-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 1001;
  padding: 20px;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.menu-mobile.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}

.menu-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.menu-mobile-close {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.menu-mobile-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-mobile-items a {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.menu-mobile-items a.btn-gradient {
  border: none;
  margin-top: 20px;
  text-align: center;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--brand-a), var(--brand-b));
  color: white;
  font-weight: 600;
  padding: 14px 24px;
}

/* Media query para dispositivos móveis */
@media (max-width: 768px) {
  .menu-desktop {
    display: none;
  }
  
  .menu-mobile-trigger {
    display: block;
  }
  
  .logo img {
    max-width: 100px;
  }
}
