#Header{
    height: 70px;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    font-family: var(--font-Destaque);
}

#logo{
    font-weight: 800;
    font-size: var(--logo-font);
    
}

#logo > a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.logo-ico{
    font-size: 1.5rem;
    color: var(--destaque);
    background-color: #00d9e856;
    border-radius: 10px;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
}

.text-logo{
    color: var(--destaque-branco);
}
.text-logo::after{
    content: "NOVA";
    font-weight: 800;
    color: var(--destaque);
}
#menu-btn{
    width: 25px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.linha{
    width: 100%;
    height: 3px;
    background-color: var(--destaque-branco);
    border-radius: 20px;
    position: relative;
    transform-origin: center;
    /* transition:all 0.2s ease; */
}

#menu-btn.btn-animation .linha:nth-child(1){
    transform: translateY(10px) rotate(-45deg);
}
#menu-btn.btn-animation .linha:nth-child(2){
    opacity: 0;
}
#menu-btn.btn-animation .linha:nth-child(3){
    transform: translateY(-5px) rotate(45deg);
}
nav{
    position: absolute;
    width: 100%;
    top: 60px;
    left: 0;
    opacity: 0;
    border-top: 0.5px solid var(--paragrafo);
    border-bottom: 0.5px solid var(--paragrafo);
    backdrop-filter: blur(40px);
    transition: all 0.3s;
    pointer-events: none;
}
#menu-btn.Show + nav{
    position: absolute;
    pointer-events: auto;
    top: 70px;
    opacity: 1;
}
.menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1rem;
    font-weight: 550;
    padding: 15px;
}
.menu > li{
    list-style: none;
}
.menu > li > .hover{
    color: var(--paragrafo); 
    pointer-events: all;   
}
.menu > li > .hover:hover{
    color: var(--destaque);
}
.btn-repair{
    width: 100%;
    position: relative;
    padding: 7px 0px;
    background-color: var(--destaque);
}
.btn-repair:active{
    background-color: #02c2cf;
}
.btn-repair-preto{
    width: 100%;
    height: 100%;
    font-size: 0.8125rem;
    color: black !important;
    display: flex;
    justify-content: center;
}
@media screen and (min-width: 500px)and (max-width:800px) {
    #Header{
        padding: 0px 90px;
    }
    #logo{
        font-weight: 800;
        font-size: 1.75rem;
    }
    .menu{
        gap: 40px;
        font-size: 1.5rem;
    }
    .btn-repair-preto{
        font-size: 14.5px;
    }
}
@media screen and (min-width:1024px) {
    #Header{
        padding: 0px 110px;
    }
    #logo{
        font-size: var(--logo-font-desktop);
    }
    #menu-btn{
        display: none;
    }
    nav{
        position: static;
        display: flex;
        justify-content: end;
        width: 100%;
        opacity: 1;
        border: none;
        backdrop-filter: blur(0px);
        cursor: pointer;
        
    }
    .menu{
        flex-direction: row;
        justify-content: end;
        padding: 0;
        gap: 15px;
    }
    .btn-repair{
        width: fit-content;
        position: relative;
        padding: 8px 20px;
        background-color: var(--destaque);
        pointer-events: all;
        cursor: pointer;
        transition: box-shadow 0.2s ease-in;
    }
    .btn-repair:hover{
        box-shadow: 0px 0px 20px var(--destaque);
    }
    .btn-repair:active{
        background-color: #02c2cf;
        
    }
    .btn-repair-preto{
        width: 100%;
        height: 100%;
        font-size: 0.8125rem;
        color: black !important;
    }
}
@media screen and (min-width:1280px) {
    #Header{
        padding: 0px 130px;
    }
    .menu{
        gap: 25px;
    }
}