/* Box sizing global */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  overscroll-behavior: none;
}
/* Remover margens e paddings padrão */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}
/* Altura base */
html,
body {
  height: 100%;
}
/* Tipografia base */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  line-height: 1.2;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  word-wrap: break-word;
}
/* Imagens e mídias responsivas */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
  height: auto;
}
/* Links e botões consistentes */
a {
  text-decoration: none;
  color: inherit;
}
a[href],
button,
[role="button"] {
  cursor: pointer;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: transparent;
}
/* Foco acessível */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid #005fcc;
  /* Azul de contraste adequado */
  outline-offset: 2px;
}
/* Botões básicos */
button {
  background: none;
  padding: 0;
}
/* Tabela básica */
table {
  border-collapse: collapse;
  width: 100%;
}
svg {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Respeitar preferência por redução de movimento */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* Get rid of top margin on first element in any rich text element */
.w-richtext > :not(div):first-child,
.w-richtext > div:first-child > :first-child {
  margin-top: 0 !important;
}
/* Get rid of bottom margin on last element in any rich text element */
.w-richtext > :last-child,
.w-richtext ol li:last-child,
.w-richtext ul li:last-child {
  margin-bottom: 0 !important;
}
