:root {
    font-size: 100%;
    font-family: system-ui, sans-serif;
    scroll-behavior: smooth;
}

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

*::before,
*::after {
    display: block;
}

img,
picture,
video,
iframe,
figure,
canvas {
    max-width: 100%;
    display: block;
    width: 100%;
    height: initial;
    object-fit: cover;
    object-position: center center;
}

a {
    display: block;
    text-decoration: none;
    color: inherit;
    font: inherit;
}

p a {
    display: inline;
}

li,
menu,
summary {
    list-style-type: none;
}

ol {
    counter-reset: revert;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em,
pre,
code,
mark,
del {
    font: inherit;
    text-decoration: none;
    color: inherit;
    overflow-wrap: break-word;
    text-wrap: pretty;
}

mark {
    background-color: transparent;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: none;
}

form,
input,
textarea,
select,
button,
label {
    font: inherit;
    hyphens: none;
    background-color: transparent;
    color: inherit;
    display: block;
    appearance: none;
}

fieldset {
    border: none;
}

::placeholder {
    color: unset;
}

button,
label {
    cursor: pointer;
}

table,
tr,
td,
th,
tbody,
thead,
tfoot {
    border-collapse: collapse;
    border-spacing: 0;
    font: inherit;
}

svg {
    width: 100%;
    display: block;
    fill: currentColor;
}

body {
    min-height: 100vh;
    line-height: 1.5em;
    color: inherit;
    /*23-04-2025: modificado de auto a none */
    hyphens: none;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion : reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

}