/* ===== FOOTER ===== */

.footer {
    background: #3d3d3d;
    color: #eee;
    padding: 50px 20px 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
}

/* COLUMNAS */

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col h4 {
    margin-bottom: 10px;
    color: #C57AA8;
}

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
}

/* LOGO */
.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.7;
    max-width: 260px;
}

/* REDES */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    font-size: 1.2rem;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #C57AA8;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom span {
    color: #C57AA8;
}

@media(min-width: 768px){

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    .footer-col {
    align-items: flex-start;
    }

.footer-col:first-child {
    align-items: center;
    }

    /* 🔥 LOGO + TEXTO ALINEADOS */
    .footer-col:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .footer-desc {
        max-width: 200px;
    }
}