/* ================================================
   CTA
   ================================================ */
.cta-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--text);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.cta-heading {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta-heading em {
  font-style: normal;
  font-weight: 600;
}

.cta-sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 16px 24px;
  min-height: 52px;
  align-self: flex-start;
  transition: border-color 0.2s, background 0.2s;
}
.cta-btn:active {
  background: rgba(255,255,255,0.05);
}

.cta-btn svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ── Faixa degradê ── */
.cta-stripe {
  height: 3px;
  background: linear-gradient(to right, #F48115, #EE274E, #3EA5AC, #A4CE2B);
}

/* ── Desktop ── */
@media (min-width: 768px) {
  .cta-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
  }
  .cta-content { flex: 1; }
  .cta-btn { align-self: flex-end; }
}
