/* Placeholder da Fase 2 — estilo mínimo até a migração da landing real. */
:root {
  --background: #faf9f7;
  --foreground: #1c1917;
  --muted: #78716c;
  --primary: #16a34a;
  --primary-foreground: #ffffff;
  --border: #e7e5e4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--background);
  color: var(--foreground);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.hero {
  max-width: 32rem;
  padding: 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 0 0 0.5rem;
}

.hero p {
  margin: 0.25rem 0;
  font-size: 1.25rem;
}

.hero .subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.75rem;
}

.actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
  background: #ffffff;
}

.button.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}
