/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  /* Fundo principal mais vivo (roxo profundo) */
  --bg: #050316;

  /* Cartões com leve gradiente para dar profundidade */
  --surface: radial-gradient(circle at top left, #1d1b3a, #0b0a1c);
  --surface-solid: #141329;

  /* Bordas um pouco mais claras para destacar os blocos */
  --border: #2f2b55;

  /* Texto e texto secundário com mais contraste */
  --text: #f9fafb;
  --text-muted: #9ca3af;

  /* Cor principal (roxos mais saturados) */
  --accent: #7c3aed;
  --accent-hover: #8b5cf6;

  /* Sucesso / erro mais vivos */
  --success: #22c55e;
  --error: #f97373;
}

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

html,
body {
  max-width: 100vw;
  min-height: 100vh;
  background: radial-gradient(circle at top, #111827 0, #020016 45%, #000 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
  font: inherit;
}

input,
textarea {
  font: inherit;
}

