/* ========================================
   MODERN FOOTER
   Footer moderno con gradient e social icons
   ======================================== */

.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #8D3FF2 0%, #7C3AED 50%, #6D28D9 100%);
    padding: 64px 0 0 0;
    margin-top: 80px;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.modern-footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 48px;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Links Section */
.footer-links-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.01em;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links-list li a::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links-list li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-links-list li a:hover::before {
    transform: translateY(-50%) scale(1);
}

/* Social Section */
.footer-social-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.01em;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
                0 1px 3px rgba(0, 0, 0, 0.08);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3),
                0 6px 12px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-facebook:hover {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
    color: #ffffff;
}

.social-tiktok:hover {
    background: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff;
}

.social-instagram:hover {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%) !important;
    border-color: #dd2a7b !important;
    color: #ffffff;
}

.social-linkedin:hover {
    background: #0a66c2 !important;
    border-color: #0a66c2 !important;
    color: #ffffff;
}

/* Copyright Bar */
.footer-bottom {
    background: linear-gradient(135deg, #6D28D9 0%, #5B21B6 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 28px 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 0 0;
        margin-top: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-logo-img {
        max-width: 150px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links,
    .footer-social {
        text-align: center;
    }
    
    .footer-links-title,
    .footer-social-title {
        justify-content: center;
    }
    
    .footer-links-list {
        align-items: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modern-footer {
        padding: 32px 0 0 0;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 24px;
        padding-bottom: 24px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    .footer-links-title,
    .footer-social-title {
        font-size: 17px;
    }
    
    .footer-links-list li a {
        font-size: 13px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}
