:root {
  --navy: #0d1728;
  --navy-2: #082741;
  --teal: #0b4a4f;
  --green: #26c86a;
  --green-2: #129b57;
  --blue: #2563eb;
  --orange: #b55205;
  --ink: #0b263a;
  --muted: #5c7188;
  --soft: #f3f8fa;
  --soft-2: #eaf4f3;
  --card: #ffffff;
  --border: #dbe7ed;
  --shadow: 0 26px 70px rgba(5, 25, 45, .18);
  --soft-shadow: 0 14px 40px rgba(20, 42, 62, .08);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.65; margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; color: var(--ink); letter-spacing: -.045em; line-height: 1.05; }
h1 { font-size: clamp(2.65rem, 5vw, 5.2rem); color: #fff; }
h2 { font-size: clamp(2rem, 3.5vw, 3.6rem); }
h3 { font-size: 1.05rem; letter-spacing: -.025em; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.mt-lg { margin-top: 38px; }
.surface { background: linear-gradient(180deg, #f7fbfc, #eef7f6); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--green-2);
  font-weight: 900;
  letter-spacing: .04em;
  font-size: .82rem;
  text-transform: uppercase;
}
.eyebrow span { width: 9px; height: 9px; border-radius: 999px; background: var(--green); box-shadow: 0 0 18px rgba(38,200,106,.9); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 13px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; box-shadow: 0 14px 30px rgba(18,155,87,.28); }
.btn-secondary { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.20); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, calc((100vw - var(--container)) / 2));
  background: rgba(9, 23, 39, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 900; }
.brand-logo { width: 48px; height: 48px; border-radius: 16px; box-shadow: 0 16px 32px rgba(0,0,0,.22); }
.brand-name { display: grid; line-height: 1; }
.brand-name strong { font-size: 1.15rem; letter-spacing: -.04em; }
.brand-name span { color: var(--green); font-size: .87rem; text-transform: uppercase; letter-spacing: .09em; }
.main-nav { display: flex; align-items: center; gap: 26px; color: #fff; font-weight: 800; font-size: .95rem; }
.main-nav a:not(.nav-cta) { opacity: .9; }
.main-nav a:hover { opacity: 1; color: #97f1bd; }
.nav-cta { padding: 12px 18px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--green-2)); box-shadow: 0 16px 32px rgba(18,155,87,.28); }
.nav-toggle { display: none; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.09); color: #fff; border-radius: 12px; padding: 9px 12px; font-weight: 900; }

.hero {
  position: relative;
  min-height: 710px;
  padding: 38px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 42%, rgba(38,200,106,.35), transparent 27%),
    linear-gradient(135deg, #081426 0%, #09243d 50%, #07523e 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 86px;
  background: #f7fbfc;
  box-shadow: 0 -20px 55px rgba(255,255,255,.75);
}
.hero-bg-glow {
  position: absolute;
  width: 740px; height: 740px;
  border-radius: 50%;
  right: -320px; bottom: -350px;
  background: rgba(38,200,106,.20);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
}
.hero-copy { padding: 64px 0 120px; }
.hero-eyebrow { color: #8ef4bd; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); padding: 9px 13px; border-radius: 999px; text-transform: none; letter-spacing: 0; }
.hero-lead { color: rgba(255,255,255,.82); max-width: 590px; font-size: 1.14rem; margin: 22px 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .86rem;
  font-weight: 900;
}
.trust-row svg { width: 18px; height: 18px; fill: none; stroke: #e9fff2; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-row svg path { fill: none; }

.hero-visual { position: relative; min-height: 650px; }
.product-window, .login-card { background: rgba(255,255,255,.96); border: 1px solid rgba(210,226,234,.9); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.map-window { position: absolute; right: 0; top: 36px; width: min(800px, 64vw); }
.browser-top { display: flex; gap: 8px; padding: 13px 16px; background: linear-gradient(180deg, #13283b, #0a1827); }
.browser-top span { width: 10px; height: 10px; border-radius: 50%; background: #91a9b7; }
.browser-top span:nth-child(1) { background: #8ecbd1; }
.browser-top span:nth-child(2) { background: #6fb79b; }
.map-app { padding: 14px; background: #f3f7f8; }
.map-head { margin-bottom: 12px; display: grid; gap: 4px; }
.map-head strong { font-size: 1.05rem; letter-spacing: -.03em; }
.map-head small { color: #60748a; }
.map-layout { display: grid; grid-template-columns: 1fr 250px; gap: 14px; }
.satellite-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 24% 20%, #d7c4af 0 5%, transparent 6%),
    radial-gradient(circle at 50% 72%, #1d6b55 0 10%, transparent 11%),
    linear-gradient(28deg, transparent 0 42%, rgba(255,255,255,.36) 43% 45%, transparent 46%),
    linear-gradient(115deg, transparent 0 55%, rgba(255,255,255,.24) 56% 58%, transparent 59%),
    linear-gradient(70deg, #a8a095 0 8%, #625f5b 8% 13%, #bfaa94 13% 22%, #676b6b 22% 29%, #d0b59c 29% 38%, #3c5047 38% 46%, #768787 46% 54%, #a87b65 54% 62%, #535b5a 62% 70%, #cab09c 70% 100%);
}
.satellite-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.16) 0 2px, transparent 2px 48px),
    linear-gradient(0deg, rgba(0,0,0,.08) 0 1px, transparent 1px 52px),
    radial-gradient(circle at 60% 38%, rgba(8,23,35,.38), transparent 23%);
  opacity: .75;
}
.zoom { position: absolute; z-index: 3; left: 13px; width: 31px; height: 31px; background: #fff; border: 0; font-size: 1.2rem; font-weight: 900; }
.plus { top: 14px; border-radius: 8px 8px 0 0; }
.minus { top: 45px; border-top: 1px solid #dbe4ea; border-radius: 0 0 8px 8px; }
.map-type { position: absolute; z-index: 3; right: 13px; top: 13px; background: #fff; padding: 12px; border-radius: 10px; box-shadow: 0 12px 24px rgba(0,0,0,.15); display: grid; gap: 10px; color: #333; font-size: .83rem; font-weight: 800; }
.map-type label { display: flex; align-items: center; gap: 7px; }
.sent-polygon { position: absolute; z-index: 3; bottom: 80px; left: 156px; width: 66px; height: 92px; border: 6px solid #00d5ed; background: rgba(38,200,106,.18); clip-path: polygon(14% 6%, 86% 19%, 82% 94%, 12% 80%, 2% 36%); filter: drop-shadow(0 14px 20px rgba(0,0,0,.24)); }
.map-popup { position: absolute; z-index: 4; top: 122px; left: 58px; width: 290px; padding: 14px 16px; background: rgba(255,255,255,.97); border-radius: 14px; color: #2d3338; font-size: .76rem; box-shadow: 0 24px 42px rgba(0,0,0,.24); }
.map-popup button { position: absolute; right: 9px; top: 7px; border: 0; background: transparent; color: #7c858c; font-size: 1.1rem; }
.map-popup p { margin: 2px 0; color: #343a40; line-height: 1.35; }
.map-popup hr { border: 0; border-top: 1px solid #d4d9dc; margin: 8px 0; }
.search-panel { display: grid; align-content: start; gap: 14px; }
.search-card { background: #fff; border-radius: 18px; padding: 16px; box-shadow: 0 14px 26px rgba(8,28,46,.08); }
.search-card h3 { margin-bottom: 10px; font-size: 1.06rem; }
.search-card p { font-size: .8rem; margin-bottom: 10px; }
.search-row { display: flex; gap: 8px; align-items: center; justify-content: space-between; padding: 9px; border: 1px solid #d7e1e8; border-radius: 12px; color: #7a8da0; background: #fff; font-size: .78rem; }
.search-row button { border: 0; border-radius: 9px; background: var(--blue); color: #fff; padding: 8px 11px; font-weight: 900; }
.small-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.small-actions span { color: #fff; border-radius: 8px; padding: 7px 8px; font-size: .72rem; font-weight: 900; }
.small-actions span:nth-child(1) { background: #64748b; }
.small-actions span:nth-child(2) { background: #0a8a78; }
.small-actions span:nth-child(3) { background: var(--orange); }
.results-card { display: grid; gap: 9px; }
.result-item { display: grid; gap: 3px; padding: 10px; background: #fff; border: 1px solid #dce6eb; border-radius: 12px; }
.result-item small { color: #5e738b; }
.result-item.active { border-color: rgba(38,200,106,.7); box-shadow: 0 0 0 3px rgba(38,200,106,.11); }
.login-card { position: absolute; z-index: 7; right: 180px; bottom: 44px; width: 310px; padding: 23px; overflow: visible; }
.login-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.login-card p { font-size: .85rem; margin-bottom: 16px; }
.login-card label { display: grid; gap: 7px; color: var(--ink); font-weight: 900; margin-bottom: 12px; }
.login-card label span { height: 41px; border: 1px solid #d5e0e8; border-radius: 12px; position: relative; background: #fff; }
.login-card label span::after { content: "⚿"; position: absolute; right: 12px; top: 9px; color: #4b5863; }
.login-card button { width: 100%; border: 0; border-radius: 12px; background: linear-gradient(90deg, #0b3a55, var(--green-2)); color: #fff; padding: 12px; font-weight: 900; }
.login-card small { display: block; text-align: center; margin-top: 11px; color: var(--ink); font-weight: 900; }

.mapa-strip { padding: 56px 0 68px; background: linear-gradient(180deg, #f7fbfc, #fff); position: relative; z-index: 3; }
.section-head { text-align: center; max-width: 880px; }
.compact-head h2 { font-size: clamp(1.75rem, 2.8vw, 2.6rem); }
.card-grid { display: grid; gap: 18px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.mini-card, .card, .step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--soft-shadow); }
.mini-card { padding: 22px; display: grid; gap: 8px; }
.mini-card p { font-size: .89rem; margin: 0; }
.icon-circle { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, var(--navy-2), var(--green-2)); position: relative; margin-bottom: 8px; }
.icon-circle::before { content: ""; width: 20px; height: 20px; border: 2px solid #fff; border-radius: 6px; }
.icon-circle.search::before { border-radius: 50%; box-shadow: 10px 10px 0 -7px #fff; transform: rotate(-25deg); }
.icon-circle.history::before { border-radius: 50%; border-right-color: transparent; }
.icon-circle.note { background: linear-gradient(135deg, #b55205, #8b3600); }
.icon-circle.note::before { border-radius: 50%; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.align-center { align-items: center; }
.text-block p { font-size: 1.06rem; }
.card { padding: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; }
.card-accent { border-color: rgba(38,200,106,.55); background: linear-gradient(180deg, #fff, #edfff5); }
.feature-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; background: #fff; border: 1px solid var(--border); border-radius: 28px; box-shadow: var(--soft-shadow); overflow: hidden; }
.feature-row article { padding: 26px 24px; border-right: 1px solid var(--border); }
.feature-row article:last-child { border-right: 0; }
.feature-row p { font-size: .88rem; margin-bottom: 0; }
.feature-icon, .security-icon, .step-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 17px; background: linear-gradient(135deg, var(--navy-2), var(--green-2)); margin-bottom: 18px; position: relative; }
.feature-icon::before, .security-icon::before, .step-icon::before { content: ""; width: 23px; height: 23px; border: 2px solid #fff; border-radius: 7px; }
.feature-icon.upload::before { border-radius: 50%; border-bottom-color: transparent; }
.feature-icon.list::before { border-radius: 3px; box-shadow: inset 0 6px 0 -4px #fff, inset 0 -6px 0 -4px #fff; }
.feature-icon.shield::before, .security-icon.shield::before { clip-path: polygon(50% 0, 100% 18%, 92% 74%, 50% 100%, 8% 74%, 0 18%); border-radius: 0; background: transparent; }
.feature-icon.link::before { border-radius: 999px; transform: rotate(-35deg); }
.feature-icon.file::before { border-radius: 3px; }
.steps { display: grid; gap: 16px; }
.steps.five { grid-template-columns: repeat(5, 1fr); }
.step { position: relative; padding: 22px; min-height: 205px; }
.step::after { content: ""; position: absolute; top: 72px; right: -23px; width: 30px; border-top: 2px dashed #cbd8df; }
.step:last-child::after { display: none; }
.step span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: var(--green-2); color: #fff; font-weight: 900; margin-bottom: 14px; font-size: .8rem; }
.step-icon { background: #dff4eb; width: 58px; height: 58px; border-radius: 50%; }
.step-icon::before { border-color: var(--ink); }
.step p { font-size: .88rem; margin: 8px 0 0; }
.step-icon.lock::before { border-radius: 4px; }
.step-icon.monitor::before { border-radius: 3px; }
.step-icon.cloud::before { border-radius: 50%; }
.step-icon.check::before { border-radius: 50%; }
.step-icon.magnify::before { border-radius: 50%; box-shadow: 10px 10px 0 -7px var(--ink); transform: rotate(-25deg); }
.portal-card { background: linear-gradient(135deg, var(--navy), var(--teal)); color: #fff; border-radius: 30px; padding: 34px; box-shadow: var(--shadow); }
.portal-card h3 { color: #fff; font-size: 1.9rem; margin-bottom: 20px; }
.check-list { padding: 0; margin: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { color: rgba(255,255,255,.86); padding-left: 30px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #8ef4bd; font-weight: 900; }
.security-cards .card { min-height: 225px; }
.security-icon { background: #f0f7f5; }
.security-icon::before { border-color: var(--ink); }
.security-icon.machine::before { border-radius: 4px; }
.security-icon.audit::before { border-radius: 4px; box-shadow: inset 0 6px 0 -4px var(--ink), inset 0 -6px 0 -4px var(--ink); }
.security-icon.access::before { border-radius: 50%; }
.audience-grid { gap: 14px; }
.faq-list { max-width: 900px; }
details { background: #fff; border: 1px solid var(--border); border-radius: 18px; margin-bottom: 12px; padding: 19px 21px; box-shadow: var(--soft-shadow); }
summary { cursor: pointer; font-weight: 900; color: var(--ink); }
details p { margin: 12px 0 0; }
.final-cta { background: linear-gradient(135deg, var(--navy), #08243b 54%, #086348); }
.final-cta h2, .final-cta .eyebrow { color: #fff; }
.final-cta p { color: rgba(255,255,255,.78); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.contact-notes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-notes span { padding: 9px 13px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.1); color: #fff; font-weight: 800; }
.contact-form { background: #fff; border-radius: 28px; padding: 28px; display: grid; gap: 14px; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 7px; font-weight: 900; color: var(--ink); }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 13px 14px; color: var(--ink); background: #fff; }
textarea { resize: vertical; }
.privacy-check { grid-template-columns: auto 1fr !important; align-items: start; gap: 10px !important; font-size: .88rem; line-height: 1.45; }
.privacy-check input { width: auto; margin-top: 3px; }
.form-note { font-size: .83rem; margin: 0; }
.cf-turnstile { min-height: 65px; }
.site-footer { background: #061b2c; color: #fff; padding: 48px 0 26px; }
.site-footer p, .site-footer span, .site-footer a { color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 34px; }
.footer-grid a { display: block; margin-top: 9px; }
.footer-grid h3 { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 13px; }
.footer-brand span { display: grid; color: #fff; }
.footer-brand small { color: var(--green); text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 22px; font-size: .86rem; }

.thank-you-page { min-height: calc(100vh - 76px); display: grid; place-items: center; background: linear-gradient(135deg, #eef7f5, #f8fbfd); }
.thank-you-card { max-width: 760px; background: #fff; border: 1px solid var(--border); border-radius: 32px; padding: 44px; box-shadow: var(--shadow); }
.thank-you-card h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 16px; }
.protocol-box { margin: 26px 0; padding: 18px 20px; border: 1px solid var(--border); border-radius: 18px; background: #f7fbfa; }
.protocol-box span { display: block; color: var(--muted); font-size: .86rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.protocol-box strong { color: var(--ink); font-size: clamp(1rem, 4vw, 1.4rem); word-break: break-word; }

@media (max-width: 1140px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 20px; }
  .hero-visual { min-height: 650px; }
  .map-window { left: 0; right: auto; width: 100%; }
  .login-card { right: 60px; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .feature-row article { border-bottom: 1px solid var(--border); }
}
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    inset: 86px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-cta { text-align: center; color: #fff; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .card-grid.three, .card-grid.four, .steps.five, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .map-layout { grid-template-columns: 1fr; }
  .search-panel { display: none; }
  .step::after { display: none; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { padding: 0 14px; }
  .brand-name strong { font-size: 1rem; }
  .brand-name span { font-size: .72rem; }
  .brand-logo { width: 42px; height: 42px; }
  .section-pad { padding: 64px 0; }
  h1 { font-size: 2.55rem; }
  h2 { font-size: 2rem; }
  .hero { min-height: auto; padding-bottom: 72px; }
  .hero-copy { padding-top: 36px; }
  .hero-actions, .btn { width: 100%; }
  .hero-visual { min-height: 470px; }
  .map-window { top: 0; }
  .satellite-map { min-height: 335px; }
  .map-popup { width: auto; left: 42px; right: 18px; top: 88px; font-size: .71rem; }
  .sent-polygon { left: 110px; bottom: 55px; }
  .login-card { display: none; }
  .card-grid.three, .card-grid.four, .steps.five, .footer-grid, .feature-row { grid-template-columns: 1fr; }
  .feature-row article { border-right: 0; }
  .footer-bottom { flex-direction: column; }
}

/* Ajuste visual 2026-05: tela principal alinhada ao mockup aprovado */
@media (min-width: 1141px) {
  :root {
    --container: 1236px;
  }

  h1 {
    font-size: clamp(2.25rem, 2.62vw, 3.05rem);
    line-height: 1.18;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.75rem, 2.6vw, 3rem);
  }

  .site-header {
    height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    background: rgba(8, 19, 34, .96);
  }

  .brand-logo {
    width: 43px;
    height: 43px;
    border-radius: 16px;
  }

  .brand-name strong {
    font-size: 1.02rem;
  }

  .brand-name span {
    font-size: .72rem;
    letter-spacing: .08em;
  }

  .main-nav {
    gap: 24px;
    font-size: .84rem;
  }

  .nav-cta {
    padding: 11px 18px;
    border-radius: 10px;
  }

  .hero {
    min-height: 385px;
    padding: 20px 0 0;
  }

  .hero::after {
    height: 0;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 42px;
    align-items: start;
  }

  .hero-copy {
    padding: 30px 0 44px;
  }

  .hero-eyebrow {
    padding: 7px 12px;
    margin-bottom: 24px;
    font-size: .72rem;
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.08);
  }

  .hero-lead {
    max-width: 520px;
    margin: 18px 0 0;
    font-size: .97rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: none;
  }

  .trust-row {
    margin-top: 23px;
    gap: 9px;
  }

  .trust-row span {
    padding: 7px 11px;
    font-size: .75rem;
  }

  .trust-row svg {
    width: 15px;
    height: 15px;
  }

  .hero-visual {
    min-height: 365px;
  }

  .map-window {
    top: 0;
    right: 0;
    width: 695px;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 22px 60px rgba(5, 25, 45, .24);
  }

  .browser-top {
    padding: 8px 14px;
    gap: 7px;
  }

  .browser-top span {
    width: 8px;
    height: 8px;
  }

  .map-app {
    padding: 10px;
  }

  .map-head {
    margin-bottom: 8px;
    gap: 2px;
  }

  .map-head strong {
    font-size: .98rem;
  }

  .map-head small {
    font-size: .68rem;
  }

  .map-layout {
    grid-template-columns: 1fr 210px;
    gap: 10px;
  }

  .satellite-map {
    min-height: 244px;
    border-radius: 12px;
    background:
      radial-gradient(circle at 24% 20%, #d7c4af 0 5%, transparent 6%),
      radial-gradient(circle at 50% 72%, #1d6b55 0 10%, transparent 11%),
      linear-gradient(28deg, transparent 0 42%, rgba(255,255,255,.36) 43% 45%, transparent 46%),
      linear-gradient(115deg, transparent 0 55%, rgba(255,255,255,.24) 56% 58%, transparent 59%),
      linear-gradient(70deg, #a8a095 0 8%, #625f5b 8% 13%, #bfaa94 13% 22%, #676b6b 22% 29%, #d0b59c 29% 38%, #3c5047 38% 46%, #768787 46% 54%, #a87b65 54% 62%, #535b5a 62% 70%, #cab09c 70% 100%);
  }

  .zoom {
    left: 10px;
    width: 27px;
    height: 27px;
    font-size: 1rem;
  }

  .plus { top: 10px; }
  .minus { top: 37px; }

  .map-type {
    top: 10px;
    right: 10px;
    padding: 9px;
    gap: 8px;
    font-size: .71rem;
    border-radius: 8px;
  }

  .sent-polygon {
    left: 152px;
    bottom: 28px;
    width: 39px;
    height: 57px;
    border-width: 4px;
  }

  .map-popup {
    top: 78px;
    left: 55px;
    width: 250px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: .64rem;
  }

  .map-popup hr {
    margin: 6px 0;
  }

  .search-panel {
    gap: 9px;
  }

  .search-card {
    padding: 12px;
    border-radius: 14px;
  }

  .search-card h3 {
    font-size: .91rem;
    margin-bottom: 7px;
  }

  .search-card p {
    font-size: .68rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .search-row {
    padding: 6px;
    font-size: .66rem;
    border-radius: 9px;
  }

  .search-row button {
    padding: 7px 9px;
    border-radius: 8px;
    font-size: .68rem;
  }

  .small-actions {
    gap: 5px;
    margin-top: 8px;
  }

  .small-actions span {
    padding: 6px 7px;
    font-size: .61rem;
    border-radius: 7px;
  }

  .result-item {
    padding: 8px;
    border-radius: 10px;
  }

  .result-item strong {
    font-size: .72rem;
  }

  .result-item small {
    font-size: .62rem;
  }

  .login-card {
    right: 190px;
    bottom: -22px;
    width: 250px;
    padding: 18px;
    border-radius: 17px;
    box-shadow: 0 18px 50px rgba(5, 25, 45, .20);
  }

  .login-card h3 {
    font-size: 1.08rem;
    margin-bottom: 7px;
  }

  .login-card p {
    font-size: .68rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  .login-card label {
    gap: 5px;
    margin-bottom: 8px;
    font-size: .72rem;
  }

  .login-card label span {
    height: 34px;
    border-radius: 10px;
  }

  .login-card button {
    padding: 9px;
    border-radius: 9px;
    font-size: .75rem;
  }

  .login-card small {
    margin-top: 8px;
    font-size: .62rem;
  }

  .mapa-strip {
    padding: 28px 0 26px;
    background: linear-gradient(180deg, #f7fbfc, #fff);
  }

  .compact-head .eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.02rem;
    text-transform: none;
    letter-spacing: -.03em;
  }

  .compact-head h2,
  .compact-head p {
    display: none;
  }

  .map-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: min(100%, 1040px);
    margin-left: auto;
    margin-right: auto;
  }

  .mini-card {
    padding: 14px;
    grid-template-columns: 44px 1fr;
    align-items: center;
    column-gap: 12px;
    row-gap: 2px;
    border-radius: 12px;
  }

  .mini-card h3 {
    font-size: .72rem;
  }

  .mini-card p {
    grid-column: 2;
    font-size: .62rem;
    line-height: 1.35;
  }

  .icon-circle {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-bottom: 0;
  }

  .icon-circle::before {
    width: 17px;
    height: 17px;
  }

  .section-pad {
    padding: 54px 0;
  }

  #sobre {
    display: none;
  }

  #funcionalidades {
    padding-top: 24px;
    background: #fff;
  }

  #funcionalidades .section-head {
    margin-left: auto;
    margin-right: auto;
  }

  #funcionalidades .section-head .eyebrow,
  #funcionalidades .section-head h2,
  #funcionalidades .section-head p {
    display: none;
  }

  .feature-row {
    width: min(100%, 1060px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #dfe8ee;
    border-bottom: 1px solid #dfe8ee;
    box-shadow: none;
    background: transparent;
  }

  .feature-row::before {
    content: "Principais funcionalidades";
    position: absolute;
  }

  .feature-row article {
    padding: 26px 20px;
    min-height: 120px;
  }

  .feature-row h3 {
    font-size: .72rem;
  }

  .feature-row p {
    font-size: .62rem;
    line-height: 1.35;
  }

  .feature-icon,
  .security-icon,
  .step-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 11px;
  }

  .feature-icon::before,
  .security-icon::before,
  .step-icon::before {
    width: 18px;
    height: 18px;
  }

  #funcionalidades .card-grid.three {
    display: none;
  }

  #como-funciona {
    padding: 22px 0 28px;
  }

  #como-funciona .section-head .eyebrow,
  #como-funciona .section-head p {
    display: none;
  }

  #como-funciona .section-head h2 {
    font-size: 1rem;
    letter-spacing: -.03em;
  }

  .steps.five {
    width: min(100%, 1060px);
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }

  .step {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 8px 8px 8px 0;
    min-height: 92px;
    display: grid;
    grid-template-columns: 28px 46px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
  }

  .step::after {
    top: 36px;
    right: -15px;
    width: 26px;
  }

  .step span {
    width: 18px;
    height: 18px;
    font-size: .56rem;
    margin: 0;
    grid-row: 1 / span 2;
  }

  .step-icon {
    width: 42px;
    height: 42px;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .step h3 {
    font-size: .68rem;
  }

  .step p {
    font-size: .58rem;
    line-height: 1.3;
    margin: 3px 0 0;
  }

  #plugin-qgis,
  #cartorios,
  #faq {
    padding-top: 54px;
  }

  #seguranca {
    padding: 28px 0 22px;
    background: #fff;
  }

  #seguranca .section-head .eyebrow,
  #seguranca .section-head p {
    display: none;
  }

  #seguranca .section-head h2 {
    font-size: 1rem;
  }

  .security-cards {
    width: min(100%, 960px);
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }

  .security-cards .card {
    min-height: 80px;
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    padding: 14px;
    border-radius: 12px;
  }

  .security-cards .card h3 {
    font-size: .7rem;
  }

  .security-cards .card p {
    grid-column: 2;
    font-size: .6rem;
    line-height: 1.35;
  }

  .security-icon {
    grid-row: 1 / span 2;
    margin: 0;
  }
}

/* Ajuste solicitado: usar a imagem real do mapa na tela principal, como no prototipo aprovado. */
.hero-visual {
  position: relative;
  min-height: 510px;
  background: url('hero-product-realmap.png') no-repeat center top;
  background-size: contain;
}
.hero-visual > .product-window,
.hero-visual > .login-card {
  display: none !important;
}
@media (max-width: 1100px) {
  .hero-visual { min-height: 480px; }
}
@media (max-width: 640px) {
  .hero-visual { min-height: 330px; }
}

/* Secao adicionada: diferencial em evidencia do Mapa de Imoveis. */
.diferencial-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(38,200,106,.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #f5fbfb);
  border-top: 1px solid rgba(219,231,237,.75);
  border-bottom: 1px solid rgba(219,231,237,.75);
}
.diferencial-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 34px;
  align-items: stretch;
}
.diferencial-copy,
.diferencial-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}
.diferencial-copy { padding: clamp(28px, 4vw, 46px); }
.diferencial-copy h2 { max-width: 920px; margin-bottom: 22px; }
.diferencial-copy p { font-size: 1.04rem; max-width: 920px; }
.diferencial-card {
  padding: 30px;
  background: linear-gradient(145deg, #0d1728, #0d6146);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.diferencial-card h3 { color: #fff; font-size: 1.45rem; margin-bottom: 18px; }
.diferencial-card .check-list li { color: rgba(255,255,255,.9); }
.diferencial-card .check-list li::before { background: rgba(38,200,106,.18); border-color: rgba(142,244,189,.75); color: #8ef4bd; }

@media (max-width: 900px) {
  .diferencial-grid { grid-template-columns: 1fr; }
}


/* Ajuste 2026-05: melhorar legibilidade dos textos em desktop sem alterar o layout aprovado. */
@media (min-width: 1141px) {
  .mapa-strip {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .compact-head .eyebrow {
    font-size: 1.28rem;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .map-cards {
    width: min(100%, 1110px);
    gap: 14px;
  }

  .mini-card {
    padding: 18px 20px;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    min-height: 96px;
  }

  .mini-card h3 {
    font-size: .95rem;
    line-height: 1.15;
  }

  .mini-card p {
    font-size: .82rem;
    line-height: 1.42;
  }

  .icon-circle {
    width: 46px;
    height: 46px;
  }

  .icon-circle::before {
    width: 21px;
    height: 21px;
  }

  .feature-row {
    width: min(100%, 1130px);
  }

  .feature-row::before {
    font-size: 1.38rem;
    font-weight: 900;
    letter-spacing: -.035em;
    transform: translateY(-34px);
  }

  .feature-row article {
    padding: 30px 20px;
    min-height: 156px;
  }

  .feature-row h3 {
    font-size: .95rem;
    line-height: 1.18;
  }

  .feature-row p {
    font-size: .82rem;
    line-height: 1.42;
  }

  .feature-icon,
  .security-icon,
  .step-icon {
    width: 48px;
    height: 48px;
  }

  .feature-icon::before,
  .security-icon::before,
  .step-icon::before {
    width: 21px;
    height: 21px;
  }

  #como-funciona {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  #como-funciona .section-head h2 {
    font-size: 1.42rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .steps.five {
    width: min(100%, 1130px);
    gap: 18px;
  }

  .step {
    grid-template-columns: 30px 52px 1fr;
    column-gap: 12px;
    min-height: 120px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .step span {
    width: 23px;
    height: 23px;
    font-size: .72rem;
  }

  .step h3 {
    font-size: .88rem;
    line-height: 1.15;
  }

  .step p {
    font-size: .78rem;
    line-height: 1.4;
  }

  #seguranca {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  #seguranca .section-head h2 {
    font-size: 1.42rem;
    line-height: 1.25;
  }

  .security-cards {
    width: min(100%, 1030px);
    gap: 16px;
  }

  .security-cards .card {
    min-height: 126px;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    padding: 20px;
  }

  .security-cards .card h3 {
    font-size: .92rem;
    line-height: 1.15;
  }

  .security-cards .card p {
    font-size: .8rem;
    line-height: 1.42;
  }
}

@media (max-width: 680px) {
  .mini-card h3,
  .feature-row h3,
  .security-cards .card h3,
  .step h3 {
    font-size: 1rem;
  }

  .mini-card p,
  .feature-row p,
  .security-cards .card p,
  .step p {
    font-size: .94rem;
  }

  .map-cards,
  .feature-row,
  .security-cards,
  .steps.five {
    gap: 14px;
  }
}
