/* ============================================
   SINTEGRAD · COMPONENTS — BOTONES CTA
   ============================================ */

.btn-sg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

/* Variante Azul (Principal) */
.btn-sg--blue {
  background: #00A2FF;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 162, 255, 0.25);
}

/* Variante Verde (WhatsApp/Éxito) */
.btn-sg--green {
  background: #2ECC40;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(46, 204, 64, 0.25);
}

/* Variante Lila (Especial/Domótica) */
.btn-sg--purple {
  background: #A56EFF;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(165, 110, 255, 0.25);
}

.btn-sg:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn-sg:active {
  transform: translateY(0);
}