:root {
  --cor-primaria: #7c3aed;
  --cor-primaria-escura: #6d28d9;
  --cor-secundaria: #ec4899;
  --cor-fundo: #0f0520;
  --cor-fundo-claro: #1a0f2e;
  --cor-texto: #e2e8f0;
  --cor-texto-secundario: #cbd5e1;
  --cor-borda: #312e81;
  --cor-sucesso: #10b981;
  --cor-aviso: #f59e0b;
  --espacamento-pequeno: 0.5rem;
  --espacamento-medio: 1rem;
  --espacamento-grande: 2rem;
  --espacamento-xl: 3rem;
  --radius-pequeno: 4px;
  --radius-medio: 8px;
  --radius-grande: 16px;
  --sombra-pequena: 0 2px 4px rgba(0, 0, 0, 0.3);
  --sombra-media: 0 4px 12px rgba(0, 0, 0, 0.4);
  --sombra-grande: 0 8px 24px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Familjen Grotesk", sans-serif;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cor-primaria);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--cor-secundaria);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style-position: inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--espacamento-medio);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: var(--espacamento-medio);
}

.cep-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
