#sapoNavbar{
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    width: 100%;
    height: 3.5rem;
    left: 0;
    top: 0;
    background-color: #f5f5ff;
}

#sapoNavbarLogo{
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 7rem;
}

#sapoNavbarLogo img{
    display: flex;
    position: relative;
    width: auto; /* A largura é ajustada automaticamente para manter a proporção */
    max-width: 100%; /* No máximo, ocupa 100% da largura da div */
    max-height: 3rem
}

#navbarHomeBtn{
    font-size: 14px;
    margin: 0 15px;
}

#menuNavbar{
    display: flex;
    justify-content: flex-end;
    flex: 1;
    height: 100%;
}

#menuNavbar ul{
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

#menuNavbar ul li{

}

#menuNavbar .home_page_menu_item img{
    width: 45px;
}

#menuNavbar .home_page_menu_item {
    display: inline-flex;
    padding: 0;
    margin: 0 8px;
    height: 100%;
    align-items: center;
    text-decoration: none;
    border-top: 3px solid rgba(0,0,0,0);
    transition: all .5s;
}

#menuNavbar .home_page_menu_item:hover{
    transition: all .5s;
}

#menuNavbar .home_page_menu_item .hp_menu_item_icon{
    display: inline-flex;
    position: relative;
    width: 2rem;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #667;
    opacity: 0.93;
    line-height: 1.4;
    font-size: 13pt;
}

#menuNavbar .home_page_menu_item .hp_menu_item_text{
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    color: rgba(0,0,0,0);
    width: 1px;
    font-size: 13pt;
    transition: all .5s;
    white-space: nowrap;
    overflow: hidden;
}

#menuNavbar .home_page_menu_item.hp_menu_active .hp_menu_item_text,
#menuNavbar .home_page_menu_item.hp_menu_hover .hp_menu_item_text{
    padding: 0 5px;
    color: #667;
    width: auto;            
    transition: all .5s;
    white-space: nowrap;
}