:root {
  --home-navy: #071b42;
  --home-navy-soft: #0b2b66;
  --home-blue: #075ee8;
  --home-blue-soft: #eaf2ff;
  --home-coral: #ff426f;
  --home-orange: #ff9638;
  --home-mint: #24cfa4;
  --home-ink: #10213d;
  --home-muted: #5e6d84;
  --home-border: #dce5f1;
  --home-surface: #ffffff;
  --home-soft: #f5f8fd;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--home-ink);
  background: var(--home-surface);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; padding: 10px 14px; border-radius: 8px; background: #fff; }
.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }

/* Mesmo cabeçalho da home comercial. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  border-bottom: 1px solid rgba(7, 27, 66, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(7, 27, 66, 0.05);
  backdrop-filter: blur(14px);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--home-blue), var(--home-coral), var(--home-orange), var(--home-mint));
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { display: block; width: auto; height: 50px; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  position: relative;
  color: #52627b;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--home-blue);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta {
  min-height: 42px;
  padding: 9px 18px;
  color: #fff;
  background: #ff3d55;
  box-shadow: 0 12px 28px rgba(255, 61, 85, .28);
}
.header-cta:hover { background: #e92d46; box-shadow: 0 16px 34px rgba(233, 45, 70, .34); transform: translateY(-1px); }

/* Hero usa a mesma hierarquia, fundo e mockup da home. */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  padding: 84px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(7, 94, 232, .12), transparent 27%),
    radial-gradient(circle at 4% 92%, rgba(36, 207, 164, .09), transparent 24%),
    #f8faff;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -10%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(7, 94, 232, .12);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); gap: clamp(48px, 6vw, 92px); align-items: center; }
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.1rem;
  padding: .45rem .72rem;
  border: 1px solid rgba(7, 94, 232, .14);
  border-radius: 999px;
  color: var(--home-blue);
  background: rgba(7, 94, 232, .06);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--home-mint); box-shadow: 0 0 0 5px rgba(36, 207, 164, .12); }
