body, html {
    height: 100%;
    position: relative;
}

body {
    background-image: url("../img/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    padding-top: 100px;
}

.logo img{
    max-width: 400px
}

.lista ul > li {
    color: #FFF;
    font-size: 18px;
    margin-bottom: 20px;
}

.tel {
    display: block;
    color: #112B64;
    font-size: 36px;
}

.tel:hover {
    text-decoration: none;
}

.email {
    display: block;
    color: #FFF;
    font-size: 18px;
}

.email:hover {
    text-decoration: none;
}

.rodape {
    position: absolute;
    bottom: 30px;
}


@media screen and (max-width: 620px) {
    body {
        background-image: none;
        background: rgb(46,132,119);
        background: linear-gradient(225deg, rgba(46,132,119,1) 0%, rgba(88,157,94,1) 50%, rgba(127,180,71,1) 100%);
    }

    .container {
        padding-top: 30px;
    }

    .logo img{
        width: 100%;
    }

    .lista ul{
        padding: 0;
        margin: 0;
    }

    .lista ul > li {
        text-align: center;
    }


    .rodape {
        position: initial;
        text-align: center;
    }
}