/* Estilos Minimalistas para el Footer Legal */
.legal-footer {
    width: 100%;
    padding: 0.8rem 0;
    /* REDUCIDO: Antes 1rem/2rem */
    margin-top: 1rem;
    /* MANTENIDO: Espacio mínimo necesario */
    border-top: 1px solid var(--border-color);
    /* Usa variables existentes si es posible, o fallback */
    border-top-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    /* REDUCIDO: Antes 0.85rem */
    color: #888;
}

.legal-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    /* REDUCIDO: Antes 1rem - Menos espacio entre enlaces y copyright */
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #fff;
    /* O el color de acento de la web */
    text-decoration: underline;
}

.legal-copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Ajustes Responsive */
@media (max-width: 768px) {
    .legal-footer {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .legal-links {
        gap: 1rem;
        flex-direction: column;
        /* Apilar en móvil para mejor toque */
    }
}

/* --- ANIMACIÓN PULSO NOVEDADES (NUEVO) --- */
@keyframes pulse-glow-novedades {
    0% {
        color: #ff9800;
        text-shadow: 0 0 0px rgba(255, 152, 0, 0);
    }
    50% {
        color: #ff9800;
        text-shadow: 0 0 10px rgba(255, 152, 0, 0.8);
    }
    100% {
        color: #ff9800;
        text-shadow: 0 0 0px rgba(255, 152, 0, 0);
    }
}

.new-novedad-pulse {
    animation: pulse-glow-novedades 2s infinite;
    font-weight: 600;
}