:root {
    --color-primary: #0e167a;
    --color-primary-dark: #0a1059;
    --color-primary-light: #1a25a5;
    --color-accent: #ffffff;
    --color-text: #1a1d2e;
    --color-text-muted: #6b7280;
    --color-bg: #f5f6fb;
    --color-surface: #ffffff;
    --color-border: #e5e7eb;
    --color-shadow: rgba(14, 22, 122, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 6px rgba(14, 22, 122, 0.06);
    --shadow-md: 0 8px 24px rgba(14, 22, 122, 0.10);
    --shadow-lg: 0 18px 48px rgba(14, 22, 122, 0.14);
    --transition: 160ms cubic-bezier(0.4, 0, 0.2, 1);
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    height: 100%;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--color-primary);
    color: #ffffff;
}

/* Scrollbar discreta, adequada para totem */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(14, 22, 122, 0.18);
    border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(14, 22, 122, 0.32);
}
