.ofrenda-banner {
  background: linear-gradient(135deg, #F59E0B, #F97316);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
  text-align: center;
  margin-bottom: 28px;
}
.ofrenda-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}
.ofrenda-banner p {
  font-size: 0.9rem;
  opacity: 0.95;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 6px;
}
.ofrenda-ref {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 600;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.ofrenda-tipos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.tipo-btn {
  padding: 8px 14px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  background: none;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.tipo-btn.active {
  border-color: #F59E0B;
  background-color: rgba(245,158,11,0.1);
  color: #92400E;
}

.metodos-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.metodo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.15s;
}
.metodo-card:active { background-color: var(--color-bg); }
.metodo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.metodo-info { flex: 1; }
.metodo-info h4 {
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 3px;
}
.metodo-info p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.metodo-arrow {
  font-size: 1.4rem;
  color: var(--color-text-muted);
}

/* Modal info */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1100;
}
.modal-overlay.active { display: block; }
.modal-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 480px;
  margin: 0 auto;
  background-color: var(--color-surface);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 12px 0 0;
  z-index: 1101;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.modal-sheet.active { transform: translateY(0); }

#modalContent {
  padding: 0 24px calc(32px + env(safe-area-inset-bottom, 16px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

/* Evita que nav fixed tape el contenido */
.detail-body { padding-bottom: 120px; }
