@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --wine: #7A2836;
  --clay: #E8A87C;
  --bg: #FBF6F0;
  --ink: #241B19;
  --ink-soft: #5B4A44;
  --muted: #8A7A73;
  --muted-2: #B0A39D;
  --reprovado: #8B4A42;
  --border: rgba(122, 40, 54, 0.10);
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); font-family: 'Manrope', sans-serif; color: var(--ink); }
a { color: var(--wine); text-decoration: none; }
a:hover { color: #5A1E29; }
button { cursor: pointer; font-family: 'Manrope', sans-serif; }
input { font-family: 'Manrope', sans-serif; }
input::placeholder { color: var(--muted-2); }

.mono { font-family: 'IBM Plex Mono', monospace; }
.serif { font-family: 'DM Serif Display', serif; font-weight: 400; }

.btn-primary {
  font-weight: 700; color: #fff; background: var(--wine); border: none;
  border-radius: 999px; padding: 12px 22px; font-size: 14px;
}
.btn-outline {
  font-weight: 700; color: var(--wine); background: #fff; border: 1px solid var(--wine);
  border-radius: 999px; padding: 8px 16px; font-size: 12.5px;
}
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px;
}
.pill {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px; display: inline-block;
}
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 64px; border-bottom: 1px solid var(--border); background: #fff;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { position: relative; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark svg { position: absolute; top: 0; left: 0; }
.logo-mark span { position: relative; font-family: 'DM Serif Display', serif; font-size: 12px; letter-spacing: 0.5px; color: #24211F; }
.container { max-width: 1248px; margin: 0 auto; padding: 0 64px; }

.error-msg { color: var(--reprovado); font-size: 13px; font-family: 'Manrope', sans-serif; min-height: 18px; }
