/* Reset CSS básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

html, body {
    height: 100%;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}
