:root {
  --ink: #071224;
  --navy-950: #06162f;
  --navy-900: #08203f;
  --navy-800: #0b2e55;
  --blue-600: #1269b0;
  --blue-500: #1d83d4;
  --cyan-400: #58c4f6;
  --teal-500: #26a99a;
  --green-500: #39b980;
  --amber-500: #d99a22;
  --paper: #f7fbff;
  --surface: #ffffff;
  --surface-blue: #eef6ff;
  --line: #d7e4f1;
  --line-strong: #abc2d8;
  --muted: #5f7085;
  --soft: #eef3f8;
  --shadow: 0 18px 48px rgba(6, 22, 47, 0.16);
  --shadow-soft: 0 12px 28px rgba(8, 32, 63, 0.1);
  --radius: 8px;
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 18px clamp(16px, 4vw, 44px) 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 22, 47, 0.94);
  color: #fff;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 160px;
  height: 56px;
}

.brand img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 14px);
  min-width: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(171, 194, 216, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a,
.header-cta,
.btn {
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(88, 196, 246, 0.72);
  background: rgba(88, 196, 246, 0.14);
  color: #fff;
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(88, 196, 246, 0.65);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(88, 196, 246, 0.12);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 92px) 0 clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 88% 12%, rgba(88, 196, 246, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 46%, #0e3d68);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.2vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  line-height: 1.07;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.04rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
}

.btn-primary {
  background: var(--cyan-400);
  color: var(--navy-950);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #7dd5ff;
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--navy-900);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.hero-art {
  position: relative;
  justify-self: center;
  width: min(100%, 540px);
  min-width: 0;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.window-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #f5f8fb;
}

.window-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow:
    18px 0 0 var(--amber-500),
    36px 0 0 #e76464;
}

.window-top strong {
  color: var(--navy-900);
}

.window-top em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.journey-preview {
  padding: 18px;
}

.phase-row,
.task-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.phase-row > div,
.task-card > div {
  min-width: 0;
}

.phase-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-blue);
  color: var(--blue-600);
  font-weight: 900;
}

.phase-row p,
.task-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.phase-row strong,
.task-card strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 0.94rem;
  line-height: 1.25;
}

.phase-percent {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf0ff;
  color: #3546c7;
  font-weight: 800;
}

.progress-track {
  height: 8px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eef5;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-500), var(--cyan-400));
}

.task-card {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.task-card.muted {
  background: #f8fafc;
}

.task-check {
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue-500);
  border-radius: 4px;
}

.task-card small {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.score-badge {
  position: absolute;
  right: -10px;
  bottom: -28px;
  display: grid;
  place-items: center;
  width: 124px;
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--navy-950);
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.score-badge strong {
  font-size: 2.25rem;
  line-height: 1;
}

.score-badge span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.section {
  padding: clamp(58px, 8vw, 108px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 840px;
}

.section-heading p,
.implanta-copy p,
.consultoria p,
.diagnostic-intro p {
  color: var(--muted);
  font-size: 1.03rem;
}

.method {
  background: #fff;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

[data-image-zoom] {
  --zoom-x: 50%;
  --zoom-y: 50%;
  --flow-zoom-scale: 2.45;
  position: relative;
  overflow: hidden;
}

.flow-asset {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: clamp(14px, 2.5vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow-soft);
}

[data-image-zoom] img {
  transform: scale(1);
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform 180ms ease;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform, transform-origin;
}

.flow-asset img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

[data-image-zoom].is-zoomed {
  cursor: grab;
}

[data-image-zoom].is-zoomed img {
  transform: scale(var(--flow-zoom-scale));
}

[data-image-zoom].is-dragging {
  cursor: grabbing;
}

[data-image-zoom].is-dragging img {
  transition: transform 120ms ease;
}

.method-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.method-stats article,
.deliverables article,
.steps-grid article,
.lead-card,
.question-card,
.result-box,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.method-stats article {
  padding: 18px;
}

.method-stats strong {
  display: block;
  color: var(--blue-600);
  font-size: 2.25rem;
  line-height: 1;
}

.method-stats span {
  display: block;
  margin-top: 6px;
  color: var(--navy-900);
  font-weight: 900;
}

.method-stats p,
.deliverables p,
.steps-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.deliverables article,
.steps-grid article {
  padding: 18px;
}

.deliverables span,
.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--surface-blue);
  color: var(--blue-600);
  font-weight: 900;
}

.implanta {
  background: var(--soft);
}

.implanta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--navy-900);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: inset 0 0 0 4px #d9f5ef;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-product-shot {
  justify-self: center;
  width: min(100%, 520px);
  background: var(--navy-950);
  padding: 10px;
}

