.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;

  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;

  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);

  cursor: pointer;
  transition: all .2s ease;
}

.btn:hover{
  border-color: var(--brand);
}

.btn--brand{
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn--brand:hover{
  filter: brightness(1.1);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.btn--primary{
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn--outline-light{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.35);
}

.btn--outline-light:hover{
  background: rgba(255,255,255,.08);
}

.btn--whatsapp{
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn--whatsapp:hover{
  filter: brightness(1.08);
}


