.cta {
  padding: 100px 0;
}

.cta-inner {
  display: flex;
  max-width: 1120px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 56px;
  border: 1px solid rgba(17, 150, 243, 0.35);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 50%, rgba(17, 150, 243, 0.18), transparent 30%),
    rgba(5, 18, 33, 0.96);
  box-shadow:
    0 0 35px rgba(17, 150, 243, 0.18),
    inset 0 0 18px rgba(17, 150, 243, 0.08);
}

.cta__conteudo {
  max-width: 620px;
}

.cta__tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.cta-inner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.2;
}

.cta-inner p {
  margin-top: 16px;
  color: rgba(244, 247, 251, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-neon {
  display: flex;
  min-width: 290px;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: 18px;
  text-align: left;
  box-shadow:
    0 0 26px rgba(17, 150, 243, 0.45),
    inset 0 0 12px rgba(255, 255, 255, 0.05);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.btn-neon:hover {
  box-shadow:
    0 0 38px rgba(17, 150, 243, 0.62),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.btn-neon svg {
  flex-shrink: 0;
  color: #25d366;
  filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.7));
}

.btn-neon span {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.btn-neon small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .cta-inner {
    flex-direction: column;
    padding: 36px 28px;
    text-align: center;
  }

  .btn-neon {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    text-align: center;
  }

  .btn-neon span {
    align-items: center;
  }
}
