/* =========================================================
   COMPONENTE: CTA PADRÃO
   ========================================================= */

.cta-padrao-section {
  padding: 40px 0;
}

.cta-padrao-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*  */
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.cta-padrao-content {
  flex: 1;
  max-width: 700px;
}

.cta-padrao-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.cta-padrao-content p {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

/* Botões do CTA */
.cta-padrao-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ghost-shadow {
  background: #FFFFFF;
  color: #111827;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.ghost-shadow:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.primary-shadow {
  background: #24DBFF;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(36, 219, 255, 0.3);
}

.primary-shadow:hover {
  background: #1CBDE0;
  box-shadow: 0 6px 20px rgba(36, 219, 255, 0.4);
  transform: translateY(-1px);
}

/* Responsividade */
@media (max-width: 980px) {
  .cta-padrao-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .cta-padrao-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
}