/* Destaque no menu OUTLET */
nav a[href*="outlet"],
.menu a[href*="outlet"],
a[href*="/outlet"] {
  background-color: #b6ff3f !important;
  color: #000 !important;
  font-weight: bold !important;
  border-radius: 8px !important;
  padding: 8px 14px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  
  /* Alinhamento */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: initial !important; /* <-- ADICIONE ESTA LINHA */
}

/* Efeito hover (mouse em cima) */
nav a[href*="outlet"]:hover,
.menu a[href*="outlet"]:hover,
a[href*="/outlet"]:hover {
  background-color: #99cc33 !important;
  color: #000 !important;
}