.footer{
    background: #1A2331;
    color: #fffdfd;
    padding: 50px 20px 20px;
}

/* GRID */
.footer-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* COLUNAS */
.footer-box{
    width: 23%;
    min-width: 220px;
    margin-bottom: 30px;
}

/* TITULOS */
.footer-box h4{
    color: #00d4ff;
    margin-bottom: 15px;
}
.footer-box div, p, li, h3{color: rgb(255, 255, 255, 1);}

/* LOGO */
.footer-logo{
    width: 60px;
    margin-bottom: 10px;
}

/* SOCIAL */
.footer-social img{
    width: 25px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-social img:hover{
    transform: scale(1.2);
}

/* LINKS */
.footer-box ul{
    padding: 0;
}

.footer-box ul li{
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-box ul li:hover{
    color: #00d4ff;
    transform: translateX(5px);
}

/* EVENTOS */
.footer-event{
    display: flex;
    margin-bottom: 15px;
}

.footer-event img{
    width: 60px;
    height: 60px;
    margin-right: 10px;
    object-fit: cover;
}

.footer-event p{
    font-size: 9pt;
    margin: 0;
}

.footer-event span{
    font-size: 8pt;
    color: #ffffff;
}

/* SITE */
.footer-site{
    margin-top: 10px;
    font-size: 9pt;
    color: #ffffff;
}

/* FOOTER FINAL */
.footer-bottom{
    border-top: 1px dotted rgba(255, 255, 255, 0.4);
    margin-top: 30px;
    padding-top: 15px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 9pt;
}
.footer-bottom p, span{
    color: rgb(255, 255, 255, 0.5);
}
/* RESPONSIVO */
@media (max-width:768px){
    .footer-container{
        flex-direction: column;
        text-align: center;
    }

    .footer-box{
        width: 100%;
    }

    .footer-bottom{
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
