/* =====================================================
   KNOW SERVICES V2
   RESET CSS
   ===================================================== */

/* ---------- Box Model ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ---------- Reset Geral ---------- */

* {
    margin: 0;
    padding: 0;
}

/* ---------- HTML ---------- */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* ---------- Body ---------- */

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- Mídias ---------- */

img,
picture,
svg,
canvas,
video {
    display: block;
    max-width: 100%;
}
img {
    height: auto;
}

/* ---------- Formulários ---------- */

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
}

/* ---------- Botões ---------- */

button {
    cursor: pointer;
}

/* ---------- Links ---------- */

a {
    color: inherit;
    text-decoration: none;
}

/* ---------- Listas ---------- */

ul,
ol {
    list-style: none;
}

/* ---------- Tabelas ---------- */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ---------- Textos ---------- */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word;
}

/* ---------- Citações ---------- */

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: "";
}

/* ---------- Código ---------- */

code,
pre {
    font-family: Consolas, Monaco, monospace;
}

/* ---------- Elementos Ocultos ---------- */

[hidden] {
    display: none !important;
}

/* ---------- Foco para acessibilidade ---------- */

:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: var(--focus-offset);
}
