/* Landing do SISARGOS. Mesmas cores e fontes do app (desktop/src/index.css). */
:root {
  --bg: #f2f3ee;
  --surface: #ffffff;
  --alt: #e8ebe3;
  --ink: #17261e;
  --muted: #56625a;
  --line: #dde2d8;
  --brand: #2e6b4a;
  --brand-hover: #245c45;
  --on-brand: #ffffff;
  --hot: #c8702f;
  --dark: #111814;
  --dark-ink: #eef1ec;
  --lo: #8db39a;
  --mid: #2e6b4a;
  --radius: 18px;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1512;
    --surface: #19231d;
    --alt: #141c17;
    --ink: #eef1ec;
    --muted: #a8b2ab;
    --line: #2a362f;
    --brand: #5fae82;
    --brand-hover: #74bd94;
    --on-brand: #0c1611;
    --hot: #e8914e;
    --lo: #5e8a6e;
    --mid: #a9d1b4;
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.12; }
h1, h2 { font-family: 'Unbounded', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(34px, 5.2vw, 60px); }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: 18px; font-weight: 600; }

.wrap { width: min(1180px, 100% - 32px); margin-inline: auto; }

/* Marca */
.lo { fill: var(--lo); }
.mid { fill: var(--mid); }
.hot { fill: var(--hot); }
.ink { fill: var(--ink); }
.on-dark { --lo: #5e8a6e; --mid: #a9d1b4; --hot: #e8914e; --ink: #eef1ec; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 30px; height: 30px; }
.brand-name { height: 13px; width: auto; aspect-ratio: 6364 / 802; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  border-radius: 14px; border: 1px solid transparent;
  background: var(--brand); color: var(--on-brand);
  font: 600 16px 'Outfit', sans-serif; text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--brand-hover); }
.btn:active { transform: scale(.98); }
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 15px; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); }
.btn-light { background: #eef1ec; color: #111814; }
.btn-light:hover { background: #ffffff; }
.btn:focus-visible, .lang button:focus-visible, .links a:focus-visible { outline: 3px solid var(--hot); outline-offset: 2px; }

/* Navegação */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; gap: 24px; min-height: 64px; }
.links { display: flex; gap: 22px; margin-left: 12px; }
.links a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 15px; }
.links a:hover { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.lang { display: flex; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.lang button {
  min-width: 44px; min-height: 36px; border: 0; background: transparent;
  color: var(--muted); font: 600 13px 'Outfit', sans-serif; cursor: pointer;
}
.lang button[aria-pressed="true"] { background: var(--ink); color: var(--bg); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 72px 0 88px; }
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(circle, var(--line) 1.6px, transparent 1.8px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 80% 30%, #000 20%, transparent 75%);
}
.hero-in { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--hot); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
.lead { margin: 22px 0 0; font-size: 19px; color: var(--muted); max-width: 34em; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.fine { margin: 14px 0 0; font-size: 14px; color: var(--muted); }

/* Prints */
.shot { margin: 0; }
.shot img {
  /* height auto: sem ele o height="1000" do HTML vence a proporção. */
  width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 30px 60px -30px rgba(17, 24, 20, .45);
}
.shot figcaption { margin-top: 12px; color: var(--muted); font-size: 15px; }
/* Sem o arquivo do print ainda: moldura com o símbolo, no lugar da imagem quebrada. */
.shot.sem-print img { visibility: hidden; }
.shot.sem-print { position: relative; }
.shot.sem-print::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; aspect-ratio: 16 / 10;
  border-radius: var(--radius); border: 1px dashed var(--line);
  background:
    radial-gradient(circle, var(--line) 1.6px, transparent 1.8px) 0 0 / 22px 22px,
    var(--surface);
}
.shot-hero img { aspect-ratio: 16 / 10; }

/* Fluxo */
.band { background: var(--dark); color: var(--dark-ink); padding: 88px 0; }
.band .sub { color: #a8b2ab; }
.sub { margin: 14px 0 0; font-size: 18px; color: var(--muted); max-width: 40em; }
.steps { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; counter-reset: s; }
.steps li { padding: 22px 20px 24px; border-radius: var(--radius); background: #19231d; border: 1px solid #2a362f; }
.steps .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: #2a362f; color: #a9d1b4; font: 700 15px 'Unbounded', sans-serif;
}
.steps .n.hot { background: #e8914e; color: #111814; }
.steps h3 { margin-top: 16px; }
.steps p { margin: 8px 0 0; color: #a8b2ab; font-size: 15.5px; }

/* Recursos */
.section { padding: 96px 0; }
.section-alt { background: var(--alt); }
.grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.card h3::before {
  content: ''; display: block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--hot); margin-bottom: 16px;
}
.card p { margin: 10px 0 0; color: var(--muted); font-size: 16px; }

.shots { margin-top: 40px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 28px; }

/* Brasil e Paraguai */
.region { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.facts li { display: flex; align-items: baseline; gap: 16px; padding: 18px 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.facts strong { font: 700 20px 'Unbounded', sans-serif; color: var(--brand); white-space: nowrap; min-width: 128px; }
.facts span { color: var(--muted); }

/* Download */
.download { background: var(--dark); color: var(--dark-ink); padding: 96px 0; text-align: center; }
.download-in { display: flex; flex-direction: column; align-items: center; }
.download-mark { width: 72px; height: 72px; margin-bottom: 24px; }
.download p { margin: 14px 0 30px; color: #a8b2ab; font-size: 18px; }

/* Rodapé */
.foot { border-top: 1px solid var(--line); padding: 36px 0 44px; }
.foot-in { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; }
.foot p { margin: 0; color: var(--muted); font-size: 14px; }
.foot .copy { margin-left: auto; }

@media (max-width: 1000px) {
  .hero-in, .region { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .links { display: none; }
  .hero { padding: 48px 0 64px; }
  .steps, .grid, .shots { grid-template-columns: minmax(0, 1fr); }
  .section, .band, .download { padding: 64px 0; }
  .facts strong { min-width: 96px; font-size: 17px; }
  .foot .copy { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
