/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--orange-dark);
  padding: var(--section-py) 0;
}
.cta-final__inner { text-align: center; }

.cta-final__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.cta-final__subtitle {
  font-size: 18px;
  color: var(--bg-main);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-final__trust {
  font-size: 13px;
  color: rgba(255,243,233,0.55);
  letter-spacing: 0.02em;
}
.cta-final__trust span { margin: 0 0.6rem; }


/* ===== FOOTER ===== */
.footer {
  background: var(--orange-deep);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.footer__logo .agent { color: var(--orange); }
.footer__logo .ia    { color: var(--blue-medium); }

.footer__desc {
  font-size: 14px;
  color: var(--border);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 15px;
  color: var(--border);
  transition: color 150ms;
}
.footer__link:hover { color: var(--bg-main); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(92,45,10,0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy { font-size: 13px; color: var(--text-muted); }

@media (max-width: 768px) {
  .cta-final__buttons { flex-direction: column; }
  .cta-final__buttons .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__desc  { max-width: 100%; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
