/* === FOOTER: Elegante y minimal === */
.niz-footer {
    background-color: var(--niz-darker);
    padding: 48px 0;
    position: relative;
}

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

.niz-footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.niz-footer-logo {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: var(--niz-transition);
    filter: grayscale(0.3);
}

.niz-footer-logo:hover {
    opacity: 0.9;
    filter: grayscale(0);
}

.niz-footer p {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.niz-footer-credit {
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.22) !important;
    margin-top: -8px;
}

.niz-footer-credit a {
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    transition: color 0.3s ease;
}

.niz-footer-credit a:hover {
    color: var(--niz-primary);
}
