.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  text-decoration: none;
  width: 100%;
  max-width: 320px;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

/* Primary Gradient Button */
.cta-primary {
  background: linear-gradient(90deg, #06b6d4, #0d9488);
  color: white;
}

.cta-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.4);
}

/* Outline Purple Button */
.cta-outline {
  background: transparent;
  border: 2px solid #c084fc;
  color: #c084fc;
}

.cta-outline:hover {
  background-color: #c084fc;
  color: black;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 16px rgba(192, 132, 252, 0.3);
}

/* WhatsApp Button */
.cta-whatsapp {
  background-color: #25d366;
  color: white;
}

.cta-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
}

/* Icon inside */
.cta-button i {
  font-size: 1.25rem;
}
