*{
    font-family: sans-serif, Arial, Helvetica;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

html,
body{
    background-color: #bbb;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

button{
    cursor: pointer;
}

.btn-sem-estilo{
    background: none;
    border: none;
}

.btn-sem-estilo:focus {
    outline: none;
}

ul,
li,
label{
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul{
    list-style: none;
}

button, a, input, textarea {
    outline: none;
}

button:focus, a:focus, input:focus, textarea:focus {
    outline: none;
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: auto; /* Mantém o contorno acessível ao usar teclado */
}


@media (max-width: 750px) {
    header {
        display: flex;
            flex-direction: row;
        font-size: 12px;
    }

    header ul {
        display: flex;
            flex-direction: column;
    }

    header ul li {
        margin: 5px;
    }

    header .logo {
        margin-top: 0;
    }

    header .logo img {
        width: 60px;
    }

    header .links {
        width: 150px;
        margin-bottom: 25px;
        /* background-color: #002c53; */
    }

    header .acesso {
        margin-top: 0;
        display: block;
    }

    header .acesso a{
        display: none;
    }

    .links li,
    #acesso-media {
        display: none;
    }

    header .acesso #hamburguer{
        height: 20px;
        display: flex;
        margin-top: 15px;
    }
}