@charset "utf-8";

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-regular.woff') format('woff'),
        url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-600.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-600.woff') format('woff'),
        url('../fonts/poppins-v20-latin-600.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-600.svg#Poppins') format('svg');
}

:root {
    font-size: 16px;
}

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

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 600 0.750em/1.5em 'Poppins', Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 1168px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('../images/bg.jpg') no-repeat right top;
    overflow: hidden;
    padding: 0.5rem 1rem 0;
}

.padding-bottom {
    padding-bottom: 0;
}

:is(h1, h2, strong) {
    font-weight: 600;
    color: #0052A5;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

p {
    padding-bottom: 0.5rem;
}

h1 {
    margin: 0 0 0.5rem;
    font-size: 1.313em;
    line-height: 1.3;
    font-style: italic;
}

h1 span {
    font-size: 1rem;
}

h2 {
    font-size: 1.188em;
    line-height: 1.3;
}

ul {
    padding: 0 0 0.5rem;
    list-style: none;
}

li {
    padding: 0 0 0 1rem;
    position: relative;
}

li:before {
    content: "\2010";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.box {
    display: flow-root;
    width: 70%;
}

.logo {

    padding: 0 0.7rem 0 0;
    float: left;
}

.box p {
    font-size: 0.938em;
    line-height: 1.2;
}

.interesse {
    width: 294px;
    position: absolute;
    right: 1rem;
    bottom: 3rem;
}

.interesse figure {
    margin-bottom: 1rem;
}

.interesse p {
    line-height: 1.2;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.qr {
    margin-bottom: 0.5rem;
}

header {
    padding: 0 0 0.5rem;
}

footer {
    padding: 0.75rem 1rem;
    margin: 0.5rem -1rem 0;
    background: #DADADA;
}

footer p {
    padding: 0;
    font-size: 1.23em;
    line-height: 1.3;
}

@media only screen and (max-width:1167px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }

    :is(p, li) {
        hyphens: auto;
    }

    p a,
    span {
        display: inline-block;
    }

    br {
        display: none;
    }

    footer p {
        text-align: center;
    }

    .interesse {
        position: static;
    }

    .interesse br {
        display: block;
    }

    .box {
        width: 100%;
        display: block;
    }

    .box p {
        text-align: center;
        width: 100%;
    }

    .logo {
        display: flex;
        justify-content: center;
        float: none;
        padding: 1rem 0;
    }
}

@media only screen and (max-width:350px) {
    .interesse {
        width: 100%;
    }
}