@charset "utf-8";

:root {
  --navy-950: #08111f;
  --navy-900: #0a1729;
  --navy-800: #0d2544;
  --blue: #1266d6;
  --blue-2: #2f82e8;
  --blue-soft: #eaf3ff;
  --orange: #f0a500;
  --green: #2f9d3a;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #f9fbfe;
  --text: #172033;
  --muted: #667085;
  --border: #dfe6f0;
  --shadow-sm: 0 8px 24px rgba(18, 39, 73, .07);
  --shadow-lg: 0 24px 70px rgba(8, 28, 61, .14);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); }
img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: #e7eef8;
  background: rgba(8, 17, 31, .96);
  border-bottom: 1px solid rgba(88, 166, 255, .22);
  box-shadow: 0 7px 24px rgba(0, 0, 0, .18);
}
.header-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.app-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}
.app-logo-wrap {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(240,165,0,.34);
  box-shadow: 0 0 22px rgba(240,165,0,.10);
}
.app-logo {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}
.app-brand-copy { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.app-brand-title {
  color: var(--orange);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.app-brand-sub { color: #b9c8dd; font-size: 11px; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  color: #c7d4e7;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 9px;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: #fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10); outline: none; }
.site-nav .nav-play {
  margin-left: 5px;
  color: #fff;
  background: var(--blue);
  border-color: rgba(118,180,255,.55);
  box-shadow: 0 8px 18px rgba(18,102,214,.25);
}
.site-nav .nav-play:hover,
.site-nav .nav-play:focus-visible { background: #1874eb; }

main { max-width: 1160px; margin: 0 auto; padding: 28px 22px 0; }

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 32px;
  align-items: center;
  min-height: 570px;
  padding: 58px 58px 54px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 14%, rgba(47,130,232,.28), transparent 28%),
    radial-gradient(circle at 78% 88%, rgba(47,157,58,.15), transparent 27%),
    linear-gradient(135deg, #07111f 0%, #0b1e38 56%, #0c315d 100%);
  box-shadow: var(--shadow-lg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, transparent 0%, #000 58%, #000 100%);
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #d7e7fb;
  background: rgba(88,166,255,.10);
  border: 1px solid rgba(88,166,255,.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(240,165,0,.12); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: .99;
  letter-spacing: -2.1px;
}
.hero h1 span { color: #7db7ff; }
.hero .lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #c6d4e7;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  border: 1px solid rgba(118,180,255,.55);
  box-shadow: 0 10px 24px rgba(18,102,214,.22);
  text-decoration: none;
  font-weight: 800;
}
.cta:hover, .cta:focus-visible { background: #1874eb; box-shadow: 0 14px 28px rgba(18,102,214,.28); outline: none; }
.cta.secondary { color: #dbe9fb; background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.16); box-shadow: none; }
.cta.secondary:hover, .cta.secondary:focus-visible { background: rgba(255,255,255,.10); color: #fff; }
.play-icon { width: 18px; height: 18px; fill: currentColor; flex: 0 0 18px; }
.arrow-icon { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }

.hero-points { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 24px; color: #aebfd4; font-size: 13px; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points span::before { content: "✓"; color: #73ca78; font-weight: 900; }

.hero-visual { display: grid; place-items: center; }
.app-showcase {
  width: min(100%, 390px);
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 28px 60px rgba(0,0,0,.28);
}
.showcase-top { display: flex; align-items: center; gap: 15px; }
.showcase-top picture { display: block; flex: 0 0 104px; width: 104px; height: 104px; }
.hero-app-logo {
  width: 104px;
  height: 104px;
  flex: 0 0 104px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.showcase-title small { display: block; color: #9eb6d2; font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.showcase-title strong { display: block; font-size: 21px; line-height: 1.15; }
.showcase-title span { display: block; margin-top: 6px; color: #c8d7e9; font-size: 13px; }
.mini-dashboard { margin-top: 22px; padding: 16px; border-radius: 17px; background: rgba(5,15,29,.48); border: 1px solid rgba(255,255,255,.10); }
.mini-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 13px; color: #b8c9dc; font-size: 12px; }
.status-pill { color: #85db8d; background: rgba(47,157,58,.14); border: 1px solid rgba(115,202,120,.20); padding: 4px 8px; border-radius: 999px; font-weight: 800; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.mini-card { min-height: 78px; padding: 12px; border-radius: 13px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.08); }
.mini-card b { display: block; color: #fff; font-size: 13px; }
.mini-card span { display: block; margin-top: 5px; color: #9fb3cb; font-size: 11px; line-height: 1.35; }
.mini-card .mini-icon { font-size: 20px; line-height: 1; margin-bottom: 7px; }

.section { padding: 78px 0 0; content-visibility: auto; contain-intrinsic-size: 1px 700px; }
.section-heading { max-width: 720px; margin-bottom: 28px; }
.section-kicker { margin: 0 0 8px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .9px; text-transform: uppercase; }
.section-heading h2 { margin: 0; font-size: clamp(30px, 4vw, 44px); line-height: 1.1; letter-spacing: -1.1px; }
.section-heading p { margin: 12px 0 0; color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature {
  min-height: 188px;
  padding: 22px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.feature:hover { box-shadow: 0 14px 34px rgba(18,39,73,.10); border-color: #cbd7e8; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 12px; color: var(--blue); background: var(--blue-soft); font-size: 21px; }
.feature strong { display: block; margin-bottom: 7px; font-size: 17px; }
.feature span { color: var(--muted); font-size: 14px; }

.trust-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.trust-copy h2 { margin: 0; font-size: clamp(30px, 4vw, 42px); line-height: 1.1; letter-spacing: -1px; }
.trust-copy p { margin: 14px 0 0; color: var(--muted); }
.trust-list { display: grid; gap: 10px; }
.trust-item { display: flex; gap: 12px; padding: 14px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--border); }
.trust-check { flex: 0 0 30px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-weight: 900; }
.trust-item strong { display: block; font-size: 14px; }
.trust-item span { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; }

.docs-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: 34px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), #0d2d52);
  box-shadow: var(--shadow-lg);
}
.docs-panel h2 { margin: 0; font-size: 31px; line-height: 1.15; }
.docs-panel p { margin: 12px 0 0; color: #b9cae0; }
.doc-links { display: grid; gap: 10px; }
.doc-links a { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 16px; border-radius: 13px; color: #edf5ff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); text-decoration: none; font-weight: 800; }
.doc-links a:hover, .doc-links a:focus-visible { background: rgba(255,255,255,.11); outline: none; }
.doc-links a span:last-child { color: #80b8ff; font-size: 19px; }

.contact-strip { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0 10px; }
.contact-strip strong { display: block; font-size: 16px; }
.contact-strip span { color: var(--muted); font-size: 13px; }
.contact-strip a { font-weight: 800; text-decoration: none; }

/* páginas institucionais */
.legal-main { max-width: 940px; padding-top: 34px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.card h1 { margin: 0; font-size: clamp(32px, 4vw, 44px); line-height: 1.12; letter-spacing: -1px; }
.card h2 { margin: 30px 0 10px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 23px; line-height: 1.25; }
.card h3 { margin: 22px 0 8px; }
.card p { margin: 10px 0; }
.card ul { padding-left: 22px; }
.muted { color: var(--muted); }
.card .cta { margin-top: 4px; }
.card .cta:not(.secondary) { color: #fff; }

footer { max-width: 1160px; margin: 22px auto 0; padding: 22px 22px 36px; color: #475467; font-size: 13px; }
footer a { color: #175cd3; text-decoration: underline; text-underline-offset: 2px; }
.footer-line { height: 1px; margin-bottom: 20px; background: var(--border); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (max-width: 920px) {
  .header-shell { align-items: flex-start; flex-direction: column; gap: 9px; padding-bottom: 9px; }
  .site-nav { width: 100%; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; padding-top: 8px; border-top: 1px solid rgba(88,166,255,.15); }
  .site-nav a:not(.nav-play) { min-width: 0; padding-inline: 4px; }
  .site-nav .nav-play { grid-column: 1 / -1; margin: 3px 0 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 46px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { margin-top: 4px; }
  .app-showcase { width: min(100%, 520px); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-panel, .docs-panel { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .header-shell { padding: 8px 12px 9px; }
  .app-logo-wrap { width: 50px; height: 50px; flex-basis: 50px; }
  .app-logo { width: 44px; height: 44px; }
  .app-brand-title { font-size: 16px; letter-spacing: 1px; }
  .app-brand-sub { font-size: 10px; }
  .site-nav a:not(.nav-play) { min-height: 34px; padding: 7px 2px; font-size: 10.5px; }
  .site-nav .nav-play { min-height: 36px; }
  main { padding: 16px 12px 0; }
  .hero { padding: 32px 22px 26px; border-radius: 20px; gap: 24px; }
  .hero h1 { font-size: clamp(38px, 12vw, 51px); letter-spacing: -1.5px; }
  .hero .lead { font-size: 16px; margin-top: 17px; }
  .cta-row { display: grid; grid-template-columns: 1fr; }
  .cta { width: 100%; }
  .hero-points { display: grid; gap: 7px; }
  .app-showcase { padding: 18px; border-radius: 21px; }
  .hero-app-logo { width: 82px; height: 82px; flex-basis: 82px; }
  .showcase-title strong { font-size: 18px; }
  .showcase-top { gap: 12px; }
  .app-showcase { padding: 14px 16px; border-radius: 18px; }
  .hero-app-logo { width: 68px; height: 68px; flex-basis: 68px; }
  .showcase-title small { font-size: 10px; }
  .showcase-title strong { font-size: 16px; }
  .showcase-title span { font-size: 11px; margin-top: 4px; }
  .mini-dashboard { display: none; }
  .section { padding-top: 54px; }
  .section-heading { margin-bottom: 20px; }
  .section-heading p { font-size: 15px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: auto; }
  .trust-panel, .docs-panel { padding: 24px 20px; border-radius: 20px; }
  .contact-strip { align-items: flex-start; flex-direction: column; }
  .card { padding: 24px 20px; border-radius: 18px; }
  footer { padding-inline: 12px; }
}