.frame-label {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.mobile-product-shot .frame-label {
  border: 0;
  color: rgba(255, 255, 255, 0.72);
}

.screenshot-zoom {
  background: #fff;
  border-radius: 6px;
}

.screenshot-frame img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: top left;
}

.mobile-product-shot img {
  display: block;
  min-height: auto;
  object-fit: contain;
  background: #fff;
}

.six-steps {
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.diagnostic-section {
  background:
    linear-gradient(180deg, rgba(6, 22, 47, 0.96), rgba(8, 32, 63, 0.98)),
    var(--navy-950);
  color: #fff;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.diagnostic-intro {
  position: sticky;
  top: 98px;
}

.diagnostic-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.lead-card {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.lead-card strong {
  color: #fff;
}

.lead-card span {
  color: rgba(255, 255, 255, 0.8);
}

.diagnostic-app {
  min-width: 0;
  scroll-margin-top: 118px;
}

.diagnostic-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.panel-head small {
  color: var(--muted);
  font-weight: 800;
}

.panel-progress {
  width: min(180px, 32vw);
  align-self: center;
}

.panel-body {
  padding: clamp(16px, 3vw, 24px);
}

.question-card {
  padding: 18px;
  box-shadow: none;
}

.question-card + .question-card {
  margin-top: 12px;
}

.question-card p {
  margin-bottom: 14px;
  color: var(--navy-900);
  font-weight: 800;
}

.options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
}

.option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option:has(input:checked) {
  border-color: var(--blue-500);
  background: var(--surface-blue);
  color: var(--blue-600);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  box-shadow: none;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label,
.consent {
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.option:focus-within {
  outline: 3px solid rgba(88, 196, 246, 0.25);
  border-color: var(--blue-500);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.consent input {
  margin-top: 4px;
}

.result-box {
  padding: 22px;
  box-shadow: none;
}

.score-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.score-circle {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: conic-gradient(var(--teal-500) var(--score-deg), #e8eef5 0);
}

.score-circle span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-900);
  font-size: 1.45rem;
  font-weight: 950;
}

.recommendations {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.recommendations li {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  color: var(--navy-900);
  font-weight: 650;
}

.inline-alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 154, 34, 0.34);
  border-radius: var(--radius);
  background: #fff8e8;
  color: #7a4d00;
  font-weight: 750;
}

.save-note {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(38, 169, 154, 0.28);
  border-radius: var(--radius);
  background: #eafaf7;
  color: #0d5f55;
  font-weight: 800;
}

.single-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.btn-whatsapp {
  width: 100%;
}

.btn:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.consultoria {
  background: #fff;
}

.consultoria-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

.consultoria .btn {
  margin-top: 14px;
}

.site-footer {
  position: relative;
  min-height: clamp(72px, 7vw, 96px);
  padding: 0;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 10, 22, 0.82), rgba(2, 10, 22, 0.28));
  pointer-events: none;
}

.footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: #020a16;
  object-fit: cover;
  object-position: center 48%;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: inherit;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-content div {
  max-width: 620px;
}

.footer-content strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1rem;
  line-height: 1.1;
}

.footer-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.35;
}

.leads-page {
  background: #edf4fb;
}

.leads-header .site-nav a[href="/diagnosticos"] {
  border-color: rgba(88, 196, 246, 0.72);
  background: rgba(88, 196, 246, 0.14);
  color: #fff;
}

.leads-main {
  min-height: 100vh;
}

