﻿/* CSS em geral */
.margem-esquerda { padding-left: 32px; }
.margem-superior { padding-top: 32px; }

@media (max-width:992px) {
    .margem-esquerda { padding-left: 0px; }
    .margem-superior { padding-top: 0px; }
}

.a_preto a:link { color: black; }
.a_preto a:visited { color: black; }
.a_preto a:hover { color: red; }
.a_preto a:active { color: black; }
.a_preto a { text-decoration: none }

.a_branco a:link { color: white; }
.a_branco a:visited { color: white; }
.a_branco a:hover { color: yellow; }
.a_branco a:active { color: white; }
.a_branco a { text-decoration: none }
