/* MotoQG — site institucional. Paleta real do app (FlexColorScheme deepBlue). */
:root {
  --navy: #223A5E;
  --navy-700: #1A2C47;
  --teal: #208399;
  --ink: #1A1C1E;
  --muted: #5F6368;
  --line: #E5E7EB;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FB;
  --danger: #B71C1C;
  --ok: #2E7D32;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* Topo */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; max-width: 1100px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 10px; }
.brand b { font-size: 20px; font-weight: 800; letter-spacing: .3px; color: var(--navy); }

/* Hero */
.hero {
  text-align: center;
  padding: 56px 24px 64px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.hero img.logo { width: 132px; height: 132px; border-radius: 28px; box-shadow: 0 8px 30px rgba(34,58,94,.18); }
.hero h1 {
  font-size: clamp(30px, 6vw, 48px); font-weight: 800; letter-spacing: -.5px;
  color: var(--navy); margin: 24px 0 12px;
}
.hero p.lead { font-size: clamp(16px, 2.6vw, 20px); color: var(--muted); max-width: 620px; margin: 0 auto; }
.badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 18px;
  color: var(--ink); background: #fff; font-weight: 600; font-size: 14px;
}
.badge small { display: block; color: var(--muted); font-weight: 400; font-size: 11px; }

/* Seções */
section.features { padding: 56px 24px; }
section.features h2 { text-align: center; font-size: 26px; color: var(--navy); margin-bottom: 32px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.card {
  border: 1px solid var(--line); border-radius: 16px; padding: 22px;
  background: #fff;
}
.card .ic {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(34,58,94,.08);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px;
}
.card h3 { font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.card p { font-size: 14px; color: var(--muted); }

/* Rodapé */
.site-footer {
  border-top: 1px solid var(--line); padding: 32px 24px; text-align: center;
  color: var(--muted); font-size: 13px;
}
.site-footer .brand-mini { color: var(--navy); font-weight: 700; }

/* Páginas de conta (verify/reset) */
.account-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.account-card {
  width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 36px 28px; text-align: center;
  box-shadow: 0 8px 30px rgba(34,58,94,.08);
}
.account-card img.logo { width: 84px; height: 84px; border-radius: 20px; }
.account-card h1 { font-size: 22px; color: var(--navy); margin: 18px 0 8px; }
.account-card p { color: var(--muted); font-size: 15px; }
.field { text-align: left; margin-top: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.field input {
  width: 100%; border: 1px solid var(--line); background: #F1F3F5; border-radius: 14px;
  padding: 14px 16px; font-size: 15px; color: var(--ink); font-family: inherit;
}
.field input:focus { outline: 2px solid var(--navy); border-color: var(--navy); background: #fff; }
.btn {
  width: 100%; border: 0; border-radius: 14px; padding: 15px; margin-top: 22px;
  background: var(--navy); color: #fff; font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: var(--navy-700); }
.btn:disabled { opacity: .6; cursor: default; }
.status { margin-top: 18px; font-size: 14px; min-height: 20px; }
.status.ok { color: var(--ok); }
.status.err { color: var(--danger); }
.spinner {
  width: 26px; height: 26px; border: 3px solid rgba(34,58,94,.2); border-top-color: var(--navy);
  border-radius: 50%; animation: spin .8s linear infinite; margin: 8px auto 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hide { display: none; }
