/*! 
 * Reset CSS v2.0 | MIT License
 * Normaliza comportamentos entre navegadores
 */

/* Box Model Universal */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HTML5 Display Definitions */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav,
section, summary {
    display: block;
}

/* Root Elements */
html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
                 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: normal;
    line-height: 1.2;
}

p, blockquote, pre, address, hr, table, fieldset, figure {
    margin: 0;
}

/* Lists */
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    list-style: none;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

a:hover,
a:focus {
    outline: 0;
}

/* Form Elements */
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    border: none;
    background: none;
    outline: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
}

/* Media Elements */
img, video, audio, iframe, object, embed {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}

/* Remove default styling */
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

legend {
    border: 0;
    padding: 0;
    white-space: normal;
}

/* Accessibility */
[hidden] {
    display: none !important;
}

/* Focus Management */
:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Print Styles */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
}