/* Estil "Clean Corporate" — extensions sobre Tailwind Play CDN */

:root {
    --primary: #1E40AF;
    --primary-dark: #1E3A8A;
    --primary-light: #3B82F6;
    --accent: #0EA5E9;
    --bg: #F8FAFC;
    --card: #FFFFFF;
    --border: #E2E8F0;
    --text: #0F172A;
    --text-muted: #64748B;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
}

body {
    font-family: 'Manrope', 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

h1, h2, h3 { letter-spacing: -0.02em; }

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
}

.btn-primary {
    background: var(--primary);
    color: white;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 10px;
    transition: background 0.15s ease;
    border: 0;
    cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-secondary {
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 10px;
    transition: all 0.15s ease;
    cursor: pointer;
}
.btn-secondary:hover { background: var(--bg); border-color: #CBD5E1; }

.pill {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Tabular numbers helper (Tailwind no té) */
.tabular-nums {
    font-variant-numeric: tabular-nums;
}
