@-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 {
    display        : flex;
    flex-direction : column;
    width          : 100%;
    justify-content: center;
    align-items    : center;
    font-weight    : 300;
    background     : #00a195;
    color          : #fff;
    padding        : 32px;

    .footer__container {
        width     : 100%;
        margin-top: 32px;
    }

    .footer__column {
        display       : flex;
        flex-direction: column;
        width         : 40%;
    }

    .footer__row {
        display        : flex;
        flex-direction : row;
        width          : 100%;
        justify-content: space-between;
        align-items    : flex-start;
    }


    h5 {
        font-size    : 1.1rem;
        margin-bottom: 24px;
    }

    .footer-info {
        list-style: none;
        padding   : 0;

        li {
            display: inline-block;
            color  : #fff;
            margin : 8px 0;

            font-size  : 14.7px;
            font-weight: 300;
            transition : transform 0.3s ease;
            width      : 100%;
            min-width  : 300px;



            a {

                color: #fff;

                &:hover {
                    text-decoration: none;
                }

            }

            &:hover {
                transform: scale(1.05);
            }
        }
    }

    .footer__icon {
        width       : 24px;
        margin-right: 4px;
    }

    .company-info {
        display        : flex;
        width          : 100%;
        flex-direction : column;
        justify-content: flex-start;
        align-items    : flex-start;
        margin         : 16px auto 24px;

        p {
            margin    : 8px 0 0;
            padding   : 0;
            color     : #80d0ca !important;
            text-align: center;
        }

        a {
            text-decoration: underline;
            color          : #fff;
        }
    }
}

@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) {

    .footer__row {
        flex-wrap     : wrap !important;
        flex-direction: column !important;

        & .footer__column:last-child {
            margin-top: 24px !important;
        }
    }

        .banner .desk {
            display: none;
        }

        .banner .mob {
            display: block;
        }
    }