.leads-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 70px) 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(88, 196, 246, 0.2), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 54%, #0e3d68);
  color: #fff;
}

.leads-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.leads-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.leads-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4.8vw, 4.5rem);
}

.leads-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.leads-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.leads-workspace {
  padding: clamp(24px, 4vw, 42px) 0 clamp(48px, 7vw, 86px);
}

.leads-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -54px;
  position: relative;
  z-index: 2;
}

.leads-summary article,
.leads-toolbar,
.lead-list-card,
.lead-detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.leads-summary article {
  padding: 18px;
}

.leads-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.leads-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--navy-900);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1;
}

.leads-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.28fr);
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
}

.lead-search,
.lead-filter {
  display: grid;
  gap: 7px;
}

.lead-search span,
.lead-filter span {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 900;
}

.lead-search input,
.lead-filter select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.lead-search input:focus,
.lead-filter select:focus {
  outline: 3px solid rgba(88, 196, 246, 0.25);
  border-color: var(--blue-500);
}

.leads-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 0.55fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.lead-list-card,
.lead-detail-card {
  overflow: hidden;
}

.lead-list-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.lead-list-head strong {
  color: var(--navy-900);
}

.lead-list-head span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.lead-list {
  display: grid;
  max-height: 720px;
  overflow: auto;
}

.lead-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.lead-row:hover,
.lead-row:focus-visible,
.lead-row.is-selected {
  background: #eef7ff;
}

.lead-row.is-selected {
  box-shadow: inset 4px 0 0 var(--cyan-400);
}

.lead-main {
  min-width: 0;
}

.lead-main strong,
.lead-main small,
.lead-main em {
  display: block;
}

.lead-main strong {
  overflow: hidden;
  color: var(--navy-900);
  font-size: 0.98rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-main small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-main em {
  margin-top: 4px;
  color: #8191a5;
  font-size: 0.78rem;
  font-style: normal;
}

.score-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 950;
}

.score-high {
  background: #e7f8ef;
  color: #117447;
}

.score-medium {
  background: #edf6ff;
  color: #1269b0;
}

.score-low {
  background: #fff5df;
  color: #936000;
}

.score-critical {
  background: #fff0f0;
  color: #ad2d2d;
}

.lead-empty,
.empty-detail {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 28px;
  text-align: center;
}

.lead-empty strong,
.empty-detail strong {
  color: var(--navy-900);
}

.lead-empty span,
.empty-detail span {
  max-width: 340px;
  color: var(--muted);
}

.lead-detail-card {
  position: sticky;
  top: 102px;
}

.detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(238, 246, 255, 0.98), rgba(255, 255, 255, 0.98)),
    #fff;
}

.detail-head span:first-child {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-head h2 {
  margin-bottom: 5px;
  color: var(--navy-900);
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 1.14;
}

.detail-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
}

.detail-grid article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.detail-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.detail-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--navy-900);
  overflow-wrap: anywhere;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 16px 16px;
}

.contact-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue-600);
  font-weight: 850;
  overflow-wrap: anywhere;
  text-align: center;
}

.detail-section {
  padding: 16px;
  border-top: 1px solid var(--line);
}

.detail-section h3 {
  margin-bottom: 12px;
  color: var(--navy-900);
}

.compact-recommendations {
  margin: 0;
}

.answers-stack {
  display: grid;
  gap: 12px;
}

.answer-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.answer-group > strong {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
  color: var(--navy-900);
}

.answer-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
}

.answer-item + .answer-item {
  border-top: 1px solid var(--line);
}

.answer-item span {
  color: var(--navy-900);
}

