Hi brasolucoes
I got your point but you will need to customize much this type of JA ACM module to achieve that, the 2 equivalent files are:
templates/ja_aiga/acm/hero/tmpl/style-2.xml
templates/ja_aiga/acm/hero/tmpl/style-2.php
For example, in the 'style-2.xml' file, you will need to move fields: title, buton title/link/type, ... to the slide field:
<field name="title" type="textarea" default="" label="HERO_TITLE_LABEL" description="HERO_TITLE_DESC" rows="5" cols="40" required="1" />
<field name="btn-title" type="text" default="" label="HERO_BUTTON_LABEL" description="HERO_BUTTON_DESC" rows="5" cols="40" />
<field name="btn-link" type="text" default="" size="40" label="HERO_BUTTOM_LINK_LABEL" description="HERO_BUTTOM_LINK_DESC" />
<field name="btn-type" type="list" default="default" size="40" label="HERO_BUTTOM_TYPE_LABEL" description="HERO_BUTTOM_TYPE_DESC">
<option value="default">Default</option>
<option value="primary">Primary</option>
<option value="success">Success</option>
<option value="warning">Warning</option>
<option value="danger">Danger</option>
<option value="info">Info</option>
</field>
Then you will customize the code in 'style-2.php' to retrieve the info added in module settings.
Hope this helps.