:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    --shadow-soft: 0 4px 20px rgba(99, 102, 241, 0.08);
    --shadow-hover: 0 8px 30px rgba(99, 102, 241, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.footer-container {
    background: var(--bg-white);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    padding: 4rem 2rem 2rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.6;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Logo y Marca */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-image {
    
    height: 60px;
    
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.footer-logo-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.025em;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Enlaces Rápidos */
.footer-links-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transition: var(--transition);
    border-radius: 1px;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-link:hover::after {
    width: 100%;
}

/* Redes Sociales */
.footer-social-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-social-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.footer-social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

/* Línea divisoria */
.footer-divider {
    max-width: 1200px;
    margin: 2.5rem auto 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

/* Derechos reservados */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-rights {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 1.75rem;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-divider {
        margin: 2rem auto 1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 2.5rem 1rem 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-logo-image {
        width: 50px;
        height: 50px;
    }
    
    .footer-socials {
        gap: 0.75rem;
    }
    
    .footer-social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

/* Optimización de carga */
.footer-container {
    will-change: auto;
}

.footer-social-icon, .footer-link, .footer-logo-image {
    will-change: transform;
}

/* Preload de estados hover para evitar flashes */
.footer-link:not(:hover)::after,
.footer-social-icon:not(:hover) {
    transition-delay: 0s;
}

.nodp{
    display: none;
}