/* Estilos para la navegación y submenu */
.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* .navigation a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
} */

/* .navigation a:hover {
  color: black;
} */

/* SUBMENÚ */

/* SELECT dentro del menú */
.nav-select {
  -webkit-appearance: none; /* Chrome, Safari */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* Estándar */

  background: transparent;
  border: none;
  padding: 8px 28px 8px 30px; /* espacio para ícono */
  font-size: 15px;
  color: black;
  cursor: pointer;
  line-height: 2;
  outline: none;
  position: relative;
}

/* .nav-select:hover {
  border-color: blue;
  color: blue;
} */

.nav-select .option {
  -webkit-appearance: none; /* Chrome, Safari */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* Estándar */
  color: #333 !important;
  background: #fff !important;
}
