<!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Botão Personalizado</title> <style> /* Estilo padrão do botão */ .botao { width: 80%; background-color: #0000CD; color: #ffffff; padding: 10px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; border: none; cursor: pointer; border-radius: 4px; text-transform: uppercase; /* Converte o texto para maiúsculas */ } /* Estilo do botão quando o mouse passa por cima */ .botao:hover { background-color: #1E90FF; } </style> </head> <body> <!-- Botão com o rótulo "Portal de Convênios" e link --> <a class="botao" href="https://tdn.totvs.com/pages/viewpage.action?pageId=808014158">Portal de Convênios</a |