header{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   gap: 10px;
   padding: 10px;
   color: white;
   background-color: #01A3B6;
   
   box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 50%);
   -webkit-box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 50%);
   -moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5);
}

header a{
   color: white;
   text-decoration: none;
}

header a:link,
header a:visited,
header a:active{
   color: white;
}

header a:hover{
   text-decoration: underline;
}

header .imgPerfil{
   width: 40px;
   height: 40px;
   border: none;
   border-radius: 50%;
}

/*Hover*/
.divMenuContainer{
   position: relative;
}

header .divMenu{
   display: none;
   position: absolute;
   top: 40px;
   right: 0px;
   cursor: pointer;
   height: fit-content;
   padding: 10px;
   border-radius: 5px;
   box-shadow: 0 0 1em black;
   background-color: #01A3B6;
}

header .divMenu a{
   display: flex;
   align-items: center;
   gap: 5px;
   white-space: nowrap;
   font-size: 14pt;
}

header .divMenu img{
   height: 30px;
}

header .divMenuContainer:hover .divMenu{
   display: flex;
   flex-direction: column;
   gap: 10px;
   z-index: 100;
}
/*Fim Hover*/