/*
 * SEÇÃO CTA INTERMEDIÁRIO
 * Call-to-action entre as seções principais
 */

.cta-intermediate {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-intermediate::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 126, 216, 0.08) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.cta-intermediate-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-intermediate-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.cta-intermediate-content p {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .cta-intermediate {
    padding: 3rem 1.5rem;
  }

  .cta-intermediate-content h2 {
    font-size: 2rem;
  }

  .cta-intermediate-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .cta-intermediate-content h2 {
    font-size: 1.75rem;
  }

  .cta-intermediate-content p {
    font-size: 1rem;
  }
}
