/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
#conteudo-desktop {display: block;}
#conteudo-mobile {display: none;}

@media screen and (max-width: 768px) {
 #conteudo-desktop {display: none;}
 #conteudo-mobile {display: block;}
}