*, *::before, *::after {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #222;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    height: 100%;
    background: rgb(82,222,202);
    background: radial-gradient(circle, rgb(82, 151, 222) 0%, rgb(78,73,156) 100%);
}

h1#slogan {
    padding-top: 50px;
    background: rgb(45, 197, 164);
    background: linear-gradient(0deg, rgba(34,193,195,0) 50%, rgb(45, 176, 197) 100%);
    position: absolute;
    text-align: center;
    width: 300px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 30pt;
    color: #fff;
}

h2#subheader {
    position: absolute;
    text-align: center;
    width: 300px;
    left: 0;
    right: 0;
    top: 100px;
    bottom: 0;
    margin: auto;
    font-size: 12pt;
    color: #fff;
}

h1#slogan::before,
h1#slogan::after {
    color: #c9ffd9;
}
h1#slogan::before {
    content: '<';
}

h1#slogan::after {
    content: '/>';
}

main {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: inherit;
    height: inherit;
}

main > section {
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 230px;
    max-width: 1260px;
    box-shadow: 0 0 200px -30px rgb(67, 153, 255);
    background-color: #fff;
}

main > section > div.box-sys {
    width: 180px;
    height: 180px;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #ececec;
    cursor: pointer;
    transition: transform ease-in-out .2s, box-shadow linear .1s;
    background-color: #fff;
    margin-bottom: 1px;
}

main > section > div.box-sys > div.box-sys-img {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #ececec;
}

main > section > div.box-sys > div.box-sys-img > img {
    display: block;
    border: none;
    object-fit: scale-down;
    width: inherit;
    height: inherit;
    padding: 20px;
    background-color: #fff;
    transition: padding ease .1s;
}

main > section > div.box-sys > div.box-sys-content {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 110px;
    padding: 10px;
}

main > section > div.box-sys > div.box-sys-content > h3 {
    font-size: 10pt;
    color: #5a6974;
}

main > section > div.box-sys > div.box-sys-content > span {
    display: block;
    font-size: 8pt;
    color: #8d9da9;
    text-align: center;
    line-height: 20px;
}

main > section > div.box-sys:hover {
    transform: scale(1.2);
    box-shadow: 0 0 36px -17px rgba(0,0,0,.5);
    border: none;
}

main > section > div.box-sys:hover > div.box-sys-img > img {
    padding: 15px;
}

main > section > div.box-sys:nth-child(7n) {
    border-right: none
}

main > section > div.box-sys:nth-last-child(7),
main > section > div.box-sys:nth-last-child(6),
main > section > div.box-sys:nth-last-child(5),
main > section > div.box-sys:nth-last-child(4),
main > section > div.box-sys:nth-last-child(3),
main > section > div.box-sys:nth-last-child(2),
main > section > div.box-sys:nth-last-child(1) {
    border-bottom: none
}

div.box-section {
    width: 100%;
    height: 100%;
}

div.box-section > h1 {
    line-height: 150px;
    text-transform: uppercase;
    text-align: center;
    font-size: 27pt;
    color: #333;
}

a[href="#main"] {
    position: fixed;
    background: url('../images/up.png');
    background-color: #f1f1f1;
    width: 50px;
    height: 50px;
    right: 25px;
    bottom: 25px;
}
a[href="#main"]:hover {
    background-color: #e2e2e2;
}

div#cards {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    margin-top: 50px;
    width: 500px;
    height: 60px;
    z-index: 1;
}

a#playstore, a#applestore {
    cursor: pointer;
}

a#playstore {
    background: url('../images/badges/google-play-badge.png') no-repeat;
    background-size: contain;
    width: 240px;
    height: 92px;
}

a#applestore {
    background: url('../images/badges/Download_on_the_App_Store_Badge_PTBR_blk_100317.png') no-repeat;
    background-size: cover;
    width: 190px;
    height: 63px;
}

p.rodape:first-of-type {
    margin-top: 30px;
}

p.rodape:last-of-type {
    margin-bottom: 30px;
}

p.rodape {
    color: #fff;
    line-height: 20px;
    text-shadow: 0 2px 0 rgba(0,0,0,.3);
}

a#us {
    transition: .2s all;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 150px;
    width: 200px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10pt;
    font-weight: bold;
    margin: auto;
    background-color: #fff;
    color: #5a6973;
}

a#us:hover {
    background-color: #d0f3fe;
    color: #252c31;
}

#popup {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.3);
}

#popup > #body {
    width: 30%;
    padding: 30px;
    background-color: #Fff;
    box-shadow: 0 0 100px -50px rgba(0,0,0,.5);
    border: 1px solid #eee;
}