#header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background-color: rgb(34, 34, 34);
    color: white;    
}

.menu {
    display: flex;
    /* background-color: sandybrown; */
    justify-content: space-between;
    min-width: 1024px;
}

.logo { display: flex; align-items: center; padding-right: 14px; }
.logo img { height: 45px; margin-right: 15px; }


.nav { display: flex; background-color:  #222; list-style: none;}
.nav a { display: flex; text-decoration: none; padding: 15px 22px; color: #fff;  font-weight: 500; }
.nav a:hover { background: #e5005a; }

/* ===== BOTÃO HAMBURGUER (DESKTOP SOME) ===== */
#hamburguer {
    display: none;
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
}