/* =========================================================================
   MAGISTRA — Volmar: pantallas independientes
   Fondos de pantalla en /static/img/volmar/*.jpg
   Mapeo origen (docs/Img_ejem, ChatGPT 10 ago 2026):
     bienvenida  <= 03_00_05 | encuentro  <= 03_03_40 | mapa     <= 03_04_52
     juicio      <= 03_05_13 | restauracion <= 03_08_10 | despedida <= 03_10_19
     extra_1..3  <= 03_12_10 / 03_16_23 / 03_19_48
   Para cambiar el fondo de una pantalla basta reemplazar el archivo o
   ajustar la regla `.pantalla-*` de abajo.
   ========================================================================= */

* { box-sizing: border-box; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0;
  color: #233;
  min-height: 100vh;
  background-color: #1c231b;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body.pantalla-bienvenida   { background-image: url('/static/img/volmar/bienvenida.jpg?v=2'); }
body.pantalla-umbral       { background-image: url('/static/img/volmar/inicio_ritual.png?v=1'); }
body.pantalla-encuentro    { background-image: url('/static/img/volmar/encuentro.jpg?v=2'); }
body.pantalla-mapa         { background-image: url('/static/img/volmar/mapa.jpg?v=2'); }
body.pantalla-juicio       { background-image: url('/static/img/volmar/juicio.jpg?v=2'); }
body.pantalla-restauracion { background-image: url('/static/img/volmar/restauracion.jpg?v=2'); }
body.pantalla-despedida    { background-image: url('/static/img/volmar/despedida.jpg?v=2'); }
body.pantalla-fichas       { background-image: url('/static/img/volmar/fichas.png?v=1'); }
body.pantalla-cuenta       { background-image: url('/static/img/volmar/vista_monasterio_default.jpg?v=1'); }

.volmar-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(20, 26, 19, 0.82);
  color: #e9e4d3;
  backdrop-filter: blur(3px);
}

