/* ============================================================
   FOOTER GLOBAL — SIGv
   Hereda colores del tema activo
============================================================ */

.sigv-footer {
    margin-top: 48px;
    padding: 14px 16px;
    background: var(--color-surface, #ffffff);
    border-top: 1px solid var(--color-outline, rgba(0,0,0,0.08));
    font-size: 12px;
    color: var(--color-text-muted, #666);
}

.sigv-footer-inner {
    max-width: var(--layout-max-width, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.sigv-footer-left {
    font-weight: 600;
    color: var(--color-primary);
}

.sigv-footer-left span {
    margin-left: 6px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.sigv-footer-center {
    text-align: center;
    opacity: 0.75;
}

.sigv-footer-right {
    text-align: right;
    font-size: 11px;
    opacity: 0.8;
}

.sigv-footer-meta {
    white-space: nowrap;
}

/* ======================
   MÓVIL
====================== */
@media (max-width: 768px) {
    .sigv-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sigv-footer-right {
        text-align: center;
    }
}

/* ======================
Para que correo no grite
====================== */
.sigv-footer a{
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.sigv-footer a:hover{
    text-decoration: underline;
}

.sigv-footer-link {
    color: var(--color-vino, #6f1d1b);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s ease, text-shadow .2s ease;
}

.sigv-footer-link:hover {
    color: var(--color-verde, #2e7d32);
    text-shadow: 0 0 6px rgba(46,125,50,.35);
    text-decoration: underline;
}

