/* ===== FOOTER CHINGÓN ===== */
.footer {
    background: linear-gradient(135deg, #0a0f18 0%, #0f172a 100%);
    position: relative;
    margin-top: 0;
}



/* Container principal */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

/* Grid del footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Columnas */
.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-col h4 i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Logo en footer */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-logo h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-logo h3 span {
    color: #10b981;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    color: #10b981;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.badge i {
    font-size: 0.7rem;
}

/* Listas de links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #10b981;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contacto */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #10b981;
}

/* Social Section */
.footer-social {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
    margin-bottom: 1.5rem;
}

.social-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.social-title span {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
}

.social-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, transparent);
    margin: 0.8rem auto 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon i {
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
}

.social-icon span {
    z-index: 2;
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Colores específicos */
.social-icon.fb { background: #1877f2; box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3); }
.social-icon.ig { background: linear-gradient(45deg, #f09433, #d62976, #962fbf); box-shadow: 0 4px 15px rgba(214, 41, 118, 0.3); }
.social-icon.tt { background: #000000; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); border: 1px solid rgba(255,255,255,0.1); }
.social-icon.wa { background: #25d366; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    font-size: 0.8rem;
}

.footer-copyright p {
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #10b981;
}

.separator {
    color: #334155;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding: 2rem 1.5rem 1rem;
    }
    
    .footer-grid {
        gap: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .social-icons {
        gap: 0.6rem;
    }
    
    .social-icon {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .social-icon i {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .social-icon span {
        display: none;
    }
    .social-icon i {
        font-size: 1.2rem;
        margin: 0;
    }
    .social-icon {
        padding: 0.6rem 0.9rem;
    }
    .footer-logo img {
        height: 35px;
    }
    
    .footer-logo h3 {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}