/* ── PALLACE PARTS – Variáveis e Reset Global ── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:   #0a0a0a;
  --dark:    #111214;
  --card:    #17191c;
  --border:  #2a2d33;
  --accent:  #4762d8;
  --accent2: #2b3147;
  --text:    #e8e8e8;
  --muted:   #7a7f8a;
  --white:   #ffffff;
  --success: #22c55e;
  --error:   #ef4444;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
