:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-soft: #eef2f6;
  --text: #172033;
  --muted: #667085;
  --muted-strong: #475467;
  --line: #d8dee8;
  --line-soft: #e7ebf1;
  --primary: #0f1f33;
  --primary-2: #173354;
  --accent: #9a7247;
  --accent-dark: #7d5b37;
  --success: #237b52;
  --shadow: 0 18px 48px rgba(18, 33, 51, .10);
  --radius: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 222, 232, .92);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(15, 31, 51, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.brand-mark::before {
  width: 21px;
  height: 21px;
  border: 1.8px solid rgba(255,255,255,.92);
}

.brand-mark::after {
  width: 9px;
  height: 9px;
  border: 1.5px solid rgba(255,255,255,.78);
}

.brand-mark span::before {
  width: 4px;
  height: 4px;
  background: var(--accent);
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.brand-text strong,
.footer-brand strong {
  display: block;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.brand-text small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 10px;
  color: var(--muted-strong);
  font-size: .92rem;
  font-weight: 650;
  transition: background .18s ease, color .18s ease;
}

.main-nav a:hover {
  background: var(--surface-soft);
  color: var(--primary);
}

.main-nav .nav-cta {
  margin-left: 8px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 750;
}

.main-nav .nav-cta:hover {
  background: var(--primary-2);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--primary);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 82% 12%, rgba(154, 114, 71, .12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
}

.hero-section::before {
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .85fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  color: var(--primary);
  font-size: clamp(1.85rem, 2.7vw, 2.65rem);
  line-height: 1.14;
  letter-spacing: -.04em;
  font-weight: 800;
}

.hero-text {
  max-width: 670px;
  margin-bottom: 28px;
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: .93rem;
  font-weight: 750;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 31, 51, .16);
}

.btn-primary:hover {
  background: var(--primary-2);
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--primary);
}

.btn-secondary:hover {
  border-color: #c8d0dc;
  background: #f9fafb;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--muted-strong);
  font-size: .84rem;
  font-weight: 650;
}

.trust-list span::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--success);
  content: "";
}

.hero-panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(216, 222, 232, .92);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: 18px auto auto -12px;
  width: 5px;
  height: 86px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.panel-header span {
  display: block;
  color: var(--muted);
  font-size: .79rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.panel-header strong {
  display: block;
  margin-top: 2px;
  color: var(--primary);
  font-size: 1.26rem;
  line-height: 1.2;
}

.panel-header em {
  padding: 6px 10px;
  border: 1px solid rgba(35, 123, 82, .20);
  border-radius: 999px;
  background: rgba(35, 123, 82, .08);
  color: var(--success);
  font-size: .78rem;
  font-style: normal;
  font-weight: 800;
}

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

.status-grid article,
.system-card,
.activity-list {
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: #fbfcfd;
}

.status-grid article {
  padding: 14px;
}

.status-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.status-grid strong {
  display: block;
  color: var(--primary);
  font-size: .9rem;
  line-height: 1.35;
}

.system-card {
  margin-top: 12px;
  padding: 18px;
}

.system-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.system-card-head strong {
  color: var(--primary);
  font-size: .98rem;
}

.system-card-head span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}

.chart-line {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  gap: 9px;
  height: 150px;
  padding: 10px 0 0;
}

.chart-line i {
  display: block;
  min-height: 28px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #24496f, #14283f);
}

.chart-line i:nth-child(even) {
  background: linear-gradient(180deg, #b18a5f, #84613d);
}

.activity-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 15px;
}

.activity-list div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-strong);
  font-size: .9rem;
  font-weight: 650;
}

.activity-list span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
}

.module-strip {
  border-block: 1px solid var(--line);
  background: var(--primary);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}

.strip-grid span {
  display: grid;
  min-height: 70px;
  place-items: center;
  border-right: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-size: .84rem;
  font-weight: 700;
  text-align: center;
}

.strip-grid span:first-child {
  border-left: 1px solid rgba(255,255,255,.10);
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: #fff;
  border-block: 1px solid var(--line-soft);
}

.section-heading {
  text-align: center;
}

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

