/* ── FOOTER ── */
footer.site-footer {
  background: #0d1825;
  color: #fff;
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.footer-logo {
  height: 2.25rem;
  width: auto;
}

.footer-mission-badge {
  display: inline-block;
  background: #fff112;
  color: #2c4364;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 0.375rem;
  margin-bottom: 0.6rem;
}

.footer-mission-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.1rem 1.75rem;
  max-width: 560px;
  text-align: center;
}

.footer-mission-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.footer-social-link:hover {
  background: #fff112;
  color: #2c4364;
}

.footer-bottom {
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── TÍTULO PADRÃO SITE ── */
.page-title-block {
  text-align: center;
  margin-bottom: 0.25rem;
}

.page-h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.page-h1 .line-plain {
  display: block;
  color: var(--navy);
}

.page-h1 .line-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.05em 0.35em;
  border-radius: 0.5rem;
  margin: 0.08em 0;
}

.line-plain.anim-left {
  animation: slideFromLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.line-badge.anim-right {
  animation: slideFromRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.h1-l1 {
  animation-delay: 0.08s;
}

.h1-l2 {
  animation-delay: 0.32s;
}

.h1-l3 {
  animation-delay: 0.56s;
}

.page-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem auto 0;
  width: 100%;
  max-width: 480px;
  animation: fadeUp 0.55s ease 0.7s both;
}

.page-rule-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(44, 67, 100, 0.15),
    rgba(44, 67, 100, 0.04)
  );
}

.page-rule-line.rev {
  background: linear-gradient(
    90deg,
    rgba(44, 67, 100, 0.04),
    rgba(44, 67, 100, 0.15)
  );
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── BLOQUEIO DO FORMULÁRIO ATÉ ACEITE DO LEIA-ME ── */
.form-lock-wrapper {
  position: relative;
}

/* Overlay cobre toda a área do formulário */
.form-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(248, 250, 252, 0);
  pointer-events: all;
  cursor: not-allowed;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}

.form-lock-overlay.unlocked {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Bloqueia interação com stepper e step-panels */
.steps-locked .stepper,
.steps-locked .step-panel {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  opacity: 0.45;
  filter: blur(1.5px);
  transition:
    opacity 0.4s,
    filter 0.4s;
}

.steps-locked .step-panel.active {
  display: block;
}
