/* ============================================
   CTA.CSS — Seção de chamada para ação
   ============================================ */

.cta-section {
  position: relative;
  z-index: 1;
  padding: 7rem 4rem;
  text-align: center;
}

.cta-box {
  border: 1px solid var(--border);
  padding: 5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(0, 245, 196, 0.05) 0%, transparent 70%);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, var(--accent) 1%, transparent 2%, transparent 100%);
  animation: rotateBorder 6s linear infinite;
  opacity: 0.15;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  position: relative;
}

.cta-box p {
  margin-top: 1.5rem;
  color: rgba(232, 237, 245, 0.5);
  font-size: 1.1rem;
  position: relative;
}

.cta-actions {
  justify-content: center;
  position: relative;
}
