/* Public site for campmobi.com.br.
   Static, no build step, no external requests — Caddy serves this folder directly.
   Kept deliberately plain: these pages exist so the app stores (and users) have a
   reachable privacy policy and support contact, not as a marketing site. */

:root {
  --brand: #FEBB22;
  --ink: #212121;
  --muted: #5a5a5a;
  --bg: #ffffff;
  --surface: #f7f7f7;
  --line: #e3e3e3;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

header.site {
  background: var(--brand);
  padding: 22px 24px;
}

header.site .inner,
main,
footer.site .inner {
  max-width: 760px;
  margin: 0 auto;
}

header.site a.brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

header.site nav {
  margin-top: 8px;
  font-size: 14px;
}

header.site nav a {
  color: #4a3d0c;
  text-decoration: none;
  margin-right: 18px;
}

header.site nav a:hover { text-decoration: underline; }

main {
  padding: 36px 24px 56px;
}

h1 {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

p.updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

h2 {
  font-size: 19px;
  margin: 34px 0 10px;
  letter-spacing: -0.2px;
}

h3 {
  font-size: 16px;
  margin: 22px 0 8px;
}

p, li { font-size: 15px; }
p { margin-bottom: 12px; }

ul, ol { margin: 0 0 14px 22px; }
li { margin-bottom: 6px; }

a { color: #8a6100; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px;
  font-size: 14px;
}

th, td {
  border: 1px solid var(--line);
  padding: 9px 11px;
  text-align: left;
  vertical-align: top;
}

th { background: var(--surface); font-weight: 600; }

.box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 18px 0;
}

.box p:last-child { margin-bottom: 0; }

footer.site {
  border-top: 1px solid var(--line);
  padding: 22px 24px 40px;
  color: var(--muted);
  font-size: 14px;
}

footer.site a { color: var(--muted); }

/* Wide tables must scroll inside themselves rather than push the page sideways. */
.scroll-x { overflow-x: auto; }
