header {
            background: rgba(0, 0, 0, 0);
            color: white;
            padding: 15px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
        }
        .menu-icon {
            font-size: 23px;
            cursor: pointer;
            margin-left: 20px;
			margin-top: 20px;
            display: flex;
            align-items: center;
            font-weight: bold;
        }
        .menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        }
        .menu.active {
            opacity: 1;
            visibility: visible;
        }
        .menu ul {
            list-style: none;
            padding: 0;
            text-align: center;
			text-transform: uppercase;
        }
        .menu ul li {
            padding: 20px;
        }
        .menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: bold;
        }
        .close-menu {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            cursor: pointer;
            color: white;
        }

.lang-switcher {
  margin-left: auto;
  margin-right: 20px;
  margin-top: 9px;
}

#language-switcher {
  border: none;
  background-color: transparent;              /* fallback */
  /*background-color: rgba(0, 60, 63, 0.5);    Safari OK */
  color: #fff;
  font-size: 0.9rem;
  margin-left: auto;
  padding: 0.5rem 2rem 0.5rem 0.75rem !important;      /* espaço para a seta */
  border-radius: 0.5rem;
  line-height: 1.2;

  /* remove o estilo nativo */
  -webkit-appearance: none;
  appearance: none;

  /* seta SVG branca (funciona no Safari e outros) */
  background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='white' stroke-width='2' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center; /* posiciona seta */
  background-size: 12px auto;
}

/* Para navegadores antigos (Edge/IE) — remove a seta nativa */
#language-switcher::-ms-expand {
  display: none;
}


@media (max-width: 768px) {  
    .menu ul li a {
        font-size: 20px;
    }	
}

/* Melhorias para o menu em mobile */
.menu-icon {
    font-size: 18px;
    margin-top: 10px;
}

.close-menu {
    font-size: 30px;
    top: 15px;
    right: 20px;
}

lang-button {
  background-color: #003C3F;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: 'Utendo', sans-serif;
}

.menu-link {
  color: white !important;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: #8ba4c1 !important; 
}

.custom-select {
  position: relative;
  display: inline-block;
  font-family: 'Utendo', sans-serif;
  margin-left: auto;
  margin-right: 20px;
  margin-top: 9px;
}

.custom-select .selected {
  background-color: transparent;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.custom-select .options {
  display: none;
  position: absolute;
  background-color: #2c2c2c;
  color: white;
  border-radius: 4px;
  margin-top: 2px;
  width: 100%;
  gap: 20px;
}

.custom-select .options div {
  padding: 6px 12px;
  cursor: pointer;
}

.custom-select .options div:hover {
  background-color: #444;
}

.custom-select.open .options {
  display: block;
}
