header {
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    position: sticky;
    top: 0
}

#conteudo_header {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
    
}

#conteudo_header_mobile, #icon-mobile {
    display: none;
}

#conteudo_header i {
    color: white;
    font-size: 1.2rem;
}

#conteudo_header ul li a {
    text-decoration: none;

    display: flex;
    padding: 8px 40px;
    font-size: 1.2rem;
}

#conteudo_header ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

li a {
    color: white;
    list-style: none;
}
 
@media screen and (max-width: 1100px) {
    #conteudo_header ul li a {
        display: none;
    }

    #icon-mobile {
        display: block;
        color: white;
        font-size: 2rem;

    }
}