/* Estilo do botão de CTA ajustado ao tamanho do texto */
.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2D4B73 0%, #4C6FA9 50%, #6FA7D9 100%);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.cta-button:hover {
  background: linear-gradient(180deg, #ffffff 0%, #F3F7FB 50%, #E8F0FA 100%);
  color: #2D4B73;
}

.cta-button-white {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #F3F7FB 50%, #E8F0FA 100%);
  color: #2D4B73;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.cta-button-white:hover {
  background: linear-gradient(135deg, #2D4B73 0%, #4C6FA9 50%, #6FA7D9 100%);
  color: #fff;
}