/* ============================================================
   SEÇÃO — CTA Final
============================================================ */
.cta-section {
  padding: 140px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Fundo radial verde */
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(48,209,88,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid de pontos overlay */
.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 100%);
  mask-image:         radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 100%);
}
[data-theme="light"] .cta-grid-overlay {
  background-image: radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

/* Headline */
.cta-headline {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 22px;
}
.cta-headline span {
  background: linear-gradient(135deg, var(--accent), #7dfa9e 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-size: 19px;
  color: var(--text2);
  line-height: 1.65;
  letter-spacing: -.01em;
  margin-bottom: 48px;
}

/* Botões */
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-cta-primary {
  height: 56px;
  padding: 0 32px;
  border-radius: 18px;
  background: var(--accent);
  color: #000;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: opacity .2s, transform .15s, box-shadow .3s;
  box-shadow: 0 8px 32px rgba(48,209,88,.3);
  /* Alinhamento óptico */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-cta-primary:hover {
  opacity: .88;
  transform: scale(.98);
  box-shadow: 0 12px 40px rgba(48,209,88,.4);
}

.btn-cta-secondary {
  height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  background: var(--glass2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  transition: all .2s;
  /* Alinhamento óptico */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-cta-secondary:hover {
  background: var(--glass);
  border-color: var(--border2);
}

.cta-note { font-size: 13px; color: var(--text3); font-weight: 500; letter-spacing: .01em; }

/* Wrap dos 3 phones */
.cta-phone-wrap {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}

.cta-phone-row {
  display: flex;
  gap: 24px;
  align-items: flex-end;
}
