from lxml import etree
import StringIO

html = u'''<div><strong class="style2">OS PRODUTORES<br/></strong> A trama consiste na tentativa frustrada de um produtor trambiqueiro e de pouco talento. Adaptada e dirigida por Miguel Falabella, tem no elenco Juliana Paes e Vladimir Brichta, entre outros.</div>'''

parser = etree.HTMLParser()
et = etree.parse(StringIO.StringIO(html), parser)

rawtitle = et.xpath('descendant::strong')
print (etree.tounicode(rawtitle[0]),)

rawtitle = et.xpath('//strong')
print (etree.tounicode(rawtitle[0]),)