/* header============================================ */

header {
    /* margin: 0px 85px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-geral{
    /* width: 100%; */
    height: 70px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;

    
    position: fixed;
    top: 0px;
    padding: 0px 10%;

    background-color: var(--header-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* são as opçoes do header */
.options {
    display: flex;
    gap: 70px;
    align-items: center;
}

/* mexe diretamente com as opções do header da pag 1 */
.options a {
    color: var(--letra-color);
    font-family: 'Lucida Sans', 'Lucida Sans Regular',
        'Lucida Grande', 'Lucida Sans Unicode',
        Geneva, Verdana, sans-serif;
}

/* são os icones do header */
.icones {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* ajusta o tamanho dos icones do header */
/* .icones img {
    width: 18px;
    height: 17px;
} */

/* header =============================================== */