/*
  03-components.css — 224live
  Botones, WA FAB y componentes reutilizables entre páginas.
  IDÉNTICO a la fuente canónica.
*/

/* ─── BOTONES ────────────────────────────────────────────────────────────── */

/* Botón primario (fondo oscuro → naranja en hover) */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

/* Botón fantasma (borde oscuro, para fondos claros) */
.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid var(--line);
  color: var(--t2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: border-color .2s, color .2s;
}

.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
}

/* Botón naranja (CTA principal) */
.btn-orange {
  display: inline-block;
  padding: 15px 36px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: opacity .2s, transform .15s;
}

.btn-orange:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* Botón contorno claro (para fondos oscuros) */
.btn-outline-light {
  display: inline-block;
  padding: 15px 32px;
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
  margin-left: 12px;
  transition: border-color .2s, color .2s;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}

/* ─── WA FAB (botón flotante WhatsApp) ──────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  z-index: 500;
  transition: transform .2s;
}

.wa-fab:hover { transform: scale(1.08); }

/* ─── WA BUTTON (en sección contacto) ──────────────────────────────────── */
.wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 20px;
  border: 1.5px solid var(--line);
  border-radius: 1px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--t2);
  transition: border-color .2s, color .2s;
}

.wa-btn:hover {
  border-color: #25D366;
  color: #25D366;
}
