/* ─── CTA BANNER ─────────────────────────────────── */
.cta-section {
  background: linear-gradient(148deg, var(--violet) 0%, #1D4ED8 100%);
  text-align: center;
  padding: 6rem 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

/* Sobreescritura de colores de texto para el fondo oscuro */
.cta-section .section-tag   { color: rgba(255,255,255,0.55); }
.cta-section .section-title { color: white; max-width: 560px; margin: 0 auto 1rem; }
.cta-section .section-sub   { color: rgba(255,255,255,0.68); margin: 0 auto 2.5rem; }

.cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.cta-wa a { color: rgba(255,255,255,0.9); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
