/* ===================================
   CSS Reset - Normalização de Estilos
   =================================== */

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HTML e Body */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Listas */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Imagens e Media */
img,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Botões */
button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}

/* Inputs e Forms */
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* Remover setas de número */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Heading */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: inherit;
    line-height: 1.2;
}

/* Parágrafos */
p {
    margin: 0;
}

/* Tabelas */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remover aparência padrão */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}
