:root {
  color-scheme: light;
  --navy: #102c48;
  --blue: #1262b3;
  --cyan: #1cbbd1;
  --cyan-light: #e0f7fa;
  --bg: #f3f6fa;
  --surface: #fff;
  --surface-2: #edf2f7;
  --text: #192e43;
  --muted: #52677b;
  --line: #dbe4ed;
  --danger: #ac293b;
  --success: #14664e;
  --shadow: 0 5px 22px #17395408;
  --radius: 14px;
  --font: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
}
:root[data-theme="escuro"] {
  color-scheme: dark;
  --bg: #101c2b;
  --surface: #18293d;
  --surface-2: #20354c;
  --text: #edf4fa;
  --muted: #adbed1;
  --line: #35506c;
  --blue: #7bb9fa;
  --cyan-light: #123f4b;
  --danger: #ff97a4;
  --success: #75d5b3;
  --shadow: 0 5px 22px #0002;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.5 var(--font);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
a {
  color: var(--blue);
}
:focus-visible {
  outline: 3px solid #079eb7;
  outline-offset: 3px;
}
::selection {
  background: #b5eaf4;
  color: #102c48;
}
button,
input,
select,
textarea {
  border-radius: 8px;
}
input,
select,
textarea {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 10px 12px;
  min-width: 0;
  width: 100%;
}
textarea {
  resize: vertical;
  min-height: 95px;
}
label {
  font-size: 14px;
  font-weight: 600;
  display: grid;
  gap: 6px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1.2;
}
h2 {
  font-size: 23px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 17px;
}
small {
  font-size: 13px;
}
button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  transition:
    background 0.15s,
    border-color 0.15s;
}
button:hover {
  background: var(--surface-2);
  border-color: #a0b5c8;
}
.primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.primary:hover {
  background: #1a446c;
  color: white;
}
.danger {
  color: var(--danger);
}
.quiet {
  background: transparent;
  border-color: transparent;
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.muted {
  color: var(--muted);
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
}
.row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.stack {
  display: grid;
  gap: 16px;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.full {
  grid-column: 1/-1;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 600;
}
.pill {
  border-radius: 20px;
  padding: 5px 10px;
  background: var(--surface-2);
  font-size: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  background: var(--surface);
  padding: 10px;
}
.skip-link:focus {
  top: 10px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
