:root {
    --bg: #ffffff;
    --fg: #0f0f0f;
    --muted: #6b7280;
    --card: #f6f6f6;
    --accent: #b68973;
    /* madera suave */
    --ring: #e5e7eb;
    --btn: #111111;
    --btn-fg: #ffffff;
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--fg);
    padding: 0;
}

/* utilidades generales */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}