:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-warm: #f8fafc;
  --line: #e2e7ee;
  --text: #111827;
  --muted: #667085;
  --blue: #235ce8;
  --blue-dark: #1647bd;
  --blue-soft: #edf3ff;
  --green: #169b62;
  --green-soft: #eaf8f1;
  --amber: #d98215;
  --amber-soft: #fff4df;
  --red: #d94a4a;
  --red-soft: #fdeaea;
  --shadow: 0 18px 50px rgba(15, 23, 42, .08);
  --radius: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(31, 91, 230, .2);
}
.brand-mark img { width: 62%; height: 62%; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #4d5564; font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--blue); }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 8px 20px rgba(31, 91, 230, .17); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { color: var(--text); background: var(--surface); border-color: var(--line); }
.button-secondary:hover { border-color: #cfd7e8; }
.button-ghost { color: #4d5564; background: transparent; }
.button-ghost:hover { color: var(--blue); background: var(--blue-soft); }
.button-large { min-height: 50px; padding: 0 23px; border-radius: 12px; }
.button-light { color: var(--blue); background: #fff; }
.button-outline-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.42); }
.button-outline-light:hover { background: rgba(255,255,255,.08); }

.hero {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(540px, 1.18fr);
  align-items: center;
  gap: 56px;
  padding: 84px max(28px, calc((100vw - var(--max)) / 2)) 92px;
  background: linear-gradient(145deg, #f8fafc 0%, #eef2f7 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(35, 92, 232, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(35, 92, 232, .022), 0 0 0 140px rgba(35, 92, 232, .016);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
h1 span { color: var(--blue); }
.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #555e6e;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #515a6a;
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}
.hero-points li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}
.product-showcase {
  position: relative;
  z-index: 2;
  padding: 18px 18px 78px;
  background: #e8edf4;
  border: 1px solid #d9e0e9;
  border-radius: 22px;
  box-shadow: 0 30px 76px rgba(15, 23, 42, .16);
}
.screen-frame {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #dce2ea;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .1);
}
.product-bar {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 15px;
  color: var(--muted);
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}
.product-dots { display: flex; gap: 5px; }
.product-dots i { width: 7px; height: 7px; display: block; background: #d9dde5; border-radius: 50%; }
.safe-status {
  justify-self: end;
  padding: 5px 8px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 20px;
  font-size: 9px;
  text-transform: uppercase;
}
.screen-crop { position: relative; overflow: hidden; background: #f8fafc; }
.screen-crop img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.crop-summary { height: 340px; }
.crop-summary img, .crop-financial img { width: 271%; left: -160%; top: -43%; }
.showcase-detail {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #475467;
}
.showcase-detail span { font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.showcase-detail strong { color: var(--text); font-size: 14px; }

.value-strip {
  width: min(var(--max), calc(100% - 56px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -30px auto 0;
  position: relative;
  z-index: 4;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.value-strip article { display: flex; gap: 15px; padding: 25px 28px; }
.value-strip article + article { border-left: 1px solid var(--line); }
.value-strip strong { display: block; margin-bottom: 3px; font-size: 15px; }
.value-strip p { margin: 0; color: var(--muted); font-size: 13px; }
.value-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 900;
}
.value-icon.blue { color: var(--blue); background: var(--blue-soft); }
.value-icon.green { color: var(--green); background: var(--green-soft); }
.value-icon.amber { color: var(--amber); background: var(--amber-soft); }

.section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 118px 0;
}
.section-heading { max-width: 620px; }
.section-heading.centered { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .results-copy h2, .final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p, .results-copy p { color: var(--muted); font-size: 17px; line-height: 1.7; }

.product-proof { display: block; }
.product-proof .section-heading.centered { margin-bottom: 52px; }
.screen-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.screen-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .055);
}
.screen-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  align-items: stretch;
}
.screen-card-visual { min-height: 260px; padding: 14px; background: #eef2f6; }
.screen-card-wide .screen-card-visual { min-height: 350px; }
.screen-card-visual .screen-crop { width: 100%; height: 100%; min-height: 232px; border: 1px solid #dce2ea; border-radius: 12px; }
.screen-card-wide .screen-crop { min-height: 322px; }
.screen-card-copy { padding: 30px; }
.screen-card-wide .screen-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 42px; }
.screen-card-copy .card-kicker { margin-bottom: 13px; }
.screen-card-copy h3 { margin-bottom: 11px; font-size: 24px; line-height: 1.2; letter-spacing: -.03em; }
.screen-card-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.crop-financial img { top: -48%; }
.crop-goals img { width: 275%; left: -118%; top: -202%; }
.crop-navigation img { width: 760%; left: 0; top: 0; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.proof-card {
  min-height: 220px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(31, 41, 55, .045);
}
.proof-main { grid-row: span 2; min-height: 456px; background: var(--blue-soft); border-color: #dce5ff; }
.card-kicker { display: block; margin-bottom: 20px; color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.proof-card > strong { display: block; margin-bottom: 13px; font-size: 22px; line-height: 1.25; letter-spacing: -.02em; }
.proof-main > strong { font-size: 30px; }
.proof-card > p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.mini-row {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(31, 91, 230, .08);
  border-radius: 10px;
  color: #515a6a;
  font-size: 13px;
}
.mini-row b { color: var(--text); }
.clean-list { margin: 20px 0 0; padding: 0; list-style: none; }
.clean-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; color: #515a6a; font-size: 13px; }
.dot { width: 8px; height: 8px; display: inline-block; border-radius: 50%; }
.dot.red { background: var(--red); }
.dot.amber { background: var(--amber); }
.dot.green { background: var(--green); }
.progress { height: 8px; margin-top: 25px; overflow: hidden; background: var(--blue-soft); border-radius: 20px; }
.progress span { height: 100%; display: block; background: var(--blue); border-radius: inherit; }

.resources { border-top: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 300px; padding: 32px; border: 1px solid transparent; border-radius: var(--radius); }
.feature-blue { background: var(--blue-soft); border-color: #dce5ff; }
.feature-green { background: #f1f4f8; border-color: #e1e6ed; }
.feature-amber { background: #e9eef5; border-color: #dce3ec; }
.feature-number { display: block; margin-bottom: 58px; color: var(--muted); font-size: 12px; font-weight: 850; }
.feature-card h3 { margin-bottom: 10px; font-size: 24px; letter-spacing: -.025em; }
.feature-card p { min-height: 64px; color: #5d6573; font-size: 14px; line-height: 1.6; }
.feature-tag { display: inline-block; margin-top: 18px; padding: 7px 10px; background: rgba(255, 255, 255, .72); border-radius: 8px; font-size: 11px; font-weight: 800; }

.process {
  padding: 102px max(28px, calc((100vw - var(--max)) / 2));
  background: #eef2f6;
}
.process .section-heading { max-width: 700px; margin-bottom: 44px; }
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list li { position: relative; display: flex; gap: 15px; padding-right: 28px; }
.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 15px;
  width: 42px;
  height: 1px;
  background: #d9d3ca;
}
.process-list > li > span {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #102044 0%, #235ce8 100%);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
}
.process-list strong { display: block; margin-bottom: 4px; font-size: 15px; }
.process-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.results {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 76px;
}
.metrics { display: grid; gap: 12px; }
.metrics article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
}
.metrics span { color: var(--muted); font-size: 13px; font-weight: 700; }
.metrics strong { grid-row: span 2; font-size: 27px; letter-spacing: -.03em; }
.metrics small { color: #969ca7; font-size: 11px; }

.final-cta {
  width: min(var(--max), calc(100% - 56px));
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin: 0 auto 80px;
  padding: 54px 60px;
  color: #fff;
  background: var(--blue);
  border-radius: 20px;
  box-shadow: 0 22px 54px rgba(31, 91, 230, .2);
}
.final-cta > div { max-width: 680px; }
.final-cta h2 { margin-bottom: 12px; }
.final-cta p { margin: 0; color: rgba(255,255,255,.78); font-size: 16px; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.eyebrow-light { color: #fff; opacity: .72; }
footer {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: #f8fafc;
  border-top: 1px solid var(--line);
}
footer p { margin: 0; color: var(--muted); font-size: 13px; }
footer button { justify-self: end; padding: 8px 0; color: var(--blue); background: none; border: 0; cursor: pointer; font-weight: 750; }

.login-dialog {
  width: min(460px, calc(100% - 32px));
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 18px;
}
.login-dialog::backdrop { background: rgba(23, 26, 33, .48); backdrop-filter: blur(5px); }
.login-panel {
  position: relative;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(23, 26, 33, .22);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--bg);
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 22px;
}
.login-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 22px; font-size: 19px; font-weight: 850; }
.environment-badge { display: inline-block; margin-bottom: 18px; padding: 5px 9px; color: var(--green); background: var(--green-soft); border-radius: 20px; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.login-panel h2 { margin-bottom: 5px; font-size: 28px; letter-spacing: -.035em; }
.login-panel > p { margin-bottom: 24px; color: var(--muted); font-size: 14px; }
.login-panel form { display: grid; }
.login-panel label { margin: 0 0 7px; font-size: 12px; font-weight: 800; }
.login-panel input {
  width: 100%;
  height: 46px;
  margin-bottom: 17px;
  padding: 0 13px;
  color: var(--text);
  background: #fff;
  border: 1px solid #d7dce5;
  border-radius: 10px;
  outline: none;
}
.login-panel input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.login-submit { width: 100%; margin-top: 5px; }
.login-panel small { display: block; margin-top: 18px; color: #969ca7; text-align: center; font-size: 10px; }
.login-error { margin-bottom: 17px; padding: 11px 12px; color: #a43232; background: var(--red-soft); border-radius: 9px; font-size: 12px; }

@media (max-width: 1040px) {
  .site-nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .product-showcase { max-width: 860px; }
  .results { grid-template-columns: 1fr; gap: 46px; }
  .product-proof .section-heading, .results-copy { max-width: 700px; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .process-list li:nth-child(2)::after { display: none; }
}

@media (max-width: 720px) {
  .site-nav { min-height: 66px; padding: 0 18px; }
  .nav-actions .button-primary { display: none; }
  .button-ghost { padding-right: 0; }
  .hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    padding: 62px 20px 62px;
  }
  h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 9px; }
  .product-bar { grid-template-columns: 1fr auto; }
  .product-bar > span:nth-child(2) { display: none; }
  .value-strip {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    margin-top: -24px;
  }
  .value-strip article + article { border-left: 0; border-top: 1px solid var(--line); }
  .section { width: calc(100% - 40px); padding: 82px 0; }
  .section-heading h2, .results-copy h2, .final-cta h2 { font-size: 36px; }
  .screen-gallery, .feature-grid { grid-template-columns: 1fr; }
  .screen-card-wide { grid-column: auto; grid-template-columns: 1fr; }
  .screen-card-wide .screen-card-copy { padding: 30px; }
  .product-showcase { padding: 10px 10px 66px; }
  .crop-summary { height: 250px; }
  .showcase-detail { left: 24px; right: 24px; bottom: 18px; }
  .showcase-detail strong { display: none; }
  .feature-number { margin-bottom: 34px; }
  .process { padding: 80px 20px; }
  .process-list { grid-template-columns: 1fr; gap: 25px; }
  .process-list li::after { display: none; }
  .metrics article { grid-template-columns: 1fr; }
  .metrics strong { grid-row: auto; margin: 4px 0; font-size: 25px; }
  .final-cta {
    width: calc(100% - 40px);
    min-height: 0;
    display: block;
    margin-bottom: 50px;
    padding: 40px 28px;
  }
  .final-cta .button { width: 100%; margin-top: 28px; }
  .final-actions { display: grid; }
  .final-actions .button + .button { margin-top: 0; }
  footer { grid-template-columns: 1fr; padding: 30px 20px; text-align: left; }
  footer button { justify-self: start; }
  .login-panel { padding: 30px 24px 26px; }
}

.signup-body { min-height: 100vh; background: #f4f6f8; }
.signup-main {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 64px 24px;
}
.signup-shell {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(15,23,42,.12);
}
.signup-intro {
  padding: 54px;
  color: #fff;
  background: linear-gradient(145deg, #102044, #235ce8);
}
.signup-intro .eyebrow { color: #b9ccff; }
.signup-intro h1 { margin-bottom: 20px; font-size: 46px; }
.signup-intro p { color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; }
.signup-benefits { display: grid; gap: 14px; margin: 38px 0 0; padding: 0; list-style: none; }
.signup-benefits li { display: flex; gap: 10px; color: #eef3ff; font-size: 13px; }
.signup-benefits li::before { content: "✓"; color: #7ee2bd; font-weight: 900; }
.signup-prep { padding: 54px; }
.signup-prep h2 { margin-bottom: 10px; font-size: 32px; letter-spacing: -.035em; }
.signup-prep > p { color: var(--muted); line-height: 1.65; }
.signup-steps { display: grid; gap: 12px; margin: 30px 0; }
.signup-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.signup-step > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 10px; font-weight: 900; }
.signup-step strong, .signup-step small { display: block; }
.signup-step small { margin-top: 3px; color: var(--muted); line-height: 1.45; }
.signup-pending {
  padding: 14px 16px;
  color: #475467;
  background: #edf3ff;
  border: 1px solid #dbe6ff;
  border-radius: 11px;
  font-size: 12px;
  line-height: 1.55;
}
.signup-actions { display: flex; gap: 10px; margin-top: 24px; }
.signup-dialog {
  width: min(1040px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}
.signup-dialog::backdrop { background: rgba(15,23,42,.58); backdrop-filter: blur(6px); }
.signup-dialog .signup-shell { position: relative; width: 100%; max-height: calc(100vh - 44px); overflow: auto; }
.signup-dialog .signup-intro, .signup-dialog .signup-prep { padding: 46px; }
.signup-dialog .signup-intro h1 { font-size: 42px; }
.signup-close { z-index: 3; color: #475467; background: #fff; box-shadow: 0 4px 12px rgba(15,23,42,.1); }
.signup-disabled { width: 100%; margin-top: 22px; opacity: .62; cursor: not-allowed; transform: none !important; }
@media (max-width: 780px) {
  .signup-shell { grid-template-columns: 1fr; }
  .signup-intro, .signup-prep { padding: 36px 28px; }
  .signup-intro h1 { font-size: 38px; }
  .signup-actions { display: grid; }
  .signup-dialog .signup-intro, .signup-dialog .signup-prep { padding: 34px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Resultados com prévias públicas e anonimizadas */
.result-previews {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 10px;
}
.result-preview {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 14px 38px rgba(15,23,42,.06);
}
.result-preview-head {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: #344054;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
}
.result-preview-head small { color: #98a2b3; font-size: 9px; text-transform: uppercase; letter-spacing: .05em; }
.result-overview-crop { position: relative; height: 286px; overflow: hidden; background: #eef2f6; }
.result-overview-crop img { position: absolute; width: 164%; max-width: none; left: -56%; top: -10%; }
.result-preview-copy { padding: 24px; }
.result-preview-copy strong { display: block; margin-bottom: 7px; font-size: 19px; letter-spacing: -.02em; }
.result-preview-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.supplier-preview { min-height: 286px; padding: 16px; background: #f4f6f8; }
.supplier-tabs { display: flex; gap: 6px; padding: 5px; background: #fff; border: 1px solid #e2e7ee; border-radius: 9px; }
.supplier-tabs b { padding: 6px 9px; color: #98a2b3; border-radius: 6px; font-size: 8px; }
.supplier-tabs b.active { color: var(--blue); background: var(--blue-soft); }
.supplier-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 12px 0; }
.supplier-kpis > div { padding: 11px; background: #fff; border: 1px solid #e2e7ee; border-radius: 9px; }
.supplier-kpis span, .supplier-kpis strong, .supplier-kpis small { display: block; }
.supplier-kpis span { color: #667085; font-size: 7px; }
.supplier-kpis strong { margin: 5px 0 2px; font-size: 13px; }
.supplier-kpis small { color: #98a2b3; font-size: 6px; }
.supplier-ranking { padding: 8px 12px; background: #fff; border: 1px solid #e2e7ee; border-radius: 10px; }
.supplier-ranking > div { display: grid; grid-template-columns: 20px 94px 1fr 30px; align-items: center; gap: 8px; padding: 9px 0; }
.supplier-ranking > div + div { border-top: 1px solid #edf0f4; }
.supplier-ranking span { width: 20px; height: 20px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 6px; font-size: 7px; font-weight: 900; }
.supplier-ranking strong { font-size: 8px; }
.supplier-ranking i { height: 5px; overflow: hidden; background: #edf1f6; border-radius: 10px; }
.supplier-ranking i b { height: 100%; display: block; background: var(--blue); border-radius: inherit; }
.supplier-ranking em { color: #475467; font-size: 8px; font-style: normal; font-weight: 800; text-align: right; }

/* Login premium e acesso por código temporário */
.login-dialog { width: min(520px, calc(100% - 32px)); }
.login-panel { padding: 32px 36px 28px; }
.login-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-right: 34px; }
.login-topline .login-brand { margin: 0; }
.secure-access { padding: 6px 9px; color: var(--blue); background: var(--blue-soft); border-radius: 20px; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.login-panel .environment-badge { margin-bottom: 20px; }
.login-eyebrow { display: block; margin-bottom: 7px; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.login-panel h2 { margin-bottom: 5px; font-size: 30px; }
.login-panel > .login-intro { margin-bottom: 20px; }
.login-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 22px; padding: 4px; background: #f2f4f7; border-radius: 10px; }
.login-tabs button { min-height: 36px; color: #667085; background: transparent; border: 0; border-radius: 8px; cursor: pointer; font-size: 11px; font-weight: 800; }
.login-tabs button[aria-selected="true"] { color: var(--text); background: #fff; box-shadow: 0 2px 8px rgba(15,23,42,.08); }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.password-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.password-label label { margin: 0; }
.password-label button { padding: 0; color: var(--blue); background: none; border: 0; cursor: pointer; font-size: 10px; font-weight: 750; }
.password-field { position: relative; }
.password-field input { padding-right: 72px; }
.password-toggle { position: absolute; top: 0; right: 0; height: 46px; padding: 0 13px; color: #667085; background: transparent; border: 0; cursor: pointer; font-size: 9px; font-weight: 800; }
.token-copy { margin-bottom: 18px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.token-code { text-align: center; font-size: 20px !important; font-weight: 850; letter-spacing: .35em; }
.token-sent { display: grid; grid-template-columns: 34px 1fr; gap: 12px; margin-bottom: 17px; padding: 13px; background: #eaf8f1; border: 1px solid #d8efe4; border-radius: 11px; }
.token-sent > span { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: var(--green); border-radius: 9px; font-weight: 900; }
.token-sent strong { display: block; margin-bottom: 2px; font-size: 12px; }
.token-sent p { margin: 0; color: #47715f; font-size: 10px; line-height: 1.5; }
.dev-token { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; padding: 11px 13px; background: #fff4df; border: 1px solid #f1dfbd; border-radius: 10px; }
.dev-token span { color: #8a5a16; font-size: 9px; font-weight: 750; text-transform: uppercase; }
.dev-token strong { color: #70440a; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 18px; letter-spacing: .14em; }
.resend-form { margin-top: 12px; text-align: center; }
.resend-form button { color: var(--blue); background: none; border: 0; cursor: pointer; font-size: 10px; font-weight: 750; }
.login-security { display: grid; grid-template-columns: 24px 1fr; gap: 8px; align-items: center; margin-top: 22px; padding-top: 17px; border-top: 1px solid var(--line); }
.login-security span { width: 24px; height: 24px; display: grid; place-items: center; color: var(--green); background: #eaf8f1; border-radius: 7px; font-size: 10px; font-weight: 900; }
.login-security p { margin: 0; color: #98a2b3; font-size: 9px; line-height: 1.5; }
@media (max-width: 720px) {
  .result-previews { grid-template-columns: 1fr; }
  .result-overview-crop { height: 230px; }
  .login-panel { padding: 28px 22px 24px; }
  .secure-access { display: none; }
  .supplier-kpis { grid-template-columns: 1fr 1fr 1fr; }
}

/* Provas de produto construídas a partir dos módulos reais do AGN Travel */
.screen-card-visual.actual-module { display: grid; min-height: 260px; padding: 14px; }
.goals-preview,
.partners-preview {
  min-height: 232px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dce2ea;
  border-radius: 12px;
}
.module-title { display: flex; align-items: center; gap: 8px; color: #344054; font-size: 11px; }
.module-title > span { width: 25px; height: 25px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 7px; font-weight: 900; }
.module-title > strong { font-size: 11px; }
.module-title > small { margin-left: auto; color: #98a2b3; font-size: 7px; font-weight: 750; text-transform: uppercase; }
.goal-items { display: grid; gap: 10px; margin-top: 18px; }
.goal-item { display: grid; grid-template-columns: 1fr 58px; align-items: center; gap: 15px; padding: 12px; background: #f8fafc; border: 1px solid #e6eaf0; border-radius: 10px; }
.goal-item small,
.goal-item strong,
.goal-item span { display: block; }
.goal-item small { color: #667085; font-size: 7px; }
.goal-item strong { margin: 3px 0 1px; color: #101828; font-size: 13px; }
.goal-item span { color: #98a2b3; font-size: 6px; }
.goal-item i { height: 4px; display: block; margin-top: 7px; overflow: hidden; background: #e7ebf1; border-radius: 10px; }
.goal-item i b { height: 100%; display: block; background: var(--blue); border-radius: inherit; }
.goal-item em { position: relative; width: 52px; height: 52px; display: grid; place-items: center; color: #344054; background: conic-gradient(var(--blue) var(--progress), #e8edf4 0); border-radius: 50%; font-size: 9px; font-style: normal; font-weight: 850; }
.goal-item em::before { content: ""; position: absolute; inset: 5px; background: #fff; border-radius: inherit; }
.goal-item em { isolation: isolate; }
.goal-item em::before { z-index: -1; }
.partner-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 16px 0 12px; }
.partner-summary > div { padding: 10px; background: #f8fafc; border: 1px solid #e6eaf0; border-radius: 8px; }
.partner-summary small,
.partner-summary strong { display: block; }
.partner-summary small { color: #667085; font-size: 6px; }
.partner-summary strong { margin-top: 4px; color: #101828; font-size: 13px; }
.partner-lines { padding: 5px 11px; border: 1px solid #e6eaf0; border-radius: 9px; }
.partner-lines > div { display: grid; grid-template-columns: 20px 82px 1fr 27px; align-items: center; gap: 7px; padding: 8px 0; }
.partner-lines > div + div { border-top: 1px solid #edf0f4; }
.partner-lines span { width: 19px; height: 19px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 5px; font-size: 7px; font-weight: 850; }
.partner-lines strong { font-size: 7px; }
.partner-lines i { height: 4px; overflow: hidden; background: #edf1f6; border-radius: 10px; }
.partner-lines i b { height: 100%; display: block; background: var(--blue); border-radius: inherit; }
.partner-lines em { color: #475467; font-size: 7px; font-style: normal; font-weight: 800; text-align: right; }

/* Rodapé institucional */
.site-footer { min-height: 0; display: block; padding: 0 max(24px, calc((100% - 1180px) / 2)); color: #98a2b3; background: #0d1119; border: 0; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .8fr); gap: 64px; padding: 64px 0 52px; }
.site-footer .brand { color: #fff; }
.site-footer .brand-mark { box-shadow: none; }
.footer-brand p { max-width: 300px; margin-top: 25px; color: #98a2b3; font-size: 13px; line-height: 1.7; }
.footer-column { display: grid; align-content: start; justify-items: start; gap: 11px; }
.footer-column > strong { margin-bottom: 5px; color: #fff; font-size: 13px; }
.footer-column a,
.footer-column span,
.footer-column button { padding: 0; color: #98a2b3; background: none; border: 0; font-size: 12px; font-weight: 500; line-height: 1.45; text-decoration: none; }
.footer-column a:hover,
.footer-column button:hover { color: #fff; }
.footer-column button { justify-self: start; cursor: pointer; text-align: left; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 24px 0 30px; border-top: 1px solid rgba(255,255,255,.08); color: #667085; font-size: 11px; }

/* Login clean: uma única entrada principal e recuperação sob demanda */
.login-dialog { width: min(500px, calc(100% - 32px)); }
.login-panel { padding: 36px 42px 30px; }
.login-brand-centered { justify-content: center; margin: 0 0 14px; }
.login-panel .environment-centered { width: max-content; display: block; margin: 0 auto 25px; }
.auth-panel h2,
.auth-panel > .login-intro { text-align: center; }
.auth-panel h2 { font-size: 28px; }
.auth-panel > .login-intro { margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.login-account { margin: 21px 0 0 !important; color: #667085 !important; font-size: 12px !important; text-align: center; }
.login-account a { color: var(--blue); font-weight: 800; text-decoration: none; }
.clean-security { margin: 22px 0 0 !important; padding-top: 17px; color: #98a2b3 !important; border-top: 1px solid var(--line); font-size: 9px !important; line-height: 1.5; text-align: center; }
.token-back { margin: 0 0 18px; padding: 0; color: var(--blue); background: transparent; border: 0; cursor: pointer; font-size: 10px; font-weight: 800; }

/* Consentimento preparado para futura ativação de Analytics */
.cookie-banner {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: auto;
  padding: 18px 20px;
  color: #344054;
  background: rgba(255,255,255,.98);
  border: 1px solid #dce2ea;
  border-radius: 14px;
  box-shadow: 0 18px 55px rgba(15,23,42,.18);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 4px; color: #101828; font-size: 13px; }
.cookie-banner p { max-width: 680px; margin: 0; color: #667085; font-size: 11px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .button { min-height: 40px; padding: 0 15px; font-size: 10px; white-space: nowrap; }
.cookie-secondary { color: #344054; background: #fff; border: 1px solid #d0d5dd; }
.cookie-dialog { width: min(520px, calc(100% - 32px)); padding: 0; background: #fff; border: 0; border-radius: 18px; box-shadow: 0 30px 90px rgba(15,23,42,.28); }
.cookie-dialog::backdrop { background: rgba(15,23,42,.55); backdrop-filter: blur(5px); }
.cookie-panel { position: relative; padding: 35px; }
.cookie-panel h2 { margin: 0 0 8px; font-size: 27px; letter-spacing: -.035em; }
.cookie-panel > p { margin: 0 0 24px; color: #667085; font-size: 12px; line-height: 1.6; }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0; padding: 16px 0; border-top: 1px solid var(--line); cursor: pointer; }
.cookie-option span,
.cookie-option strong,
.cookie-option small { display: block; }
.cookie-option strong { color: #101828; font-size: 12px; }
.cookie-option small { margin-top: 4px; color: #667085; font-size: 10px; font-weight: 500; line-height: 1.45; }
.cookie-option input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--blue); }
.cookie-save { width: 100%; margin-top: 18px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .cookie-banner { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 620px) {
  .goal-item { grid-template-columns: 1fr 48px; }
  .goal-item em { width: 46px; height: 46px; }
  .partner-lines > div { grid-template-columns: 20px 68px 1fr 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; }
  .footer-bottom { display: grid; }
  .login-panel { padding: 31px 24px 26px; }
  .cookie-banner { right: 12px; bottom: 12px; left: 12px; width: calc(100% - 24px); }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button:last-child { grid-column: 1 / -1; }
  .cookie-panel { padding: 30px 24px 24px; }
}
