.widget{
    background-image: url("../imagens/imagenUpload/casaBonita.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 10px;
    margin-left: 15px;
    margin-right: 15px;
    width: 300px;
    height: 400px;
    border-radius:5px; 
    display: flex; 
    flex-direction: column; 
    transition: margin linear 0.1s;    
}
.widget:hover{
    margin-top: 5px;
    
}
.wCidade{
    width: 175px;
    height:50px;
    font-size: 17px;
    font-weight: bold;
    color: white;
    display: flex;
    flex-direction: column;
    padding-left: 5px;
    margin-top: 20px;
}
.wBairro{
    font-size: 12px;
}
.wId{
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    color: white;
    background-color: black;
    width: 100px;
    height:25px;    
    margin-left: 15px;
    margin-top: 5px;
    border-radius: 5px;
}
.wTipo{
    margin: auto;
    color: white;
    font-size: 18px;
    text-align: center;
}
.wItemBaixo{
    margin: 10px 5px 0px 5px;
    width: 45px;
    height: 30px;
    display: flex; 
    flex-direction: column;
    text-align: center;
    color: white;
    font-size: 8px;
}
.wItemBaixo i{
    font-size: 18px;
    color: white;
}
.valor{
    margin: auto;
    color: white;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}
.wSecoes{
    display: flex;
    width: 300px;
    z-index: 999;
}
.degradeCima{
    pointer-events: none;   /* isto faz com que o clique "passe" adiante */  
    width: 300px;
    height: 200px;
    background-image: linear-gradient(black,rgba(255, 225, 255, 0));
    border-radius: 5px ;
}
.degradeBaixo{
    pointer-events: none;   /* isto faz com que o clique "passe" adiante */  
    width: 300px;
    height: 200px;
    background-image: linear-gradient(rgba(255, 225, 255, 0), black);
    border-radius: 5px ;
    display: flex; 
    flex-direction: column;
    justify-content: flex-end;
}
.vendido{
    position: inherit;
    pointer-events: none;
    color: red;
    font-weight: bold; 
    font-size: 60px;
    margin-left: 20px;
    width: auto;

}
#vendido{
     transform: rotate(-45deg);
}