.section-heading p:last-child,
.split-title > p,
.management-copy > p {
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading p:last-child {
  margin: 18px auto 0;
  max-width: 720px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.audience-card,
.module-card,
.steps-grid article,
.process-box {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(18, 33, 51, .045);
}

.audience-card {
  padding: 24px;
}

.audience-card strong,
.module-card strong,
.steps-grid strong,
.process-step strong {
  display: block;
  color: var(--primary);
  line-height: 1.25;
}

.audience-card strong {
  margin-bottom: 9px;
  font-size: 1.04rem;
}

.audience-card p,
.module-card p,
.steps-grid p,
.process-step p {
  margin: 0;
  color: var(--muted-strong);
}

.split-title {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, .78fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}

.split-title > p {
  margin-bottom: 0;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.module-card {
  min-height: 226px;
  padding: 22px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.module-card:hover,
.steps-grid article:hover,
.audience-card:hover {
  transform: translateY(-3px);
  border-color: #c7d0dc;
  box-shadow: 0 18px 42px rgba(18, 33, 51, .075);
}

.module-card span,
.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(154, 114, 71, .10);
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 800;
}

.module-card strong {
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.module-card p,
.steps-grid p,
.process-step p {
  font-size: .94rem;
  line-height: 1.65;
}

.management-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, .9fr);
  align-items: center;
  gap: 56px;
}

.process-box {
  padding: 26px;
}

.process-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.process-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.process-head strong {
  display: block;
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1.2;
}

.process-step {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.process-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
}

.process-step strong {
  margin-bottom: 5px;
  font-size: 1rem;
}

.management-copy h2 {
  max-width: 520px;
}

.management-copy > p {
  margin: 18px 0 0;
  max-width: 570px;
}

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

.check-list li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #fff;
  color: var(--muted-strong);
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(35, 123, 82, .12);
  color: var(--success);
  content: "✓";
  font-size: .7rem;
  font-weight: 900;
  line-height: 16px;
  text-align: center;
  transform: translateY(-50%);
}

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

.steps-grid article {
  min-height: 208px;
  padding: 22px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.steps-grid strong {
  margin-bottom: 9px;
  font-size: 1.03rem;
}

.cta-section {
  padding: 70px 0 84px;
  background: var(--bg);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), #1d3b5d);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  max-width: 720px;
  color: #fff;
}

.cta-box p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.76);
}

.cta-box .eyebrow {
  color: #d6b692;
}

.cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
  white-space: nowrap;
}

.cta-box .btn-primary:hover {
  background: #f3f6fa;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand p,
.footer-contact p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  color: var(--primary);
  font-weight: 750;
}

.footer-contact a:hover {
  color: var(--accent-dark);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 999px;
  background: #1f8f5f;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(31, 143, 95, .24);
  transition: transform .18s ease, background .18s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #18764e;
}

@media (max-width: 1040px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero-grid,
  .management-grid,
  .split-title {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .split-title {
    gap: 16px;
  }

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

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

  .strip-grid span:nth-child(4) {
    border-left: 1px solid rgba(255,255,255,.10);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
  }

  .main-nav .nav-cta {
    justify-content: center;
    margin: 8px 0 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-text small {
    display: none;
  }

  .hero-section {
    padding: 62px 0 52px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .cta-box .btn {
    width: max-content;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .main-nav {
    inset: 68px 14px auto 14px;
  }

  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .btn,
  .cta-box .btn {
    width: 100%;
  }

  .trust-list span {
    width: 100%;
  }

  .hero-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-panel::before {
    display: none;
  }

  .status-grid,
  .module-grid,
  .steps-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid span,
  .strip-grid span:first-child,
  .strip-grid span:nth-child(4) {
    min-height: 52px;
    border-left: 1px solid rgba(255,255,255,.10);
  }

  .chart-line {
    height: 112px;
  }

  .section {
    padding: 58px 0;
  }

  .module-card,
  .steps-grid article {
    min-height: auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}


/* Ajustes SEO/acessibilidade */
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: top .18s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(18, 33, 51, .06);
}

.faq-item h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1.04rem;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  color: var(--muted-strong);
  font-size: .95rem;
}

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

/* SEO local / empresa desenvolvedora */
.local-section {
  background: #f8fafc;
  border-top: 1px solid var(--line-soft);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .58fr);
  gap: 34px;
  align-items: center;
}

.local-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.75;
}

.local-card {
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow);
}

.local-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.12rem;
  line-height: 1.25;
}

.local-card > span {
  display: block;
  margin-top: 6px;
  color: var(--accent-dark);
  font-size: .92rem;
  font-weight: 750;
}

.local-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.local-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-strong);
  font-size: .95rem;
  line-height: 1.55;
}

.local-card li::before {
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  content: "";
}

.local-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: .9rem;
  font-weight: 750;
}

.local-card a:hover {
  background: var(--primary-2);
}

#faq .faq-grid {
  margin-top: 34px;
}

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

@media (max-width: 640px) {
  .local-card {
    padding: 22px;
  }
}
