:root {
  --bg: #f4f8fb;
  --bg-soft: #eaf2f8;
  --surface: #ffffff;
  --surface-2: #f1f8f7;
  --ink: #132334;
  --ink-soft: #415469;
  --line: #d7e1ea;
  --primary: #0e6ba8;
  --primary-strong: #0b5b90;
  --accent: #198f78;
  --accent-soft: #e6f6f2;
  --shadow: 0 18px 40px rgba(13, 45, 72, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --container: 1120px;
  --font-title: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 500px at -8% -12%, rgba(25, 143, 120, 0.18), transparent 60%),
    radial-gradient(700px 420px at 108% 0%, rgba(14, 107, 168, 0.18), transparent 58%),
    var(--bg);
  line-height: 1.6;
}

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

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

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.header--scrolled {
  background: rgba(244, 248, 251, 0.86);
  border-color: rgba(13, 67, 108, 0.12);
  backdrop-filter: blur(10px);
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.nav {
  display: none;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0.3rem 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: transform 0.22s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header__cta {
  display: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-nav {
  position: fixed;
  inset: 74px 0 auto;
  z-index: 50;
  padding: 0.75rem 1.125rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.mobile-nav__link {
  padding: 0.58rem 0.4rem;
  border-radius: 10px;
  color: var(--ink-soft);
  font-weight: 700;
}

.mobile-nav__link:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.btn {
  border: 0;
  border-radius: 13px;
  padding: 0.78rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn i {
  width: 1rem;
  height: 1rem;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 20px rgba(13, 89, 141, 0.28);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(13, 89, 141, 0.34);
}

.btn--ghost {
  color: var(--primary-strong);
  background: rgba(14, 107, 168, 0.1);
  border: 1px solid rgba(14, 107, 168, 0.2);
}

.btn--ghost:hover {
  background: rgba(14, 107, 168, 0.15);
}

.btn--lg {
  padding: 0.92rem 1.2rem;
}

.btn--block {
  width: 100%;
}

.hero {
  padding-top: 112px;
  padding-bottom: 52px;
}

.hero__grid {
  display: grid;
  gap: 1.2rem;
}

.hero__content {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.eyebrow,
.section__eyebrow {
  margin: 0 0 0.7rem;
  display: inline-flex;
  padding: 0.3rem 0.66rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-title);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.9rem);
}

.hero__subtitle {
  margin: 0.95rem 0 0;
  font-size: clamp(1rem, 1.7vw, 1.08rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

.hero__actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.microdisclaimer {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: #5f7488;
}

.hero__panel {
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #0f4875 0%, #0e6ba8 58%, #198f78 100%);
  color: #eff7ff;
  box-shadow: var(--shadow);
}

.hero__panel h2 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.96rem;
}

.icon-list i {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.hero__chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__chips span {
  display: inline-flex;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  padding: 58px 0;
}

.section--muted {
  background: linear-gradient(180deg, rgba(14, 107, 168, 0.04) 0%, rgba(25, 143, 120, 0.05) 100%);
  border-top: 1px solid rgba(14, 107, 168, 0.08);
  border-bottom: 1px solid rgba(14, 107, 168, 0.08);
}

.section__title {
  font-size: clamp(1.42rem, 3vw, 2.1rem);
}

.section__subtitle {
  color: var(--ink-soft);
  max-width: 62ch;
}

.cards {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 1rem;
}

.card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.card__icon i {
  width: 1rem;
  height: 1rem;
}

.card h3 {
  font-size: 1.08rem;
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

.confusao {
  display: grid;
  gap: 1rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.62rem;
}

.check-list li {
  display: flex;
  gap: 0.48rem;
  align-items: flex-start;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.76rem;
}

.check-list i {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.steps {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.step {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1rem;
}

.step__number {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.64rem;
}

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

.step p {
  margin: 0.46rem 0 0;
  color: var(--ink-soft);
}

.microdisclaimer--center {
  text-align: center;
  margin-bottom: 0;
}

.docs-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
}

.doc-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.doc-item i {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--primary);
}

.doc-item p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.cta-final {
  background: linear-gradient(135deg, #0b3f66 0%, #0e6ba8 45%, #198f78 100%);
  color: #ecf6ff;
}

.cta-final__content {
  text-align: center;
  max-width: 720px;
}

.cta-final h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.cta-final p {
  margin: 0.76rem auto 1rem;
  color: rgba(236, 246, 255, 0.88);
}

.faq {
  margin-top: 1rem;
  display: grid;
  gap: 0.62rem;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  padding: 0.9rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
}

.faq__question i {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--primary);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq__answer p {
  margin: 0;
  padding: 0 0.9rem 0.94rem;
  color: var(--ink-soft);
}

.faq__item.active .faq__question i {
  transform: rotate(180deg);
}

.footer {
  padding: 1.6rem 0 6rem;
  background: #0e1f31;
  color: #d2e1f0;
}

.footer__content {
  font-size: 0.86rem;
}

.footer__content p {
  margin: 0;
}

.footer__meta {
  margin-top: 0.5rem !important;
  color: #93aec7;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #06b47c, #17a066);
  box-shadow: 0 12px 24px rgba(8, 137, 97, 0.35);
  animation: pulse 2.3s infinite;
}

.floating-wa i {
  width: 1.2rem;
  height: 1.2rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -110px;
  z-index: 45;
  padding: 0.7rem 0.95rem;
  background: rgba(10, 43, 67, 0.9);
  transition: bottom 0.25s ease;
}

.sticky-cta.visible {
  bottom: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(8, 137, 97, 0.35);
  }
  50% {
    box-shadow: 0 12px 24px rgba(8, 137, 97, 0.55);
  }
}

@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-nav,
  .sticky-cta {
    display: none;
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .hero__grid {
    grid-template-columns: 1.25fr 0.95fr;
    gap: 1rem;
    align-items: stretch;
  }

  .hero__content,
  .hero__panel {
    padding: 1.8rem;
  }

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

  .confusao {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

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

  .floating-wa {
    right: 1.4rem;
    bottom: 1.4rem;
  }

  .footer {
    padding-bottom: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}
