/* =========================
   BUTTON
========================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  background: #ff6f61;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
}

.btn-primary:hover {
  background: #ff4b3e;
  transform: translateY(-2px);
}