/* CTA final — antes do footer */
.final {
  background: var(--green);
  padding: 96px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final > .rainbow.top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.final > .rainbow.bot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
}

.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,.04) 40px 41px);
  pointer-events: none;
}

.final-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.final-inner .eyebrow-line { justify-content: center; }
.final-inner .eyebrow-light { color: white; }
.final-inner .eyebrow-light .bar { background: white; }

.final h2 {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: -2.6px;
  color: white;
  font-weight: 700;
  line-height: 1;
}
.final h2 em { font-style: italic; font-weight: 400; }

.final p {
  font-size: 17px;
  color: white;
  opacity: .9;
  max-width: 520px;
  margin: 20px auto 0;
  line-height: 1.55;
}
.final p b { color: white; font-weight: 700; }

.final .cta {
  margin-top: 36px;
  background: var(--yellow);
  color: var(--ink);
  padding: 22px 44px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 0 0 var(--ink);
  transition: background .15s ease, box-shadow .12s ease, transform .12s ease;
}
.final .cta:hover {
  background: var(--yellow-hover);
  box-shadow: 0 4px 0 0 var(--ink);
  transform: translateY(4px);
}
.final .cta:active {
  box-shadow: 0 0 0 0 var(--ink);
  transform: translateY(8px);
}
.final .cta svg { transition: transform var(--transition-fast); }
.final .cta:hover svg { transform: translateX(4px); }

.final .trust-row {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: white;
  opacity: .8;
}
.final .trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
