Añade este pequeño código en tu archivo js
Código:
$('.titulo').click(function(){
$(this).parent().find('.detalle-oferta').show();
});
También opcionalmente puedes cambiar el show() por toggle() y asi si vuelves a hacer click este se cierra nuevamente.