.footer {
    background: rgba(10, 10, 20, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 40px 16px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-brand i {
    font-size: 1.8rem;
    color: linear-gradient(135deg, #6366f1, #a78bfa);
    background: #818cf8;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-nombre span {
    color: #f0a050;
    font-weight: 900;
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    width: 100%;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    transition: color 0.8s ease;
    white-space: nowrap;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
    transform: scale(1.2);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: rgba(240, 160, 80, 0.12);
    color: #f0a050;
    border-color: rgba(240, 160, 80, 0.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ============================================ */
/* RESPONSIVE FOOTER */
/* ============================================ */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-brand {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 16px 12px;
    }

    .footer-links a {
        font-size: 0.75rem;
    }

    .footer-social a {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}