
html, body { height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 14px; color: inherit; }
a { color: inherit; text-decoration: none; }

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

/* Scrollbar ultra-sutil (Apple style) */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 99px; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-track { background: transparent; }

/* Transições globais suaves */
*, *::before, *::after {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Seleção */
::selection { background: rgba(245,197,24,0.3); color: var(--ink); }

.logo-svg { display: block; }
