.awis-footer {
    font-weight: 300;
    font-size: 16px; /* Tamanho padrão */
    position: relative; /* Garantir que o layout esteja correto */
    z-index: 1; /* Garante que o rodapé esteja acima de outros elementos */
}

.awis-footer a {
    color: white !important; /* Sobrescrever estilos de temas */
    text-decoration: none !important;
    cursor: pointer; /* Garante que o cursor seja de link */
    display: inline-block; /* Garante que o link seja clicável */
    z-index: 2; /* Garante que o link fique acima de qualquer sobreposição */
}

.awis-footer a:hover {
    text-decoration: underline !important; /* Feedback visual no hover */
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .awis-footer {
	font-weight: 300;
        font-size: 12px; /* Tamanho para dispositivos móveis */
    }
}

