/* ===== Footer Moderno Centrado ===== */
.modern-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: #ffffff;
    padding: 5rem 2rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* === Logo Principal === */
.footer-brand {
    margin-bottom: 3rem;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.logo-star {
    font-size: 2rem;
    color: var(--primary-color, #2563eb);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-small {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.9);
}

.logo-large {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
    font-family: serif;
}

/* === Navegación Principal === */
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.footer-nav a:hover {
    color: var(--primary-color, #2563eb);
    transform: translateY(-2px);
}

/* === Link Secundario === */
.footer-secondary-link {
    margin-bottom: 1.5rem;
}

.footer-secondary-link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.footer-secondary-link a:hover {
    color: var(--primary-color, #2563eb);
}

/* === Link Admin === */
.footer-admin-link {
    margin-bottom: 3rem;
}

.footer-admin-link a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    opacity: 0.7;
}

.footer-admin-link a:hover {
    color: var(--primary-color, #2563eb);
    opacity: 1;
}

/* === Redes Sociales === */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.social-icon:hover {
    background: var(--primary-color, #2563eb);
    border-color: var(--primary-color, #2563eb);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* === Copyright === */
.footer-copyright {
    margin-bottom: 1.5rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin: 0;
    letter-spacing: 0.02em;
}

/* === Enlaces Legales === */
.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.footer-legal a:hover {
    color: var(--primary-color, #2563eb);
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1.5rem;
    }

    .logo-large {
        font-size: 2.5rem;
    }

    .logo-star {
        font-size: 1.5rem;
    }

    .footer-nav {
        gap: 1.5rem;
    }

    .footer-nav a {
        font-size: 0.95rem;
    }

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

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

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

/* Mobile */
@media (max-width: 480px) {
    .modern-footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-logo-wrapper {
        gap: 1rem;
    }

    .logo-small {
        font-size: 0.85rem;
    }

    .logo-large {
        font-size: 2rem;
    }

    .logo-star {
        font-size: 1.2rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-nav a,
    .footer-secondary-link a {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 1rem;
    }

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

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

    .footer-copyright p {
        font-size: 0.85rem;
    }

    .footer-legal a {
        font-size: 0.85rem;
    }
}
