Try this as the advanced content field:
[<span class='asp_woo_price'><b>PRECIO:</b> {_price}</span>]
[ | <b>Disponibilidad:</b><span class='asp_woo_stock_{_stock_status}'></span>]
..and this custom CSS for the content and color:
.asp_woo_stock_instock::after {
content: "In Stock";
background: #29a617 ;
font-weight: 600;
color: white;
}
.asp_woo_stock_outofstock::after {
content: "No Stock";
background: red;
font-weight: 600;
color: white;
}