h1, h2, h3 { line-height: 1.12; }
h1 {
  max-width: 760px;
  margin: 0 0 1.35rem;
  color: var(--home-navy);
  font-size: clamp(2.7rem, 4.7vw, 4.65rem);
  line-height: .99;
  letter-spacing: -.06em;
}
h1 em { display: block; margin-top: .18em; color: var(--home-blue); font-style: normal; }
.hero-copy { max-width: 650px; margin: 0 0 1.55rem; color: var(--home-muted); font-size: clamp(1rem, 1.4vw, 1.17rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .62rem; margin-top: 1.45rem; }
.button { min-height: 56px; padding: .78rem 1.05rem; border: 1px solid #ff3d55; color: #fff; background: linear-gradient(135deg, #ff4b61, #e92d46); box-shadow: 0 14px 30px rgba(255, 61, 85, .28); }
.button:hover { background: linear-gradient(135deg, #f83a52, #d9223d); box-shadow: 0 18px 36px rgba(233, 45, 70, .36); transform: translateY(-2px); }
.button.secondary { border-color: #d6e0ed; color: var(--home-navy); background: #fff; box-shadow: 0 10px 24px rgba(7, 27, 66, .08); }
.button.secondary:hover { border-color: rgba(7, 94, 232, .38); color: var(--home-blue); background: #f6f9ff; box-shadow: 0 15px 30px rgba(7, 27, 66, .12); }
.trust-line { display: flex; flex-wrap: wrap; gap: .55rem 1.15rem; margin-top: 1.2rem; color: #61708a; font-size: .78rem; font-weight: 750; }
.trust-line span { position: relative; padding-left: 1.05rem; }
.trust-line span::before { content: ""; position: absolute; top: 50%; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--home-mint); transform: translateY(-50%); }

.visual-card {
  position: relative;
  width: min(430px, 86%);
  min-height: 435px;
  margin: 0 auto;
  padding: .72rem;
  border: 1px solid rgba(7, 27, 66, .12);
  border-radius: 27px;
  color: #fff;
  background: #fff;
  box-shadow: 0 35px 75px rgba(7, 27, 66, .2);
  transform: rotate(1.4deg);
}
.visual-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7% -7% -8%;
  border-radius: 40% 58% 48% 38%;
  background: rgba(7, 94, 232, .1);
  transform: rotate(-5deg);
}
.visual-card::after {
  content: "";
  position: absolute;
  top: 18%;
  left: -17%;
  width: 120px;
  height: 74px;
  border: 1px solid rgba(7, 27, 66, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 45px rgba(7, 27, 66, .16);
}
.visual-top { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: .25rem .35rem .65rem 3rem; color: #8490a4; font-size: .58rem; font-weight: 700; }
.visual-top::before { content: ""; position: absolute; top: 21px; left: 20px; width: 7px; height: 7px; border-radius: 50%; background: var(--home-coral); box-shadow: 14px 0 var(--home-orange), 28px 0 var(--home-mint); }
.visual-title {
  min-height: 370px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 2rem 1.25rem 6rem;
  overflow: hidden;
  border-radius: 20px;
  text-align: center;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, .14), transparent 22%),
    linear-gradient(145deg, #0a2d6f, var(--home-navy));
}
.visual-title::before { content: ""; position: absolute; inset: 64px 30px 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px 100px 18px 18px; pointer-events: none; }
.visual-title small { position: relative; z-index: 1; display: block; margin-bottom: .65rem; color: #9fdacb; font-size: .62rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.visual-title strong { position: relative; z-index: 1; display: block; max-width: 350px; color: #fff; font: 700 clamp(2rem, 3.5vw, 3rem) Georgia, serif; line-height: 1.05; }
.visual-list { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; left: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.visual-list span { padding: .58rem .35rem; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; color: rgba(255,255,255,.86); background: rgba(255,255,255,.09); font-size: .62rem; font-weight: 800; text-align: center; backdrop-filter: blur(8px); }

/* Faixa de benefícios igual à faixa logo abaixo da home. */
.proof { background: var(--home-navy); color: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 106px; padding: 1.35rem 1.25rem; border-right: 1px solid rgba(255,255,255,.1); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: .25rem; color: #fff; font-size: .82rem; }
.proof-item span { color: rgba(255,255,255,.6); font-size: .68rem; }

.section { padding: 92px 0; text-align: center; }
.section.soft { background: var(--home-soft); }
.section-heading { max-width: 820px; margin: 0 auto 2.8rem; }
.section-heading .eyebrow { margin-right: auto; margin-left: auto; }
.section-heading h2, .split h2 { margin: 0 0 .9rem; color: var(--home-navy); font-size: clamp(2.15rem, 3.7vw, 3.5rem); line-height: 1.04; letter-spacing: -.05em; }
.section-heading p { margin: 0; color: var(--home-muted); font-size: .98rem; line-height: 1.7; }
.card-grid { width: min(1060px, 100%); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0 auto; }
.card { position: relative; min-height: 250px; padding: 1.6rem; border: 1px solid var(--home-border); border-radius: 21px; background: #fff; box-shadow: 0 14px 34px rgba(7, 27, 66, .05); text-align: left; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.card:hover { border-color: rgba(7,94,232,.28); box-shadow: 0 22px 45px rgba(7,27,66,.1); transform: translateY(-4px); }
.card-number { display: block; margin-bottom: 3.4rem; color: var(--home-blue); font-size: .66rem; font-weight: 900; letter-spacing: .1em; }
.card-number::after { content: ""; position: absolute; top: 2.25rem; left: 3.5rem; width: calc(100% - 5rem); height: 1px; background: linear-gradient(90deg, rgba(7,94,232,.35), transparent); }
.card h3 { margin: 0 0 .65rem; color: var(--home-navy); font-size: 1.08rem; }
.card p { margin: 0; color: var(--home-muted); font-size: .82rem; line-height: 1.6; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(40px, 6vw, 86px); align-items: center; text-align: left; }
.split-copy > .eyebrow { margin-bottom: 1.1rem; }
.split-copy > p { color: var(--home-muted); font-size: .94rem; line-height: 1.7; }
.check-list { list-style: none; display: grid; gap: .6rem; margin: 1.5rem 0 0; padding: 0; }
.check-list li { position: relative; margin: 0; padding: .7rem 0 .7rem 2.1rem; border-bottom: 1px solid var(--home-border); color: #465873; font-size: .82rem; }
.check-list li::before { content: "✓"; position: absolute; top: .64rem; left: 0; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: #087a62; background: rgba(36,207,164,.12); font-size: .62rem; font-weight: 900; }
.info-panel { position: relative; overflow: hidden; padding: 2rem; border-radius: 24px; color: #fff; background: radial-gradient(circle at 90% 10%, rgba(36,207,164,.13), transparent 28%), var(--home-navy); box-shadow: 0 30px 70px rgba(7,27,66,.22); }
.info-panel::after { content: ""; position: absolute; right: -100px; bottom: -150px; width: 350px; height: 350px; border: 1px solid rgba(36,207,164,.15); border-radius: 50%; }
.info-panel h3 { position: relative; z-index: 1; margin: 0 0 1rem; font-size: 1.45rem; }
.info-panel ul { position: relative; z-index: 1; display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.info-panel li { padding: .78rem .9rem; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.78); font-size: .78rem; }

.faq { width: min(900px, 100%); display: grid; gap: .75rem; margin: 0 auto; text-align: left; }
.faq details { overflow: hidden; border: 1px solid var(--home-border); border-radius: 16px; background: #fff; box-shadow: 0 10px 24px rgba(7,27,66,.04); }
.faq summary { position: relative; cursor: pointer; padding: 1.15rem 3.2rem 1.15rem 1.25rem; color: var(--home-navy); font-size: .9rem; font-weight: 850; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 50%; right: 1.2rem; color: var(--home-blue); font-size: 1.2rem; transform: translateY(-50%); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 1.25rem 1.15rem; color: var(--home-muted); font-size: .82rem; line-height: 1.65; }
.related { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; }
.related a { padding: .55rem .85rem; border: 1px solid var(--home-border); border-radius: 999px; color: var(--home-blue); background: #fff; font-size: .75rem; font-weight: 800; text-decoration: none; }
.related a:hover { border-color: rgba(7,94,232,.38); background: var(--home-blue-soft); }

.sales-cta { padding: 110px 0; color: #fff; text-align: center; background: radial-gradient(circle at 15% 120%, rgba(36,207,164,.16), transparent 30%), var(--home-navy); }
.sales-cta h2 { max-width: 900px; margin: 0 auto 1rem; font-size: clamp(2.25rem, 4.5vw, 4rem); line-height: 1.03; letter-spacing: -.055em; }
.sales-cta p { max-width: 760px; margin: 0 auto 1.6rem; color: rgba(255,255,255,.67); font-size: .95rem; line-height: 1.7; }
.sales-cta .hero-actions { justify-content: center; }
.sales-cta .button.secondary { border-color: rgba(255,255,255,.2); color: #fff; background: rgba(255,255,255,.07); }
.sales-cta .button.secondary:hover { color: #fff; background: rgba(255,255,255,.12); }
.site-footer { padding: 34px 0; color: #94a3b8; background: #07163d; font-size: .78rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-inner a { color: #fff; }

@media (max-width: 980px) {
  .site-nav { display: none; }
  .hero { min-height: auto; padding: 68px 0 78px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { text-align: center; }
  .hero-grid > div:first-child { display: grid; justify-items: center; }
  .hero-actions, .trust-line { justify-content: center; }
  .visual-card { margin-top: 1.5rem; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .split { width: min(760px, 100%); }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1240px); }
  .site-header, .header-inner { min-height: 68px; }
  .brand img { height: 42px; }
  .header-cta { min-height: 40px; padding: 8px 12px; font-size: .76rem; }
  .hero { padding: 52px 0 64px; }
  h1 { font-size: clamp(2.35rem, 13vw, 3.5rem); }
  .hero-copy { font-size: .94rem; }
  .hero-actions { width: 100%; display: grid; }
  .hero-actions .button { width: 100%; }
  .visual-card { width: min(390px, 92%); min-height: 395px; }
  .visual-title { min-height: 335px; padding-bottom: 5.5rem; }
  .visual-title::before { inset: 61px 26px 26px; }
  .visual-card::after { display: none; }
  .visual-list { right: 1.5rem; bottom: 1.5rem; left: 1.5rem; }
  .proof-grid, .card-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .section { padding: 70px 0; }
  .section-heading h2, .split h2 { font-size: clamp(2rem, 11vw, 2.75rem); }
  .card { min-height: 225px; }
  .info-panel { padding: 1.4rem; }
  .sales-cta { padding: 82px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}

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