body {
    margin: 0px;
    padding: 0px;
    font-family: "Roboto", sans-serif;
}

header {
    background-color: #006634;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    color: #fafafa;
    z-index: 100;
}

header img {
    width: 35px;
}

#logo {
    margin-left: 20px;
}

#campo_foto {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fafafa;
    box-shadow: 0 0 5px 3px #5dc862;
}

#campo_foto img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 50%;
    object-position: center;
}

#parte_final_header {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 10px;
}

#campo_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 5px;
    background-color: #023a1c;
}

#campo_menu:hover {
    opacity: 0.9;
    transition: 0.3s;
}

#campo_menu img {
    width: 25px;
}

span#alerta_notificacao {
    background-color: red;
    padding:0px 8px;
    border-radius: 50%;
    margin-left: -15px;
    color: transparent;
}

#campo_notificacao:hover {
    opacity: 0.8;
    transition: 0.3s;

}
