.footer {
    /*background-color: #282828;*/
    background: url(/img/footer-bg.png) no-repeat center center;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    grid-gap: 20px;
    align-items: center;
    text-align: center;
}

.footer-menu a {
    font-size: 0.9rem;
    color: #f2f2f2;
    font-weight: 400;
}


.footer-menu a + a{
    margin-top: 5px;
}

.footer-logo > a {
    max-width: 250px;
}

.footer-social {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
    grid-gap: 20px;
}

.footer-social a{
    opacity: .6;
    transition: .3s;
}


.footer-social a:hover{
    transform: translateY(-4px);
    opacity: .8;
}

.footer-representa {
    opacity: .8;
    display: grid;
    grid-gap: 20px;
    justify-items: center;
}
.footer-representa a {
    transition: .2s;
}
.footer-representa a:hover {
    transform: scale(1.02);
}

.footer-info-hour {
    color: #f2f2f2;
    margin-top: 40px;
}
.footer-info-hour h6{
    font-size: 1.125rem;
 }

.footer-info-hour p{
   font-size: 0.9rem;
   font-weight: 300;
   font-style: italic;
   margin-top: 10px;
}

.footer-info-hour p + p{
    margin-top: 5px;
 }

.base-menu {
    background-color: #F2F2F2;
}
.base-menu-grid p{
    text-align: center;
    font-size: 0.9rem;
    font-weight: 300;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.menu-atual-footer {
    text-decoration: underline;
    opacity: .875;
}



@media only screen and (max-width: 720px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-representa {
        grid-row: 3/4;
        margin-top: 20px;
    }
}