

/* footer */
.footer{ background: #e8e7e7;;margin-top: 1px;}

.footer .container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 300px;
    align-items: center;
}

.logoFooter { width: 35px; transition: .5s;margin-right: 30px;}
.logoFooter:hover {filter: brightness(1);}


.newsletter{
    margin-top: 24px;
}

.newsletter h2{
    color: white;
    font-size: 1.4em;
    margin-top: 24px;
}

.form-news .inputs{
    display: grid;
    grid-template-columns: 50% 50%;
}

.form-news .enviar{
    width: 200px;
    margin-top:0;
}

.menu-footer .logo{
    width: 190px;
}

.menu-footer{
    display: grid;
    grid-template-columns: 22.5% 56.5% 20%;
    width: 100%;
    align-items: center;
    height: 100px;
    border-bottom: solid 1px #d0d0d0;
    padding: 0 24px;
}

.menu-footer a{
    line-height: 24px;
}

.menu-footer .contato{
    padding-top: 24px;
}

.menu-footer .iconesMenu{
    justify-content: center;
}

.logo-duo{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-infos{
    grid-template-columns: 25% 15% 15% 24% 24% !important;
    align-items: start;
    border: none;
}

.footer-infos p{
    font-size: 12px;
}

.menu-footer .container-infos{

}


@media (max-width: 993px) {

    .footer .container {
        height: 400px;
    }

    .logo-duo {
        margin: 80px 24px 0;
        flex-direction: column;
        width: auto;
    }

    .footer-infos {
        grid-template-columns: 1fr !important;
    }

    .footer .container{
        grid-template-columns: 1fr;
    }

    .newsletter h2 {
        width: 70%;
    }
}

