/* ============================================================================
 * apoyo.css — Botón «Contribuir» + modal de donación de RedimX
 * ----------------------------------------------------------------------------
 * Estilo ÚNICO compartido por los 8 programas + inicio. El botón (pastilla
 * ámbar, llamativo pero clásico) abre el modal de donación que construye
 * static/apoyo.js. La posición del botón en cada cabecera se ajusta en el
 * <style>/wrapper de cada plantilla.
 * ==========================================================================*/

/* ── Botón disparador ─────────────────────────────────────────────────── */
.btn-apoyo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #F7C948 0%, #E6971C 100%);
  color: #4A2F10;
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 2px 6px rgba(120, 72, 10, 0.28);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-apoyo:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(120, 72, 10, 0.38); filter: brightness(1.06); }
.btn-apoyo:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(120, 72, 10, 0.28); }
.btn-apoyo:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.btn-apoyo .apoyo-ico { font-size: 13.5px; line-height: 1; }

/* ── Móvil: SOLO el corazón ─────────────────────────────────────────────
   En pantallas pequeñas el texto se interponía sobre títulos y desplazaba
   contenido. Queda la pastilla ámbar compacta con el 💛 (tooltip informa). */
@media (max-width: 768px) {
  .btn-apoyo { padding: 6px 10px; gap: 0; }
  .btn-apoyo span:not(.apoyo-ico) { display: none; }
}

/* ── Overlay del modal (pantalla completa, centrado) ──────────────────── */
.apoyo-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 15, 5, 0.55);
  padding: 16px;
}
.apoyo-overlay.abierto { display: flex; animation: apoyo-fade .15s ease; }
.apoyo-sin-scroll { overflow: hidden; }

@keyframes apoyo-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes apoyo-pop  { from { transform: translateY(8px) scale(.97); opacity: .6; } to { transform: none; opacity: 1; } }

/* ── Modal de donación ─────────────────────────────────────────────────── */
.modal-donacion {
  position: relative;
  background: #ffffff;
  color: #242424;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 26px 24px 18px;
  box-shadow: 0 18px 48px rgba(40, 30, 10, 0.35);
  text-align: center;
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  animation: apoyo-pop .18s ease;
}
.apoyo-cerrar {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #9a8f78;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
}
.apoyo-cerrar:hover { background: #f4f1ea; color: #4A2F10; }

.modal-donacion h3 { font-size: 1.22rem; color: #3c2f14; margin: 0 0 10px; font-weight: 800; }
.modal-donacion .apoyo-intro { font-size: .92rem; line-height: 1.55; color: #4a4a4a; margin: 0 0 6px; }
.modal-donacion .apoyo-intro strong { color: #8a6410; }

/* ── Botones de pago ───────────────────────────────────────────────────── */
.opciones-pago { display: flex; flex-direction: column; gap: 10px; margin: 16px 0 4px; }
.btn-donacion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}
.btn-donacion:hover { transform: translateY(-1px); filter: brightness(1.07); color: #fff; text-decoration: none; }
.btn-donacion:active { transform: translateY(0); }
.btn-payphone { background: #2FA84F; }  /* verde Payphone (tarjetas Visa/Mastercard) */
.apoyo-nota { font-size: .78rem; color: #8c8468; margin: 4px 0 0; }

/* ── Pie: recomendaciones / buzón ──────────────────────────────────────── */
.feedback p {
  font-size: .8rem;
  line-height: 1.5;
  color: #8c8468;
  margin: 14px 0 0;
  border-top: 1px solid #eee7d8;
  padding-top: 12px;
}
.link-buzon { color: #B8860B; font-weight: 700; text-decoration: underline; }
.link-buzon:hover { color: #8a6410; }
