/* footer.css */

.footer-compact {
    background: var(--dark);
    color: var(--contrast);
    padding: 1.5rem 0 0.75rem;
}

.footer-section-title {
    color: var(--contrast);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: all 0.2s ease;
    display: block;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-link.disabled {
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
}

.footer-link.disabled:hover {
    color: rgba(255, 255, 255, 0.4);
}

.footer-link i {
    width: 12px;
    font-size: 0.75rem;
    margin-right: 0.375rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--contrast);
    border-color: var(--primary);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0 0.75rem;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--primary);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* Responsive con Bootstrap */
@media (max-width: 768px) {
    .footer-compact {
        padding: 1rem 0 0.75rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer-separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer-compact {
        padding: 1rem 0 0.5rem;
    }

    .footer-section-title {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
    }

    .footer-link {
        font-size: 0.78125rem;
        margin-bottom: 0.2rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }
}