@-webkit-keyframes scale-in-ver-top {
0% {
        -webkit-transform: scaleY(0);
                transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
                transform-origin: 100% 0%;
        opacity: 1;
    }
    100% {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
                transform-origin: 100% 0%;
        opacity: 1;
    }
}
@keyframes scale-in-ver-top {
    0% {
        -webkit-transform: scaleY(0);
                transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
                transform-origin: 100% 0%;
        opacity: 1;
    }
    100% {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
                transform-origin: 100% 0%;
        opacity: 1;
    }
}

body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
body, html{
    overflow-x: hidden;
}
img{
    max-width: 100%;
}
header{
    width: 100%;
    background: #fff;
    padding: 16px 0;
    position: relative;
}
header .logo img{
    height: 65px;
}
header.fixo{
    width: 100%;
    position: fixed;
    z-index: 999;
    padding: 6px 0;
    -webkit-animation: scale-in-ver-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: scale-in-ver-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
header.fixo img{
    height: 45px;
}
.banner{
    width: 100%;
}
.banner .mob{
    display: none;
}
.banner img{
    width: 100%;
    display: block;
}
.bgSobre{
    width: 100%;
    height: auto;
    background: url('../img/bgSobre.jpg')no-repeat center bottom;
    background-size: 100%;
}
.bgSobre .sobre{
    padding-top: 60px;
}
.bgSobre .sobre h1{
    font-weight: 300;
    font-size: 40px;
    color: #000;
    margin-bottom: 0;
    
}
.bgSobre .sobre p{
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
}
.bgSobre .sobre p strong{
    font-size: 16px;
}
.bgSobre .sobre .texto{
    padding-top: 90px;
}
.container h2{
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 30px;
}
.container p{
    font-size: 16px;
    color: #1c1c1b;
    font-weight: 300;
    line-height: 29px;
}
.container p strong{
    font-size: 24px;
    color: #000;
    font-weight: 700;
}
.container.vantagens{
    padding-top: 65px;
}
.container .infografico{
    margin: 85px 0;
}
.container .colIcones{
    margin: 25px 0 100px 0;
}
.container .icones{
    text-align: center; 
    margin: 25px 0;
}
.container .icones p{
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
}
.container .icones figure{
    margin-bottom: 33px;
}
footer{
    background: #00a195;
    color: #fff;
    padding: 60px 0;
}
footer .container h2{
    font-weight: 300;
    margin-bottom: 60px;
}
footer .container p{
    color: #fff;
    font-size: 14.7px;
    font-weight: 300;
}
footer .container p a{
    color: #fff;
}
footer .container p a:hover{
    text-decoration: none;
}
footer .container p strong{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    color: #80d0ca;
    letter-spacing: 1px;
}
footer .container p.frase{
    color: #80d0ca!important;
    text-align: center;
    margin-top: 55px;
}
@media (max-width: 1200px) {
    .bgSobre .sobre p br, .container p br{
        display: none;
    }
    footer .container p br{
        display: block;
    }
}
@media (max-width: 991px) {
    #cssmenu > ul > li > a{
        margin-right: 10px!important;
    }
    .bgSobre .sobre .texto{
        padding-top: 40px;
    }
}
@media (max-width: 767px) {
    .banner .desk{
        display: none;
    }
    .banner .mob{
        display: block;
    }
}