/* reset.css -- cole no início de todo projeto */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

body,
input,
textarea,
button,
select {
    font-family: inherit;
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    display: block;
}

img {
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
button,
select {
    border: none;
    outline: none;
    background-color: transparent;
    color: inherit;
    font: inherit;
}

textarea {
    resize: vertical;
    min-height: 14rem;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset {
    border: none;
}

iframe {
    border: 0;
    width: 100%;
    display: block;
}

input::-ms-clear,
input::-ms-reveal {
    display: none;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
    display: none;
}

:focus-visible {
    outline: .2rem solid #2f7ea1;
    outline-offset: .3rem;
    border-radius: .4rem;
}

::selection {
    background: #2f7ea1;
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 1rem;
}

::-webkit-scrollbar-track {
    background: #eef3f7;
}

::-webkit-scrollbar-thumb {
    background: #2f7ea1;
    border-radius: 999rem;
}

::-webkit-scrollbar-thumb:hover {
    background: #1f6786;
}

html,
body {
    overflow-x: hidden;
}

html:focus-within {
    scroll-behavior: smooth;
}