I have this function, but when it is executed it is applied to all the elements and since I am using its css style reference to grasp the elements, all are painted and not only the one that is clicked
$('.vermas').click(function(){
$('.elemento-preguntas').addClass( "elemento-activado" );
$('.respuesta-icon').text( "!" );
$('.respuesta').css( 'display','block');
$('.vermas').css( 'display','none');
})