.main-footer {
    background: #0F0F1E;
    font-family: 'Nunito', sans-serif;
    border-top: 3px solid rgba(123,47,190,.4);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-eweb {
    text-align: right;
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: transparent;
    border-radius: 50%;
    filter: drop-shadow(0 3px 8px rgba(123,47,190,0.3));
    transition: transform .3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.08) rotate(-4deg);
}

.footer-copy {
    font-size: .8rem;
    color: rgba(255,255,255,.35);
    text-align: center;
}

.footer-copy a,
.footer-eweb a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-weight: 800;
    transition: color .2s ease;
}

.footer-copy a:hover,
.footer-eweb a:hover {
    color: var(--yellow);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.f-social-mini {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    text-decoration: none;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    transition: all .3s ease;
}

.f-social-mini:hover {
    transform: translateY(-2px);
    color: white;
}

.f-social-mini.ig:hover {
    background: linear-gradient(135deg,#E4405F,#C13584);
    border-color: transparent;
}

.f-social-mini.fb:hover {
    background: linear-gradient(135deg,#1877F2,#0A5CAD);
    border-color: transparent;
}

.f-social-mini.wa:hover {
    background: linear-gradient(135deg,#25D366,#128C7E);
    border-color: transparent;
}

.footer-sep {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.12);
}

@media (max-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 22px 20px;
        gap: 12px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-center {
        flex-direction: column;
        align-items: center;
        gap: 9px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-copy,
    .footer-eweb {
        text-align: center;
    }

    .footer-sep {
        display: none;
    }
}