/* ============================================
   FOOTER - SKILLTRACK
   ============================================ */

.modern-footer {
    background: linear-gradient(135deg, #0b2239 0%, #1e3a8a 100%);
    color: white;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.03) 0%, transparent 50%, rgba(255,255,255,0.01) 100%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 400;
}

.footer-version {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: white !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.footer-link:hover i {
    transform: scale(1.1);
}

/* Responsive para el footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}
