Use a language string for the label then add whatever HTML you like in the override. Example as follows
Value: atleta
Label: PROFILE_ATLETA
Next using language overrides you could have the below.
Key: PROFILE_ATLETA
String:
Code:
<strong>Atleta</strong>
<div>Description here</div>
See the below on how to use language overrides.
www.joomlapolis.com/blog/kyle/18701-language-overrides-have-arrived
As for the radio alignment it'll always align in the middle. You can change this using CSS. The below for example should work.
Code:
.cb_template #cbfr_FIELD_ID_HERE .form-check-inline .form-check-input {
margin-top: 6px;
margin-bottom: auto;
}
Be sure to replace FIELD_ID_HERE with the actual ID of your field. The alternative is to use the CSS class parameter of the field to add a custom CSS class to the field and replace #cbfr_FIELD_ID_HERE with .YOUR_CLASS_HERE instead. See the below on how to use CSS overrides in CB.
www.joomlapolis.com/blog/kyle/18711-template-css-overrides-made-easy