@charset "utf-8";


address{
    display: block;
    font-style: normal
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: 1;
    text-align: inherit;
    font-weight: inherit;
    font-style: inherit;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: inherit;
    -webkit-text-size-adjust: 100%;
    outline: 0 solid var(--color-outline-variant);
}
article,aside,details,figcaption,figure,hgroup,menu,nav,section {
    display: block
}
html, body, .root{
    min-height: 100dvh;
    width: 100%;
    scroll-behavior: smooth;
    background-color: var(--color-background);
    font-family: var(--ff--body);
    color: var(--color-on-background);

}
html {
    touch-action: manipulation;
    font-size: var(--typescale-base-font-size)
}
body{
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    touch-action: pan-y pinch-zoom;
    user-select: text;
    line-height: 1.6;
    font-family: var(--ff--body);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "onum" 1;
    -webkit-font-feature-settings: "onum" 1;
    transition: background-color 0.3s, color 0.3s;
}

legend {
    font-size: 12px;
    color: rgb(var(--color-on-surface--rgb)/0.7);
    margin-bottom: 8px
}
/* Image */
img {max-width: 100%}
/* Button */
a, button {
    background: none;
    outline: none;
    cursor: pointer;
    border: none
}
/* Typography */
h1,h2,h3,h4,h5,h6, p{
    font-optical-sizing: var(--fopsz-auto);
    word-break: break-word
}
em, i {
    font-style: italic
}

a {
    list-style: none;
    text-decoration: none
}

blockquote, q {
    quotes: none
}
blockquote {
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
    font-family: var(--ff--header);
    font-weight: 900
}
blockquote::before {content: open-quote}
blockquote::after {content: close-quote}
q:before,
q:after {
    content: '';
    content: none
}
caption {
    font: normal normal .75rem 'Roboto';
    letter-spacing: .4px;
    text-transform: uppercase
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
fieldset {
    margin: 0;
    padding: 0;
    border: none
}
fieldset > label {width: 100%}
fieldset > select {width: 100%}
textarea {
    width:100%;
    height: 100%;
    resize: none;
    outline: none;
    padding: .5rem;
    background: transparent;
    overflow: auto;
    word-break: break-all
}
input{
    border-width:0;
    outline:none;
    font-family: var(--ff--body)
}
input[type="text"],
input[type="tel"],
input[type="email"] {
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: textfield;
}

input[type="search"] {
    appearance: none !important;
}

input[type = 'search']::-webkit-search-cancel-button {
    display: none;
}
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 2px;
    padding: 0;
    border: 1px solid;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    vertical-align: middle;
    outline: none;
}
input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none}
/* Tab key */

:focus-visible{
    outline: 2px solid var(--color-on-surface);
}
/* Scroll */
.over-hidden{overflow:hidden}
.scroll-vertical {
    overflow-y:scroll;
    flex: 1;
    padding: 1rem;
    overflow-x: hidden
}

::-webkit-scrollbar {
    display: block !important;
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background:var(--color-on-surface-variant); /* Cor da barra de rolagem */
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-inverse-surface); /* Cor ao passar o mouse */
}

::-webkit-scrollbar-track {
    background: var(--color-inverse-on-surface); /* Cor de fundo da trilha */
    width: 8px;
    height: 8px;
    border-radius: 6px;
}