*{
    margin: 0;
    padding: 0;
}

.galeria-venda {   
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
    background-color: white;
    justify-content: space-evenly;



}

.galeria-venda-item {
      
    gap: 15px;   
    padding: 10px;
    background-color: white;
    border-width: 1px;
    border-style: solid;
    border-color: whitesmoke;
    border-radius: 0.5rem;
    margin-bottom: 10px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0,0.1);

}

.imagem {
    width: 400px;
    height: 300px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;

}

.font-titulo-destaque {
    font-style: normal;
    font-weight: 800;
    color:#DF997C;
    text-align: center;
    
}

.font-destaque {
    font-style: italic;
    font-weight: 800;
    color:#C0CFE8;
    
}

.font-texto {
    font-style: normal;   
    color:#909397;
    font-weight: 500;
    
}

.icones-fonte {
     font-style: normal;   
     color:#909397;
     font-weight: 500;   
     font-size: 1rem; 
     font-weight: 500;
}

.nao-encontrado {
    font-style: normal;
    font-weight: 500;
    color:#909397;
    text-align: center;  
}


@media (max-width:500px){
    .imagem {
        width: 300px;
        height: 200px;    
    }
}

