/* ─────────────────────────────────────────────
   BASE — Reset, tipografia global, scrollbar
───────────────────────────────────────────── */

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

html,
body {
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #F0F8FF;
  color: #344054;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5,
p, a, span, button,
input, textarea, select, label {
  font-family: 'Poppins', sans-serif;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar        { width: 3px; }
::-webkit-scrollbar-track  { background: #F0F8FF; }
::-webkit-scrollbar-thumb  { background: #21BFEA; border-radius: 2px; }
