/* =============================================
   VARIÁVEIS
   ============================================= */
:root {
  color-scheme: light;
  --ink: #111016;
  --ink-2: #2d2938;
  --muted: #5a5368;
  --line: #dcd6e9;
  --paper: #f6f2ff;
  --white: #ffffff;
  --black: #05040a;
  --violet: #5f00dc;
  --violet-2: #6f38ef;
  --violet-deep: #30265b;
  --aqua: #70d8e7;
  --green: #b7ffd9;
  --max: 1220px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =============================================
   RESET
   ============================================= */
::selection {
  background: var(--violet);
  color: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

:focus-visible {
  outline: 2px solid var(--violet-2);
  outline-offset: 3px;
  border-radius: 3px;
}

p, h1, h2, h3 {
  margin: 0;
}

/* =============================================
   TIPOGRAFIA
   ============================================= */
h1 {
  max-width: 680px;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 0.94;
  font-weight: 780;
  text-wrap: balance;
}

h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1;
  font-weight: 780;
  text-wrap: balance;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}
