#header{ 
    position: relative; 
    width: 100%;
    z-index: 1999;
    background-color: #000;
    background-image:url('../../assets/img/capa/3.webp');
    background-repeat:no-repeat;
    background-position:center center;
    background-size: cover;
    transition: all 2s ease;
    }
#header-content{
    position: relative;
    background-color: rgba(20, 10, 0, 0.3);
    }
#header-content-area{
    position: relative;
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    height: 600px;
    width: 100%;
    }
#header #header-logo{ position: relative;  }
#header #header-logo > a{ 
    display: block;
    margin-left: 20px;
    padding: 80px; 
    border: solid 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
}
#header #header-logo > a > img{
    width: 180px;
    filter: invert();
    /* Adiciona sombra à imagem SVG */
    filter: invert();
}
#header-menu{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    background-image: linear-gradient(to bottom, #111 0%, #333 100%);
    z-index: 30;
    border-top: solid 2px #FFFFFF11;
    border-bottom: solid 2px #00000005;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}
#header-menu[data-fixed='1']{
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: auto;
    }
#header-menu > ul{
    margin: 0;
    padding: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    }
#header-menu > ul > li{
    list-style: none;
    }
#header-menu > ul > li > a{
    display: block;
    padding: 25px 35px;
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 1rem;
    text-transform: uppercase;
    color: #FFF;
    transition: all 0.4s ease;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.40);
    }
#header-menu > ul > li > a:hover{
    background-color: rgba(0, 0, 0, 0.7);
    }
#header-menu > ul > li > a > img{
    width: 16px;
    filter: invert();
    margin-top: 0;
    transform: translateY(0px);
    }

/* Short header */
#header[data-short="1"] #header-content-area{
    height: 240px;
    }
#header[data-short="1"] #header-logo{
    transform: translateY(-32px);
    }
#header[data-short="1"] #header-logo > a{ 
    margin-left: 16px;
    padding: 24px; 
    }
#header[data-short="1"] #header-logo > a > img{
    width: 140px;
}

@media (max-width: 1600px) {}
@media (max-width: 1200px) {}
@media (max-width: 1024px) {}
@media (max-width: 840px) {}
@media (max-width: 720px) {
    #header-menu > ul > li > a{
        padding: 15px 25px;
        font-size: 0.9rem;
        }
}
@media (max-width: 600px) {
    #header-content-area{ 
        height: 400px;
        }
    #header #header-logo > a{ 
        margin-left: 16px;
        padding: 40px; 
        }
    #header #header-logo > a > img{
        width: 160px;
        }
    #header-menu > ul > li > a{
        padding: 16px 12px;
        font-size: 0.875rem;
        }
}
@media (max-width: 480px) {
    #header-content-area{ 
        height: 300px;
        }
    #header #header-logo > a{ 
        margin-left: 16px;
        padding: 32px; 
        background-color: rgba(0, 0, 0, 0.2);
        }
    #header #header-logo > a > img{
        width: 140px;
        }
    #header-menu > ul > li > a{
        padding: 16px 8px;
        font-size: 0.8rem;
        }
}
@media (max-width: 320px) {}