header {
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 24px 56px;

    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);

    width: 100%;
    height: 12vh;

    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
}

header > button{
    display: none;
}

header > .contacts{
    display: none;
}

header img {
    width: 124px;
    cursor: pointer;
}

header .right{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

header .right .contacts{
    display: flex;

}

header .right .contacts .email, header .right .contacts .telefone {
    padding: 0 12px;
    gap: 4px;
}

header .right .contacts .email:hover *, header .right .contacts .telefone:hover *{
    color: var(--red);
    transition: 1s;

}

header .right ul {
    display: flex;

}

header .right ul a {
    text-decoration: none;

    padding: 12px;
    transition: 0.5s;
}

header .right ul a:hover{
    background: var(--red);
    color: var(--white);
	border-radius: 5px;
}

header .on-page{
    
}