/**
 * Farol Interior — Design Tokens
 * Auto-generated. Do not edit manually.
 */
:root {
    /* ── Core palette ─────────────────────────────── */
    --color-primary:       #8b5cf6;
    --color-primary-dark:  #7c3aed;
    --color-primary-rgb:   139,92,246;
    --color-secondary:     #f5f3ff;
    --color-accent:        #a78bfa;
    --color-heading:       #2e1065;
    --color-text:          #374151;
    --color-text-light:    #6b7280;
    --color-bg:            #ffffff;
    --color-bg-alt:        #faf5ff;
    --color-border:        #ddd6fe;
    --color-header-bg:     rgba(255,255,255,0.95);
    --color-header-text:   #2e1065;
    --color-footer-bg:     #2e1065;
    --color-footer-text:   #ddd6fe;

    /* ── Semantic tokens ──────────────────────────── */
    --color-star:          var(--color-accent);
    --color-success:       #16a34a;
    --color-error:         #dc2626;
    --color-warning-bg:    var(--color-secondary);
    --color-warning-border: var(--color-border);
    --color-warning-text:  var(--color-heading);

    /* ── Typography ───────────────────────────────── */
    --font-heading:        'Lora', Georgia, serif;
    --font-body:           'Roboto', system-ui, sans-serif;

    /* ── Borders & Shadows ────────────────────────── */
    --border-radius:       12px;
    --border-radius-lg:    24px;
    --box-shadow:          0 4px 24px rgba(139,92,246,0.12);
    --box-shadow-hover:    0 12px 40px rgba(0,0,0,0.15);
    --hero-overlay:        linear-gradient(135deg, rgba(139,92,246,0.86) 0%, rgba(124,58,237,0.78) 100%);
    --transition:          0.25s ease;

    /* ── Layout ───────────────────────────────────── */
    --header-height:       72px;
    --container-width:     1200px;
    --section-padding:     80px 0;

    /* ── Spacing scale ────────────────────────────── */
    --space-xs:   4px;
    --space-sm:   8px;
    --space-md:   16px;
    --space-lg:   24px;
    --space-xl:   32px;
    --space-2xl:  48px;
    --space-3xl:  64px;
    --space-4xl:  80px;

    /* ── Typography scale ─────────────────────────── */
    --base-font-size:      16px;
    --line-height:         1.8;
    --heading-weight:      700;
    --heading-transform:   none;
    --heading-letter-spacing: normal;
}
