/* ===============================
   FINAL CTA
================================ */

.final-cta {
  background: #f3efe7;
  padding: 120px 20px;
  text-align: center;
}

.final-cta-container {
  max-width: 760px;
  margin: auto;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: #111;
}

.final-cta-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* botón principal */

.cta-primary {
  background: #111;
  color: white;
  padding: 16px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

.cta-primary:hover {
  background: #000;
  transform: translateY(-2px);
}

/* botón secundario */

.cta-secondary {
  border: 2px solid #111;
  color: #111;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-secondary:hover {
  background: #111;
  color: white;
}/* CSS Document */

