:root {
  /* paleta do mock */
  --bg: #f4f5f7; /* fundo geral */
  --paper: #ffffff; /* cartões/branco */
  --ink: #1d1d1f; /* texto principal */
  --muted: #6b7280; /* texto secundário */
  --brand: #8bd111; /* verde principal */
  --brand-strong: #4aae1a; /* verde escuro para hovers/ícones */
  --brand-soft: #8bd111; /* verde bem claro (boxes pequenos) */
  --ring: #e5e7eb; /* bordas suaves */
  --chip: #eef2ff; /* azul muito claro */
  --accent-blue: #7685ff; /* fundo dos cards azuis */
  --accent-blue-strong: #6775f5;
  --accent-yellow: #ffc107; /* botões */
  --accent-yellow-strong: #e0aa00;

  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 6px 18px rgba(16, 24, 40, 0.06);

  --gap-xl: 40px;
  --gap-lg: 28px;
  --gap: 18px;
  --gap-sm: 10px;

  --max: 1200px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.5 "Inter", system-ui, Segoe UI, Roboto, Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
input,
textarea,
select {
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 12px;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}
.hide {
  display: none !important;
}
.center {
  display: grid;
  place-items: center;
}
.muted {
  color: var(--muted);
}
