.conteudo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.classificados{
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    border: 5px solid rgb(7, 54, 6);
    border-radius: 25px;
    width: 500px;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 30px;
    margin-bottom: 50px;


}

.foto img{
    width: 400px;
    height: 250px;
    border-radius: 5px;
}

.icones {
    display: flex;
    flex-direction: row;
    
    width: 400px;
    justify-content:space-around;
    margin-bottom: 20px;
}

.icones img{
    width: 80px;
    height: 80px;
}

.contato{
    text-align: center;
    font-family: roboto;
    padding: 100px 100px;
}

@media (max-width: 768px){

.classificados{

    width: 300px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
   
}

.foto img{
    width: 250px;
    height: 130px;
   
}


.icones img{
    width: 40px;
    height: 40px;
}

.icones {
    
    
    width: 300px;
    
    margin-bottom: 20px;
}
    
}