/**
 * CSS Reset - Rede SX
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Evitar zoom automatico em iOS */
input, textarea, select {
    font-size: 16px;
}

/* Remover highlight em mobile */
button, a {
    -webkit-tap-highlight-color: transparent;
}

/* Reset de listas */
ul, ol {
    list-style: none;
}

/* Reset de links */
a {
    text-decoration: none;
    color: inherit;
}

/* Reset de botoes */
button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Reset de inputs */
input, textarea, select {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Reset de imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reset de tabelas */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Reset de formularios */
fieldset {
    border: none;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}
