/* ===== RESET CSS ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

/* Remove estilos padrão de listas */
ul, ol {
  list-style: none;
}

/* Remove estilos padrão de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove estilos padrão de botões */
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Remove estilos padrão de inputs */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Remove outline padrão (mas mantém acessibilidade com :focus-visible) */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid #074246;
  outline-offset: 2px;
}

/* Imagens responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tabelas */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
}

/* Utilitário para screen readers */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
