/* Base compartilhada dos botoes CTA. Combine com .cta-primary ou .cta-secondary. */
.cta {
  align-items: center;
  border: 0;
  border-radius: 10px;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: var(--font-size-button);
  gap: 12px;
  line-height: 1.2;
  margin: 15px 0;
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  text-decoration: none;
}

/* CTA roxo preenchido. */
.cta-primary {
  background: linear-gradient(
    to right,
    var(--gradient-dark-purple),
    var(--gradient-light-purple)
  );
  color: var(--text-color-white);
  justify-content: space-between;
}

/* CTA branco com borda. */
.cta-secondary {
  background-color: var(--text-color-white);
  color: var(--text-secondary-color);
  border: solid 1px var(--primary-purple-color);
  box-shadow: 3.7px 3.7px 12.3px var(--color-shadow-15);
}

.cta-textbox {
  display: flex;
  align-items: center;
  min-width: 0;
}

@media (min-width: 768px) {
  .cta {
    font-size: var(--font-size-text);
    min-height: 70px;
  }
}
