/* --- NX-FOOTER: ELITE FINALE --- */

.nx-footer {
    --nxc-pink: #FF77A8;
    --nxc-pink-glow: rgba(255, 119, 168, 0.2);
    --nxc-green: #00ff88;

    background: #000;
    color: #fff;
    padding: 100px 5% 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nx-footer-grid-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 100%, var(--nxc-pink-glow), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.nx-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* TOP SECTION */
.nx-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 40px;
}

.nx-footer-logo {
    font-family: 'lol', sans-serif;
    /* Asegúrate que la fuente esté cargada */
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0;
}

.nx-dot {
    color: var(--nxc-pink);
}

.nx-footer-slogan {
    max-width: 350px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 20px;
}

.nx-footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.nx-footer-eyebrow {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--nxc-pink);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.nx-footer-mail {
    font-family: 'lol', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    line-height: 1;
    transition: all 0.4s ease;
}

.nx-footer-mail:hover {
    color: var(--nxc-pink);
    transform: skewX(-5deg);
    text-shadow: 0 0 30px var(--nxc-pink-glow);
}

/* MAIN LINKS GRID */
.nx-footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    padding: 80px 0;
}

.nx-footer-col h4 {
    font-family: sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--nxc-pink);
}

.nx-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nx-footer-col ul li {
    margin-bottom: 15px;
}

.nx-footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
}

.nx-footer-col ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

/* SYSTEM STATUS CARD (New Replacement for Newsletter) */
.nx-status-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nx-status-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nx-status-indicator {
    width: 10px;
    height: 10px;
    background: var(--nxc-green);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--nxc-green);
}

.nx-status-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--nxc-green);
    border-radius: 50%;
    animation: nx-pulse-status 2s infinite;
}

@keyframes nx-pulse-status {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.nx-status-text {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nx-status-loc {
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 5px 0 0 0;
}

.nx-status-time {
    font-family: monospace;
    font-size: 1.4rem;
    color: var(--nxc-pink);
    font-weight: bold;
    letter-spacing: 2px;
}

/* BOTTOM SECTION */
.nx-footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.nx-footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.nx-footer-legal a {
    color: inherit;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.nx-footer-legal a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nx-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nx-footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .nx-footer-cta {
        align-items: flex-start;
    }

    .nx-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nx-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nx-footer-legal {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .nx-footer-legal a {
        margin: 0 10px;
    }
}



/* --- NX-FOOTER: MINIMAL PROFESSIONAL --- */
.nx-footer {
    --nxc-pink: #FF77A8;
    background: #000;
    color: #fff;
    padding: 100px 5% 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nx-footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.nx-footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Simetría perfecta */
    gap: 80px;
    padding-bottom: 80px;
}

/* Títulos de columna: Pequeños y elegantes */
.nx-footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--nxc-pink);
    margin-bottom: 35px;
    font-weight: 600;
}

/* Links: Color tenue que se ilumina al hover */
.nx-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nx-footer-col ul li {
    margin-bottom: 15px;
}

.nx-footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nx-footer-col ul li a:hover {
    color: #fff;
}

/* BLOQUE DE INFORMACIÓN (REEMPLAZO) */
.nx-footer-info-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nx-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nx-info-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nx-info-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
}

.nx-footer-legal a {
    color: inherit;
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.nx-footer-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .nx-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .nx-footer-col:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .nx-footer-main {
        grid-template-columns: 1fr;
    }

    .nx-footer-col:last-child {
        grid-column: span 1;
    }

    .nx-footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .nx-footer-legal a {
        margin-left: 0;
        margin-right: 20px;
    }
}