.fundopaginainicial{
    /* background-image: url('../_imagens/_outras/financas05.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    display: grid;
    background-color: #024762;
}

.fundopaginaindex{
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

.titulocabecalho {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #f3f5f7;
    width: 100%;
    position: fixed;
    background-image: linear-gradient(to bottom, #3ec3f8, #d7f5ff, #f8fbfc, #d7f5ff, #3ec3f8);
    box-shadow: 5px 3px 6px #777;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 5;
}

.dp-menu ul{
    list-style-type:none;
    padding: 0;
    /* border: solid 1px #0084b9; */
    /* background-color: #e0ebff; */
    /* background-image: linear-gradient(to bottom, #8ad9f9 , #d7f5ff, #fafafa, #d7f5ff , #8ad9f9); */
    border-radius: 4px;
    margin: auto;
    margin-top: 10px;
}

.dp-menu ul li{
    display: inline;
    position: relative;
}

.dp-menu ul li a{
    display: inline-block;
    text-decoration: none;
    padding: 10px;
    transition: background 0.33s;
    color: midnightblue;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    border-radius: 5px;
    font-weight: bold;
}

.dp-menu ul li a:hover{
    color:white;
    background-color: #0153aa;
}

/* Sub menu */
.dp-menu ul ul {
    display: none;
    left: 0;
    position: absolute;
    box-shadow: 0px 5px 15px black;
    z-index: 101;
}

.dp-menu ul li:hover ul{
    display: block;
}

.dp-menu ul ul {
    width: 250px;
}

.dp-menu ul ul li a{
    display: block;
}

.dp-menu ul li a img{
    margin-bottom: -3px;
    margin-right: 5px;
    height: 15px;
}

.dp-menu ul li.cabeca a.cabeca img.imgmenu{
    margin-right: 0;
    margin-bottom: -4px;
    height: 20px;
}

img.seta_menu{
    border-right: 8px solid #0084b9; /* Define a cor de fundo da seta */
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 20px;
    margin-top: -16px;
    position: absolute;
    transform: rotate(90deg);
}

*{
    margin:0;
    }

    a.linkLogar{
        text-decoration: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    button.acessarsistema{
        width: 180px;
        height: 40px;
        background-color: #f3f5f7;
        color: midnightblue;
        border-radius: 6px;
        font-weight: bold;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    button.acessarsistema:hover{
        box-shadow: 6px 3px 10px rgba(0,0,0,.6);
        transition: 0.5s;
    }

    /* Ajuste para tirar borda muita larga para input após atualização do Chrome */
    button.acessarsistema {
        outline: none!important;
        border: solid 1px rgb(140, 140, 140)!important;
    }  