header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    backdrop-filter: blur(8px);}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;}

.brand{
    display:flex;
    gap:14px;
    align-items:center;}

.logo{
    width:46px;
    height:46px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    font-weight:700;
    font-family:'Cinzel',serif;
    box-shadow:0 6px 28px rgba(212,175,55,0.12);}

.logo img{
    height: 55px;
    width: auto;
    cursor: pointer;}

.brand h1{
    font-size:1rem;
    margin:0;
    font-weight: 700;
    font-family:'Cinzel',serif;}

.brand p{
    margin:0;
    font-size:0.8rem;
    color:var(--muted);}

nav ul{
    display:flex;
    gap:18px;
    list-style:none;
    margin:0;
    padding:0;
    align-items:center;}

nav a{
    color:#ddd;
    text-decoration:none;
    font-weight:500;
    font-size:0.95rem;
    padding:8px 10px;
    border-radius:8px;}

nav a.cta{
    color:var(--principalColor);
    font-weight:700;
    box-shadow:0 8px 24px rgba(212,175,55,0.12);}

.navItemMobile{
    display: none;}

/* ---------------------- SELETOR ---------------*/
.language-select-wrapper {
    position: relative;
    margin: 0;}

/* Seletor visual */
#languageSelector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--colorNormalText);
    color: black;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 6px 30px 6px 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;}

/* Seta customizada */
.language-select-wrapper::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 0.6rem;
    color: black;
    pointer-events: none;}

#languageSelector:focus {
    border-color: var(--colorNormalText);
    background-color: var(--colorNormalText);}

#hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;}

#hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;}

/* Mobile */
@media (max-width: 1080px) {
    #menu {
        display: none;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        position: absolute;
        top: var(--top);
        left: 0;
        width: 100%;
        padding: 10px;
        border-radius: 0 0 5px 5px;}

    #menu.active {
        display: flex; }

    .navItem {
        text-align: center;
        width: 100%;}

    /* Seletor ocupa largura total no mobile */
    .language-select-wrapper {
        display: none;}

    .navItemMobile{
        display: block;}

    #hamburger-menu {
        display: flex;}
}