﻿/* Reset global */
*,
*::before,
*::after
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estrutura base */
html, body
{
    height: 100%;
    width: 100%;
    font-family: Tahoma, Geneva, sans-serif;
    line-height: 1.5;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #000;
}

/* Listas e links */
ul, ol
{
    list-style: none;
}

a
{
    font-size: 14px;
    text-decoration: none;
    color: inherit;
}

p
{
    font-size: 14px;
}

/* Formulários */
button,
input,
textarea,
select
{
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input,
textarea,
select
{
    width: 100%;
    box-sizing: border-box;
}

/* Tabelas e imagens */
table
{
    border-collapse: collapse;
    border-spacing: 0;
}

img
{
    display: block;
    max-width: 100%;
    height: auto;
    border: none;
}

/* Fieldset e legend */
fieldset, legend
{
    border: 0;
    padding: 0;
    margin: 0;
}

/* HTML5 semantic */
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary
{
    display: block;
}

/* Scrollbar Chrome/Edge/Safari */
::-webkit-scrollbar
{
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb
{
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-track
{
    background: transparent;
}

/* Scrollbar Firefox */
*
{
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
}

/* Scrollbar IE/Edge antigo */
html
{
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
