const { Card, Button, Badge, Divider } = window.PilatesLifeStudioDesignSystem_f49721; function IntroCard({ item, tone }) { const on = tone === 'ink'; return (
{item.mode}

{item.name}

{item.price} · {item.duration}

{item.body}

); } function PlanTable({ table }) { const head = ['# Clases', 'Valor x clase', 'Plan', 'Pago en efectivo']; return (

{table.title}

{head.map(h => ( ))} {table.rows.map(r => ( ))}
{h}
{r.n} {r.unit} {r.plan} {r.cash}
); } function PricingPage({ onBook }) { return (
Planes y precios 2026

Elige tu plan

{PLAN_TABLES.map(t => )}

Los valores en la última columna aplican con pago en efectivo. Clases de 50 minutos, en camilla reformer.

Condiciones y restricciones
    {CONDITIONS.map(c => (
  • {c}
  • ))}
Compra y reserva

¡Adquiere tu paquete aquí!

Escríbenos por WhatsApp y {CONTACT.person.split(' ')[0]} te confirma cupo y pago el mismo día.

WhatsApp

{CONTACT.phone}

Instagram

@{CONTACT.instagram}

Transferencia

{CONTACT.bank}

); } Object.assign(window, { PricingPage });