/* Estilos para el navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.navbar-links {
  color: #FFF;
  font-family: Euclid Circular B;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  height: 200px;
  background-color: transparent;
}

.logo img {
  width: 200px;
  height: auto;
}

nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 50%)
}

nav li {
  margin: 20px 0px;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: 50px;
}

.dropdown:focus-visible {
  outline: none;
}

.dropdown-select-mobile:focus-visible,
.dropdown-select:focus-visible {
  outline: none;
}

.dropdown-select-mobile,
.dropdown-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;

  color: #FFF;
  font-family: Euclid Circular B;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.dropdown-select-mobile {
  font-size: 30px;
}

.dropdown-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;

}

.language-select-option {}

.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
  display: none;
}

.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

.nav-links-mobile {
  display: none;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.5s ease-in-out;
}

option {
  color: black; /* Cambia el color de fuente de las opciones */
  font-size: 30px;
}

@media (min-width: 1200px) {

  .navbar {
    height: 90px;
  }

  .logo img {
    width: 100px;
  }

  nav ul {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    background-color: transparent;
    transform: translate(0%, 0%);
  }

  nav li {
    margin: 0px 10px;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }

  .navbar-links {
    font-size: 15px;
  }
}