.answer-item em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--blue-600);
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .site-nav {
    order: 2;
    flex: 1 0 100%;
    min-width: 0;
    justify-content: center;
    overflow-x: auto;
    padding: 2px 0 5px;
  }

  .brand {
    order: 0;
  }

  .header-cta {
    order: 1;
    flex: 0 0 auto;
  }

  .hero-grid,
  .method-layout,
  .implanta-grid,
  .diagnostic-grid,
  .consultoria-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-intro {
    position: static;
  }

  .diagnostic-app {
    order: -1;
  }

  .deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leads-hero-grid,
  .leads-layout {
    grid-template-columns: 1fr;
  }

  .leads-actions {
    justify-content: flex-start;
  }

  .lead-detail-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    gap: 14px 12px;
    min-height: 114px;
    padding: 20px 14px 12px;
  }

  .brand {
    order: 0;
    flex: 0 0 auto;
    width: 118px;
    height: 48px;
  }

  .brand img {
    width: auto;
  }

  .header-cta {
    order: 1;
    display: inline-flex !important;
    position: absolute;
    top: 20px;
    right: 12px;
    flex: 0 0 auto;
    max-width: 156px;
    min-height: 40px;
    padding: 0 11px;
    font-size: 0.78rem;
    line-height: 1.1;
    text-align: center;
  }

  .site-nav {
    order: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 6px;
    gap: 6px;
    overflow: visible;
    padding: 0;
    font-size: 0.75rem;
  }

  .site-nav a {
    min-height: 32px;
    padding: 0 5px;
    border-color: rgba(171, 194, 216, 0.3);
    background: rgba(255, 255, 255, 0.07);
    font-weight: 800;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy,
  .section-heading,
  .implanta-copy,
  .diagnostic-intro {
    max-width: min(100%, 340px);
  }

  h1 {
    max-width: min(100%, 340px);
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    line-height: 1.12;
  }

  .hero-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .product-window {
    margin-top: 4px;
  }

  .hero-art {
    display: none;
  }

  .window-top {
    grid-template-columns: auto 1fr;
  }

  .window-top em {
    grid-column: 2;
  }

  .journey-preview {
    padding: 14px;
  }

  .phase-row,
  .task-card,
  .score-line {
    grid-template-columns: 1fr;
  }

  .phase-percent,
  .task-card small {
    width: max-content;
  }

  .score-badge {
    position: static;
    width: 100%;
    min-height: auto;
    margin-top: 12px;
  }

  .method-stats,
  .deliverables,
  .steps-grid,
  .field-grid,
  .options {
    grid-template-columns: 1fr;
  }

  [data-image-zoom] {
    touch-action: none;
    cursor: zoom-in;
    -webkit-tap-highlight-color: transparent;
  }

  [data-image-zoom].is-zoomed {
    cursor: grab;
  }

  .flow-asset {
    min-height: 260px;
    padding: 10px;
  }

  .screenshot-frame img {
    min-height: 220px;
  }

  .mobile-product-shot img {
    min-height: auto;
  }

  .panel-head {
    display: grid;
  }

  .panel-progress {
    width: 100%;
  }

  .site-footer {
    min-height: 86px;
  }

  .footer-content {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .footer-content p {
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .leads-header {
    align-items: flex-start;
  }

  .leads-hero {
    padding-top: 34px;
  }

  .leads-hero h1 {
    max-width: min(100%, 340px);
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .leads-hero p {
    max-width: min(100%, 340px);
  }

  .leads-actions,
  .leads-toolbar,
  .contact-strip,
  .answer-item {
    grid-template-columns: 1fr;
  }

  .leads-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -28px;
  }

  .lead-list {
    max-height: none;
  }

  .lead-row,
  .detail-head,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .answer-item em {
    width: max-content;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 12px 8px;
    min-height: 112px;
    padding: 18px 12px 11px;
  }

  .brand {
    width: 102px;
    height: 46px;
  }

  .brand img {
    width: auto;
  }

  .header-cta {
    width: auto;
    min-width: 0;
    top: 18px;
    right: 12px;
    max-width: 146px;
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.7rem;
  }

  .site-nav {
    gap: 5px;
    font-size: 0.68rem;
  }

  .site-nav a {
    min-height: 30px;
    padding: 0 4px;
  }

  .hero-lead,
  .section-heading p,
  .implanta-copy p,
  .consultoria p,
  .diagnostic-intro p {
    font-size: 0.98rem;
  }

  .leads-summary {
    grid-template-columns: 1fr;
  }
}

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