/* ================================================
   CTA — bloco de destaque entre seções
   ================================================ */

.cta-preview {
  padding: 4rem 0;
  background: #f8f9fb;
  font-family: 'Inter', sans-serif;
}

.cta-preview__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-preview__card {
  position: relative;
  background:
    linear-gradient(90deg, rgba(10, 22, 40, 0.97) 0%, rgba(13, 31, 60, 0.9) 45%, rgba(13, 31, 60, 0.75) 100%),
    linear-gradient(160deg, rgba(24, 95, 165, 0.25) 0%, transparent 60%),
    #0a1628;
  border-radius: 16px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}

.cta-preview__content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.cta-preview__title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.cta-preview__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0;
  max-width: 540px;
}

.cta-preview__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cta-preview__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

.cta-preview__btn--primary {
  background: #ffffff;
  color: #0d1f3c;
}
.cta-preview__btn--primary:hover { background: #EBF4FF; }

.cta-preview__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 0.5px solid rgba(255, 255, 255, 0.3);
}
.cta-preview__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .cta-preview__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    gap: 24px;
  }
  .cta-preview__title { font-size: 22px; }
}