.volmar-topbar a {
  color: #e9e4d3;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.volmar-topbar a:hover { text-decoration: underline; }

.volmar-donar {
  background: #009ee3;
  color: #fff;
  padding: 7px 18px;
  border-radius: 999px;
}

.volmar-donar:hover {
  background: #008ac7;
  text-decoration: none;
}

.volmar-marca { font-size: 0.9rem; letter-spacing: 0.05em; color: #d8cf9f; }

.volmar-main {
  min-height: calc(100vh - 52px);
  padding: 28px 18px 48px;
  background: rgba(18, 22, 17, 0.55);
  display: flex;
  justify-content: center;
}

.volmar-panel {
  width: 100%;
  max-width: 900px;
  background: rgba(253, 250, 242, 0.95);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  padding: 28px 30px;
  align-self: start;
}

.volmar-panel h1 { margin-top: 0; color: #2f4a33; }
.volmar-panel h2 { color: #2f4a33; margin-top: 0; }
.volmar-panel h3 { color: #785b1e; }

.kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #785b1e;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.volmar-panel p { line-height: 1.5; }

.btn {
  display: inline-block;
  background: #2f6f4f;
  color: #fff;
  border: 0;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 0.98rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.btn:hover { background: #265a41; }
.btn.secondary { background: #785b1e; }
.btn.secondary:hover { background: #654a17; }
.btn.ghost { background: transparent; color: #2f6f4f; border: 1px solid #2f6f4f; }
.btn.ghost:hover { background: #eef6eb; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn[hidden] { display: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.hint { font-size: 0.86rem; color: #5b6a5e; line-height: 1.4; }

/* ---------- Fase 0 / Encuentro ---------- */
.phase0-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 12px; }
.phase0-grid .field { display: flex; flex-direction: column; gap: 5px; }
.phase0-grid .field.full { grid-column: 1 / -1; }
.phase0-grid label { font-size: 0.9rem; color: #5a4a2a; font-weight: 700; }
.phase0-grid input,
.phase0-grid select {
  padding: 9px 10px;
  border: 1px solid #c7d0c2;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  width: 100%;
}
.required-mark { color: #b33a2f; font-weight: 800; }
.field-help { font-size: 0.82rem; color: #5a4a2a; line-height: 1.35; }
.required-note { margin-top: 10px; color: #7a2b22; font-weight: 600; font-size: 0.9rem; }
.phase0-summary {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #e5cfaa;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.88rem;
  white-space: pre-wrap;
  line-height: 1.45;
}

.ingredient-picker { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: end; }
.ingredient-search-stack { display: flex; flex-direction: column; gap: 6px; }
.ingredient-status { min-height: 18px; }
.ingredient-suggestions { max-height: 180px; overflow: auto; border: 1px solid #d9e3d2; border-radius: 8px; background: #fff; }
.ingredient-suggestion {
  width: 100%; text-align: left; background: #fff; color: #233; border: 0;
  border-bottom: 1px solid #eef2ec; padding: 9px 10px; border-radius: 0; font-size: 0.92rem; cursor: pointer;
}
.ingredient-suggestion:last-child { border-bottom: 0; }
.ingredient-suggestion:hover { background: #eef6eb; }
.selected-ingredients { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.ingredient-chip {
  display: inline-flex; align-items: center; gap: 6px; background: #eef6eb; color: #2f6f4f;
  border-radius: 999px; padding: 4px 10px; font-size: 0.86rem;
}
.ingredient-chip button { background: #b74b3a; color: #fff; border: 0; border-radius: 999px; padding: 2px 7px; font-size: 0.75rem; cursor: pointer; }

/* ---------- Mapa ---------- */
.map-frame { overflow-x: auto; padding-bottom: 8px; }
.map-shell { min-width: 380px; display: block; }
.vbtn {
  cursor: pointer;
  transition: opacity 0.15s ease, stroke 0.15s ease, stroke-width 0.15s ease;
  transform-box: fill-box;
  transform-origin: center;
  touch-action: manipulation;
}
.vbtn:hover, .vbtn:focus-visible { opacity: 0.88; stroke: #233; stroke-width: 2; }
.vbtn.selected { stroke: #b33a2f; stroke-width: 4; opacity: 1; }
.station-active { stroke: #233; stroke-width: 3; }
.seleccion-panel {
  margin-top: 14px;
  background: #fcfdf9;
  border: 1px solid #d9e3d2;
  border-radius: 12px;
  padding: 16px;
}
.seleccion-panel .pregunta-volmar { margin-bottom: 14px; }
.vlabel { font-size: 7px; fill: #2a2a2a; text-anchor: start; pointer-events: none; }
.legend { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 12px; font-size: 0.85rem; }
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-swatch { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }
.map-guide { margin-top: 14px; background: #fcfdf9; border: 1px solid #d9e3d2; border-radius: 10px; padding: 12px; }

/* ---------- Encuentro ---------- */
.volmar-greeting {
  background: #fcfdf9;
  border: 1px solid #d9e3d2;
  border-radius: 12px;
  padding: 18px 18px 16px;
  margin: 14px 0;
}
.volmar-greeting .pregunta-volmar { margin-bottom: 14px; }

.greeting-field { margin: 0 0 14px; }
.greeting-field label { display: block; font-size: 0.9rem; color: #5a4a2a; font-weight: 700; margin-bottom: 6px; }
.greeting-field input {
  padding: 9px 10px;
  border: 1px solid #c7d0c2;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  width: 100%;
  max-width: 260px;
}
.greeting-field .field-help { margin-top: 6px; }

.revision-lista { margin: 0 0 14px; border: 1px solid #d9e3d2; border-radius: 10px; background: #fcfdf9; }
.revision-fila { display: flex; justify-content: space-between; gap: 12px; padding: 9px 12px; border-bottom: 1px solid #e6ece3; }
.revision-fila:last-child { border-bottom: 0; }
.revision-clave { color: #5a4a2a; font-weight: 700; font-size: 0.9rem; }
.revision-valor { color: #233; font-size: 0.95rem; text-align: right; }

/* ---------- Juicio ---------- */
.phase-strip { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.phase-chip {
  padding: 6px 11px;
  border-radius: 999px;
  background: #e6ece3;
  color: #425147;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.15s ease;
}
.phase-chip:not(:disabled):hover { filter: brightness(0.92); }
.phase-chip:disabled { cursor: default; }
.phase-chip.active { background: #785b1e; color: #fff; }
.phase-chip.done { background: #2f6f4f; color: #fff; }

.question-card { background: #fcfdf9; border: 1px solid #d9e3d2; border-radius: 12px; padding: 16px; }
.pregunta-titulo { color: #2f4a33; font-size: 1.05rem; margin: 0 0 10px 0; }
.pregunta-volmar { font-size: 1.12rem; line-height: 1.5; color: #233; margin: 0 0 8px 0; }
.explicacion { font-size: 0.92rem; color: #44524a; margin: 0 0 14px 0; }
.ojos-misterio-intro { color: #2f4a33; font-size: 0.95rem; margin: 0 0 10px 0; }
.ojos-nivel-titulo { color: #2f4a33; margin: 12px 0 6px 0; }
#juicio-detalle ul { margin: 0 0 10px 0; padding-left: 18px; }
#juicio-detalle li { margin-bottom: 7px; line-height: 1.45; }
.option-list { display: flex; flex-direction: column; gap: 8px; }
.option-btn {
  text-align: left;
  background: #fff;
  color: #233;
  border: 1px solid #b9c7b1;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.option-btn:hover { background: #eef6eb; border-color: #2f6f4f; }

.observation-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pill { background: #eef6eb; color: #2f6f4f; border-radius: 999px; padding: 6px 10px; font-size: 0.88rem; }
.pill.pending { background: #f6ead8; color: #785b1e; }

.ritual-meta { font-size: 0.94rem; color: #425147; line-height: 1.45; }

.alerta-critica {
  margin-top: 14px;
  border: 1px solid #b33a2f;
  background: #fdf0ee;
  color: #7a2b22;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
}

/* ---------- Restauración ---------- */
.remedy-card { margin-top: 4px; padding: 16px; border-radius: 12px; background: #fff; border: 1px solid #d9e3d2; }
.remedy-card ul { margin: 8px 0 0 0; padding-left: 20px; }
.remedy-card li { margin-bottom: 10px; line-height: 1.5; }
.prayer-box { margin-top: 14px; border: 1px solid #e5cfaa; background: #fffdf8; border-radius: 10px; padding: 12px; }
.prayer-box h4 { margin: 0 0 8px 0; color: #785b1e; }
.ficha-fila { margin: 8px 0; }
.ficha-fila strong { color: #2f4a33; }
.resumen-rito { background: #fcfdf9; border: 1px solid #d9e3d2; border-radius: 10px; padding: 12px; margin-top: 14px; }

/* ---------- Despedida ---------- */
.despedida-mensaje { font-size: 1.15rem; line-height: 1.6; font-style: italic; color: #2f4a33; }
.cierre-chip { margin-top: 14px; display: inline-block; background: #efead9; border: 1px solid #d8cf9f; border-radius: 999px; padding: 8px 14px; font-size: 0.9rem; color: #5b4a1e; }

/* ---------- Cuenta / Fichas guardadas ---------- */
.cuenta-card { background: #fcfdf9; border: 1px solid #d9e3d2; border-radius: 12px; padding: 18px; margin: 14px 0; }
.cuenta-encabezado { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.cuenta-encabezado .kicker { margin-top: 0; }
.cuenta-cerrar { background: transparent; border: 1px solid #c7d0c2; color: #425147; font-size: 1.05rem; line-height: 1; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-family: inherit; flex-shrink: 0; }
.cuenta-cerrar:hover { background: #f6ead8; color: #7a2b22; border-color: #b9a26a; }
.cuenta-tabs { display: flex; gap: 6px; margin: 0 0 16px; }
.cuenta-tab { padding: 8px 14px; border-radius: 999px; border: 1px solid #b9c7b1; background: #fff; color: #425147; cursor: pointer; font-family: inherit; font-size: 0.92rem; }
.cuenta-tab.active { background: #2f6f4f; color: #fff; border-color: #2f6f4f; }
.cuenta-field { margin: 0 0 14px; }
.cuenta-field label { display: block; font-size: 0.9rem; color: #5a4a2a; font-weight: 700; margin-bottom: 6px; }
.cuenta-field input,
.cuenta-field select { padding: 9px 10px; border: 1px solid #c7d0c2; border-radius: 8px; font-family: inherit; font-size: 0.95rem; background: #fff; width: 100%; }
.cuenta-mensaje { font-size: 0.9rem; min-height: 20px; margin: 8px 0 0; }
.cuenta-mensaje.error { color: #b33a2f; font-weight: 700; }
.cuenta-mensaje.ok { color: #2f6f4f; font-weight: 700; }
.cuenta-mensaje button.link { background: none; border: none; padding: 0; color: #2f6f4f; text-decoration: underline; cursor: pointer; font-family: inherit; font-size: inherit; }
.cuenta-mensaje button.link:hover { color: #7a2b22; }
.cuenta-terminos { border: 1px solid #d9e3d2; border-radius: 10px; background: #f7faf5; padding: 12px 14px; margin: 0 0 6px; }
.cuenta-terminos summary { cursor: pointer; font-size: 0.9rem; font-weight: 700; color: #2f4a33; }
.cuenta-terminos summary:hover { color: #2f6f4f; }
.terminos-contenido { margin: 10px 0 4px; font-size: 0.85rem; line-height: 1.5; color: #425147; max-height: 220px; overflow: auto; padding-right: 6px; }
.terminos-contenido p { margin: 0 0 8px; }
.cuenta-terminos-check { display: flex; align-items: flex-start; gap: 8px; margin-top: 10px; font-size: 0.88rem; color: #425147; cursor: pointer; }
.cuenta-terminos-check input { width: auto; margin-top: 3px; }

/* Acceso (iniciar sesión / registrarme): campos a lo ancho de la tarjeta */
#cuenta-formularios .cuenta-field input,
#cuenta-formularios .cuenta-field select { max-width: 100%; }
#cuenta-formularios .cuenta-terminos { max-width: 100%; }

/* Alternancia entre iniciar sesión y registrarse */
.cuenta-alternar { margin: 14px 0 0; font-size: 0.92rem; color: #425147; }
.cuenta-alternar button.link { background: none; border: none; padding: 0; color: #2f6f4f; font-weight: 700; text-decoration: underline; cursor: pointer; font-family: inherit; font-size: inherit; }
.cuenta-alternar button.link:hover { color: #7a2b22; }

/* Separador entre formulario clásico y acceso social */
.cuenta-separador { display: flex; align-items: center; gap: 12px; margin: 20px 0 14px; color: #6d7a6f; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.cuenta-separador::before,
.cuenta-separador::after { content: ""; flex: 1; border-top: 1px solid #d9e3d2; }

/* Botones sociales: dos columnas iguales (una debajo de otra en celular) */
.cuenta-oauth { display: grid; gap: 10px; }
@media (min-width: 560px) {
  .cuenta-oauth { grid-template-columns: 1fr 1fr; }
}
.cuenta-oauth .btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 10px 14px; font-weight: 600; color: #425147; border-color: #b9c7b1; background: #fff; }
.cuenta-oauth .btn:hover { background: #f2f7ef; }
.cuenta-oauth .btn svg { flex-shrink: 0; }
.sesion-activa { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.sesion-activa .pregunta-volmar { margin: 0; }
.sesion-identidad { display: flex; align-items: center; gap: 12px; }
.sesion-email { margin: 2px 0 0; color: #6d7a6f; font-size: 0.9rem; }
.sesion-avatar,
.perfil-avatar-preview { width: 56px; height: 56px; border-radius: 50%; background: #2f6f4f; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex: 0 0 auto; }
.avatar-grande { width: 96px; height: 96px; border-radius: 50%; background: #2f6f4f; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.8rem; margin: 0 0 12px; }
.ficha-card { background: #fcfdf9; border: 1px solid #d9e3d2; border-radius: 12px; margin: 12px 0; overflow: hidden; }
.ficha-card summary { cursor: pointer; list-style: none; padding: 14px 16px; font-weight: 700; color: #2f4a33; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ficha-card summary::-webkit-details-marker { display: none; }
.ficha-card summary::after { content: '▾'; margin-left: auto; color: #2f6f4f; transition: transform 0.15s ease; }
.ficha-card-titulo-texto { flex: 1 1 auto; }
.ficha-card-fecha { font-size: 0.8rem; font-weight: 400; color: #425147; white-space: nowrap; }
.ficha-eliminar-rapido { background: transparent; border: 1px solid #d9aaa4; color: #8a332a; border-radius: 8px; width: 30px; height: 30px; padding: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.ficha-eliminar-rapido:hover { background: #fdecec; }
.ficha-card[open] summary::after { transform: rotate(180deg); }
.ficha-card-cuerpo { padding: 0 16px 14px; }
.ficha-meta { font-size: 0.86rem; color: #425147; }
.ficha-fila-detalle { margin: 4px 0; font-size: 0.92rem; }
.ficha-fila-detalle strong { color: #2f4a33; }
.ficha-card ul { margin: 8px 0 0 0; padding-left: 20px; }
.ficha-card li { margin-bottom: 6px; line-height: 1.45; font-size: 0.92rem; }
.ficha-remedio-enlace { color: #2f6f4f; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.ficha-remedio-enlace:hover { color: #1d4d34; }
.ficha-acciones { display: flex; justify-content: flex-end; margin-top: 14px; }
.ficha-eliminar { color: #8a332a; border-color: #d9aaa4; }
.fichas-paginacion { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 18px 0; }
.fichas-paginacion[hidden] { display: none; }
.fichas-paginacion-info { min-width: 100px; text-align: center; font-size: 0.88rem; color: #425147; }
.ficha-remedios-nav { display: flex; align-items: center; justify-content: flex-start; gap: 12px; margin-top: 10px; }
.ficha-remedios-nav-info { min-width: 110px; text-align: center; font-size: 0.85rem; color: #425147; }
.arquetipo-card { background: #fcfdf9; border: 1px solid #d9e3d2; border-radius: 12px; padding: 0; margin: 12px 0; overflow: hidden; }

.arquetipo-card summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 14px 16px; }

.arquetipo-card summary::-webkit-details-marker { display: none; }

.arquetipo-card summary::after { content: '▾'; color: #2f6f4f; font-size: 0.9rem; flex-shrink: 0; transition: transform 0.15s ease; }

.arquetipo-card[open] summary::after { transform: rotate(180deg); }

.arquetipo-card-titulo { font-weight: 700; color: #2f4a33; }

.arquetipo-card-cuerpo { padding: 0 16px 14px; }

.arquetipo-acciones { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.arquetipo-paginacion { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 8px; }
.arquetipo-paginacion[hidden] { display: none; }
.arquetipo-paginacion .btn:disabled { opacity: 0.45; cursor: default; }
.arquetipo-paginacion-info { font-size: 0.86rem; color: #425147; }
.remedios-lista { margin: 10px 0 0 0; padding-left: 18px; }
.remedios-lista li { margin-bottom: 10px; line-height: 1.45; font-size: 0.92rem; }
.remedios-lista .remedios-lista-vacio { list-style: none; margin-left: -18px; }
.volmar-modal-overlay { position: fixed; inset: 0; background: rgba(12, 16, 12, 0.72); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; z-index: 50; padding: 16px; }
.volmar-modal-overlay[hidden] { display: none; }
.volmar-modal { background: #fcfdf9; border: 1px solid #d9e3d2; border-radius: 14px; box-shadow: 0 18px 50px rgba(0,0,0,0.4); padding: 22px 24px; max-width: 420px; width: 100%; }
.volmar-modal h2 { margin: 0 0 10px; color: #b33a2f; font-size: 1.15rem; }
.volmar-modal-texto { margin: 0 0 18px; color: #425147; font-size: 0.95rem; line-height: 1.5; }
.volmar-modal-texto strong { color: #2f4a33; }
.volmar-modal-acciones { display: flex; justify-content: flex-end; gap: 8px; }

@media (max-width: 640px) {
  .volmar-main { padding: 14px 10px 32px; }
  .volmar-panel { padding: 20px 16px; }
  .phase0-grid { grid-template-columns: 1fr; }
  .legend { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ingredient-picker { grid-template-columns: 1fr; }
}
/* Estado de carga: spinner sobre el botón mientras su acción corre. */
button.ocupado {
  color: transparent !important;
  pointer-events: none;
  position: relative;
}

button.ocupado svg { visibility: hidden; }

button.ocupado::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  margin: -7.5px 0 0 -7.5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  animation: volmar-girar .7s linear infinite;
}

@keyframes volmar-girar {
  to { transform: rotate(360deg); }
}

/* ---------------- Donación y compartir ---------------- */

.donacion-motivos {
  margin: 10px 0 16px;
  padding-left: 20px;
  font-size: 0.95rem;
  color: #425147;
}

.donacion-motivos li { margin-bottom: 7px; }

.donacion-montos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.donacion-monto {
  min-width: 72px;
  padding: 11px 14px;
  background: #fff;
  color: #2d3277;
  border: 2px solid #c9d6e2;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
}

.donacion-monto:hover { border-color: #009ee3; }

.donacion-monto.seleccionado {
  background: #009ee3;
  border-color: #009ee3;
  color: #fff;
}

.btn-mercado-pago {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #009ee3;
  color: #fff;
  border: 0;
  padding: 13px 22px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-mercado-pago:hover { background: #008ac7; }
.btn-mercado-pago:disabled { opacity: 0.55; cursor: not-allowed; }

.donacion-confianza {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: #5a6b60;
}

.btns-compartir {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.compartir-boton,
.compartir-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}

.compartir-boton {
  background: #eef6eb;
  color: #2f6f4f;
  border: 1px solid #cbe4c1;
}

.compartir-boton:hover { background: #e2f0dc; }

.compartir-whatsapp {
  background: #25d366;
  color: #fff;
}

.compartir-whatsapp:hover { background: #1fb457; }

.donacion-compartir { margin-top: 16px; padding-top: 14px; border-top: 1px dashed #d9e3d2; }

.monto-stepper {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.monto-stepper button {
  width: 54px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  background: #eef6eb;
  color: #2f6f4f;
  border: 2px solid #c9d6e2;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 0;
}

.monto-stepper button:hover {
  border-color: #009ee3;
  background: #e2f0dc;
}

.monto-stepper input { flex: 1; min-width: 0; }

.hint { margin-top: 6px; }
