body{
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #373737;
}
::-webkit-scrollbar{
    width: 0px;
}
a{
    text-decoration: none;
    color: black;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header{
    background-color: #ccc;
    max-height: 15vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}
.header .logo{
    padding: 0;
    margin: 0;
    margin-right: auto;
    margin-left: 5px;
}
.logo h1,p{
    margin: 0;
    padding: 0;
}

.logo p{
    font-size: 12px;
}
.links{
    background-color: #ccc;
    width: 30vw;
    padding: 0 15px;
    margin: 15px 0;
    border: black 1px solid;
    border-radius: 0.25rem;
    padding-bottom: 5px;
}

.links-header{
    display: flex;
}
.btn{
    background-color: rgb(133, 133, 133);
    border: black 1px solid;
    align-items: center;
    display: flex;
    margin: 5px 5px;
    border-radius: 0.25rem;
    transition: .3s ease;
}
.ex{
    position: absolute;
    visibility: hidden;
    left: 65%;
    opacity: 0;
    padding: 0;
    /*-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));*/
    transition: visibility 0s, opacity 0.25s linear;
    
}
.ex img{
    border: black solid 2px;
    border-radius: 0.25rem;
}

.btn:hover > .ex{
    visibility: visible;
    opacity: 1;
}
.btn span{
    margin-right: 15px;
}
.btn:hover{
    background-color: rgb(253, 255, 210);
}
.titulo{
    border-bottom: black 3px dotted;
}
.info-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon{
    margin: 0 2px;
}
.pf{
    display: none;
    opacity: 0;
    transition: .3s ease;
}
.pj{
    display: none;
    opacity: 0;
    transition: .3s ease;
}
.menus{
    display: flex;
    align-items: center;
    justify-content: center;
}
.submenu{
    display: flex;
    flex-direction: column;
}
.cnd_receita{
    display: flex;
}
.cnd_receita .btn{
    width: 100%;
}
@media (max-width: 900px) {
    .logo{
        display: none;
        
    }
    .header .btn span {
        display: none;
    }
    .links{
        width: 100%;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
    }
}