/* ── CTA ── */
#consulta { background: var(--navy); }

.cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(37,99,235,0.08) 100%);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: var(--radius-2xl);
  padding: 4rem 2.5rem;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
  pointer-events: none;
}
.cta-box h2 { margin-bottom: 0.75rem; }
.cta-box p  { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta-box { padding: 2.5rem 1.5rem; }
}
