/* ===== FOOTER ===== */
#footer {
    width: 100%;
    padding: 40px 0;
    background: black; 
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container principal */
#footer_items {
    width: 90%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Centro */
.footer-center {
    text-align: center;
    flex: 1;
}

/* Texto Created By */
.created-by {
    margin-top: 6px;
    color: #fff;
}

.created-by a {
    color: #fff;
    font-weight: 600;
    transition: .3s ease;
}

.created-by a:hover {
    color: #ba68ff; /* roxo claro bonito */
}

/* Redes sociais alinhadas à direita */
.footer-social {
    text-align: right;
}

.social-title {
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Ícones */
.social-media-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-media-buttons a {
    color: white;
    font-size: 26px;
    transition: .3s ease;
}

.social-media-buttons a:hover {
    color: #ba68ff;
}


/* ===== RESPONSIVO ===== */
@media screen and (max-width: 1170px) {
    #footer_items {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-social {
        text-align: center;
    }

    .social-media-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 22px;
    }
}
