/* RESET E BOX MODELING */
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
* { outline: 0; padding: 0; margin: 0; border: 0; }

html, body {
    overflow-x: hidden;
    height: auto !important;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    background-color: #f9f9f9;
    padding-top: 1px;
    scroll-behavior: smooth;
}

/* TIPOGRAFIA GLOBAL */
p, h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; }
p { line-height: 1.5; margin-bottom: 12px; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* UTILITÁRIOS */
.align-center { text-align: center; }
.align-right { text-align: right; }
.space-20 { width: 100%; height: 20px; }
.space-40 { width: 100%; height: 40px; }