.menu{
background-color: #002060;
padding: 2px 0;
position: relative;
z-index: 1;
}
  
.barra-de-nav{
    position: relative;
    display: flex;
    align-items: center;

}
.container{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.menu-lista{
    list-style: none;
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
    padding-left: 0;
    width: 100%;
    justify-content: space-around;
    text-decoration: none;
    font-size: 19px;
    font-family: 'NewJuneHeavy', 'Montserrat', sans-serif;
    font-weight: 600;
}

.menu-lista li a{
    text-decoration: none;
    color: #ffffff;
    list-style: none;
}

.menu-lista li a:hover{
    color: #0452f0;
    transition: 0.3s;
}

.dropdown-toggle ::after{
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
    
.dropdown-menu.show{
    display: block;
    background-color: #002060;
}

.dropdown-item{
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 600;
    color: #212529;
    text-align: justify;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 15px ;
    font-family: 'NewJuneHeavy', 'Montserrat', sans-serif;
}

.dropdown-item:hover{
    background-color: #ccc
}




