/* Reset CSS Simples */

/* Remove margens e padding padrão de todos os elementos */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Define um padrão para os elementos de bloco */
body {
  font-family: system-ui, sans-serif; /* Fonte moderna e genérica */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: #fff;
  color: #031a38;
}


/* Garantindo que as listas não tenham estilo ou padding */
ul,
ol {
  list-style: none;
}

/* Removendo estilo padrão dos botões */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border:0;
  background: none;
  padding: 0;
  outline: 0;
}
select,textarea,[type=text],[type=email],[type=date],[type=number], button, [type=submit] {
  outline: 1px solid gray;
}
/* Definindo imagens como block por padrão */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Ajustes para tabelas */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
}
table th {
  text-align: left;
}

a:link {
  color:#031a38;
}


/* Evitar zoom no iOS ao clicar em inputs */
input,
button {
  touch-action: manipulation;
}
button,input[type=submit] {
  cursor: pointer;
}

/* Definindo altura mínima padrão para o body e a tag html */
html,
body {
  height: 100%;
}

/* Forçando elementos que geralmente são inline a respeitar margin/padding */
main,
article,
aside,
figure,
footer,
header,
nav,
section {
  display: block;
}