/* =========================
   BASE BUTTON
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 10px 18px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
  text-decoration: none;

  transition: all 0.2s ease;
}

/* =========================
   PRIMARY (AZUL)
========================= */

.btn.primary {
  background: #2563eb;
  color: #ffffff;
}

.btn.primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* =========================
   OUTLINE
========================= */

.btn.outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn.outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* =========================
   WHATSAPP
========================= */

.btn.whatsapp {
  background: #25d366;
  color: white;
}

.btn.whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* =========================
   BLOCK (FULL WIDTH)
========================= */

.btn.block {
  width: 100%;
}

/* =========================
   SIZES
========================= */

.btn.sm {
  padding: 6px 12px;
  font-size: 13px;
}

.btn.lg {
  padding: 14px 22px;
  font-size: 16px;
}

/* =========================
   DISABLED
========================= */

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* =========================
   GROUP
========================= */

.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .buttons {
    justify-content: center;
  }

  .btn {
    font-size: 13px;
    padding: 9px 14px;
  }

}

.share-float svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.8;
}
