/* ============================================================
   W08 · Detalle de evento (rich redesign)
   ============================================================ */
.app-body.no-default-pad { padding: 0; }
/* The inner padded area still needs enough bottom space to clear the
   bottom-nav (when present) or the sticky CTA `.no-nav` variant. Either
   way ~108px works for both cases. Individual screen spacer divs at the
   end are now redundant but harmless. */
.app-body.no-default-pad .app-body-pad {
  padding: 0 18px calc(var(--bottom-nav-h, 78px) + 30px);
}

.evt-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px 16px;
}
.evt-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  z-index: -2;
}
.evt-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.85) 100%);
  z-index: -1;
}
.evt-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
}
.evt-hero-icon-btn {
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s;
}
.evt-hero-icon-btn:hover { background: rgba(255,255,255,.32); }
.evt-hero-icon-btn.active { background: var(--naranja); border-color: var(--naranja); }
.evt-hero-icon-btn svg { width: 18px; height: 18px; fill: currentColor; }
.evt-hero-bottom { color: white; }
.evt-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-right: 6px;
}
.evt-pill.featured { background: var(--naranja); }
.evt-hero-title {
  margin: 10px 0 6px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  letter-spacing: -0.5px;
  max-width: 92%;
}
.evt-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}
.evt-hero-meta .dot { opacity: .6; }
.evt-hero-meta svg { width: 12px; height: 12px; fill: currentColor; vertical-align: -2px; }

.evt-attendees {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 12px 14px;
  margin: 16px 0 14px;
  position: relative;
  box-shadow: var(--shadow-xs);
}
.evt-avatars {
  display: flex;
  flex-shrink: 0;
}
.evt-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--azul-50);
  border: 2px solid white;
  margin-left: -10px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.evt-avatar:first-child { margin-left: 0; }
.evt-attendees-text { min-width: 0; flex: 1; }
.evt-attendees-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--azul);
  line-height: 1.2;
}
.evt-attendees-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.evt-info-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.evt-info-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 12px;
  min-width: 0;
}
.evt-info-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.evt-info-ic svg { width: 18px; height: 18px; fill: currentColor; }
.evt-info-meta { min-width: 0; flex: 1; }
.evt-info-lbl {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 2px;
}
.evt-info-val {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.evt-info-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn-mini-action {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--azul-50);
  color: var(--azul);
  border: 0;
  display: grid; place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .15s, transform .12s;
}
.btn-mini-action:hover { background: var(--azul); color: white; transform: scale(1.05); }
.btn-mini-action svg { width: 16px; height: 16px; fill: currentColor; }

.evt-section { margin-bottom: 22px; }
.evt-section-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--azul);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.evt-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.evt-map {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
}

.evt-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.evt-gal-tile {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
}
.evt-gal-tile:hover { transform: scale(1.04); box-shadow: var(--shadow); }

.evt-similar-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 -18px;
  padding: 0 18px 6px;
  scrollbar-width: none;
}
.evt-similar-row::-webkit-scrollbar { display: none; }
.evt-sim-card {
  flex: 0 0 200px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
  scroll-snap-align: start;
}
.evt-sim-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.evt-sim-photo {
  height: 100px;
  background-size: cover;
  background-position: center;
}
.evt-sim-info { padding: 10px 12px 12px; }
.evt-sim-date {
  font-size: 10px;
  font-weight: 800;
  color: var(--naranja);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.evt-sim-name {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin: 3px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.evt-sim-meta {
  font-size: 10.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.evt-sim-meta svg { width: 9px; height: 9px; fill: currentColor; }

.evt-sticky-cta {
  position: absolute;
  left: 12px; right: 12px;
  bottom: calc(var(--bottom-nav-h, 64px) + 10px);
  display: flex;
  gap: 8px;
  align-items: stretch;
  z-index: 20;
}
/* When the screen has no bottom-nav, anchor the CTA to the device's home
   indicator instead of leaving a huge gap below it. */
.evt-sticky-cta.no-nav { bottom: 28px; }
.btn-icon-square {
  width: 50px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--naranja);
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}
.btn-icon-square:hover { border-color: var(--naranja); }
.btn-icon-square.on { background: var(--naranja); color: white; border-color: var(--naranja); }
.btn-icon-square svg { width: 20px; height: 20px; fill: currentColor; }
.evt-cta-main {
  flex: 1;
  box-shadow: 0 6px 18px rgba(237,107,64,.32);
}

/* ============================================================
   W10 · Detalle de non-profit (rich redesign)
   ============================================================ */
.np-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -44px;
  padding: 72px 18px 22px;
  border-radius: 0;
  min-height: 0;
}
.np-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.np-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(28,60,133,.30) 35%, rgba(15,32,80,.92) 100%);
  z-index: -1;
}
.np-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
}
.np-hero-bottom { color: white; }
.np-hero-pills {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.np-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}
.np-pill img { width: 12px; height: 12px; }
.np-pill svg { fill: currentColor; }
.np-pill.anclado { background: var(--naranja); border-color: var(--naranja); }
.np-hero-org {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .3px;
}
.np-hero-title {
  margin: 4px 0 6px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
  color: white;
  letter-spacing: -0.4px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  max-width: 92%;
}
.np-hero-meta {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.np-hero-meta svg { fill: currentColor; vertical-align: -1px; }

.np-progress-card {
  background: linear-gradient(160deg, var(--naranja-50) 0%, white 70%);
  border: 1px solid var(--naranja-100);
  border-radius: 20px;
  padding: 16px;
  margin: 14px 0 14px;
  box-shadow: var(--shadow-xs);
}
.np-progress-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1;
  margin: 4px 0 4px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.np-progress-num .have { color: var(--naranja); }
.np-progress-num .sep {
  color: var(--naranja-100);
  font-size: 22px;
  font-weight: 700;
  transform: translateY(-2px);
}
.np-progress-num .need {
  color: var(--text-2);
  font-size: 18px;
  font-weight: 800;
}
.np-progress-sub {
  font-size: 11px;
  color: var(--text-2);
  font-weight: 600;
}
.np-progress-sub strong { color: var(--naranja); font-weight: 800; }
.np-progress-bar {
  height: 8px;
  background: white;
  border: 1px solid var(--naranja-100);
  border-radius: 30px;
  overflow: hidden;
  margin-top: 8px;
}
.np-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--naranja) 0%, #ff8a5a 100%);
  border-radius: 30px;
  transition: width .35s cubic-bezier(.2,.8,.3,1);
}
.np-avatars-stack {
  display: inline-flex;
  align-items: center;
}
.np-avatars-stack .evt-avatar {
  border-color: white;
}
.np-vol-more {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  background: var(--naranja);
  color: white;
  border-radius: 50%;
  border: 2px solid white;
  font-size: 10px;
  font-weight: 800;
  margin-left: -10px;
  letter-spacing: -0.3px;
}

.np-impact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.np-impact-item {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.np-impact-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.np-impact-ic svg { width: 18px; height: 18px; fill: currentColor; }
.np-impact-meta { min-width: 0; flex: 1; }
.np-impact-num {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.np-impact-lbl {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 1px;
}

.np-help-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.np-help-card {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: transform .12s, box-shadow .12s, border-color .12s;
  width: 100%;
  box-shadow: var(--shadow-xs);
}
.np-help-card:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: var(--naranja-100); }
.np-help-ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.np-help-ic svg { width: 18px; height: 18px; fill: currentColor; }
.np-help-meta { flex: 1; min-width: 0; }
.np-help-meta h4 {
  margin: 0 0 2px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.np-help-meta p {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}
.np-help-arrow {
  color: var(--muted);
  font-size: 20px;
  flex-shrink: 0;
}

.np-org-card {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-xs);
}
.np-org-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.np-org-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.np-org-info { min-width: 0; flex: 1; }
.np-org-info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
.np-org-info p {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--muted);
}
.np-org-verified { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.np-org-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
}
.np-org-stat { text-align: center; }
.np-org-stat .num {
  font-size: 18px;
  font-weight: 800;
  color: var(--azul);
  letter-spacing: -0.3px;
  line-height: 1;
}
.np-org-stat .lbl {
  font-size: 9.5px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 700;
}
.np-org-social {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  justify-content: center;
}
.np-org-social-btn {
  width: 36px; height: 36px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: white;
  display: grid;
  place-items: center;
  color: var(--c, var(--azul));
  cursor: pointer;
  transition: transform .12s, background .12s, color .12s;
}
.np-org-social-btn:hover {
  background: var(--c, var(--azul));
  color: white;
  border-color: var(--c, var(--azul));
  transform: translateY(-2px);
}
.np-org-social-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   W13 · Detalle de vacante (rich redesign)
   ============================================================ */
.job-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -44px;
  padding: 72px 18px 28px;
  border-radius: 0;
  min-height: 0;
}
.job-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.job-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,60,133,.35) 0%, rgba(28,60,133,.45) 35%, rgba(15,32,80,.92) 100%);
  z-index: -1;
}
.job-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
}
.job-hero-bottom { color: white; }
.job-hero-empresa-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px 6px 6px;
  border-radius: 30px;
  cursor: pointer;
  max-width: 100%;
  margin-bottom: 12px;
  transition: background .15s;
}
.job-hero-empresa-pill:hover { background: rgba(255,255,255,.22); }
.job-hero-empresa-logo {
  width: 32px; height: 32px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.4);
}
.job-hero-empresa-info { min-width: 0; }
.job-hero-empresa-lbl {
  font-size: 12px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.job-hero-verified {
  display: inline-grid;
  place-items: center;
  width: 14px; height: 14px;
  background: var(--naranja);
  color: white;
  border-radius: 50%;
}
.job-hero-verified svg { width: 8px; height: 8px; fill: currentColor; }
.job-hero-empresa-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,.8);
  margin-top: 1px;
  font-weight: 600;
}
.job-hero-empresa-sub svg { width: 9px; height: 9px; fill: currentColor; vertical-align: -1px; }
.job-hero-title {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  color: white;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  max-width: 94%;
}
.job-hero-meta {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

.job-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 14px 0 18px;
  position: relative;
  z-index: 2;
}
.job-stat {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 11px 12px;
  box-shadow: var(--shadow-xs);
  min-width: 0;
}
.job-stat-lbl {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
}
.job-stat-val {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.job-stat.highlight {
  background: linear-gradient(135deg, #e9f7ec 0%, white 70%);
  border-color: #b9e1c7;
  grid-column: 1 / -1;
  padding: 14px 16px;
}
.job-stat.highlight .job-stat-lbl { color: #1f7a3a; }
.job-stat.highlight .job-stat-val {
  font-size: 24px;
  color: #1f7a3a;
  letter-spacing: -0.6px;
}

.job-reqs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-reqs li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.4;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-2);
}
.job-reqs li:last-child { border-bottom: 0; }
.job-req-ic {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: #e9f7ec;
  color: #1f7a3a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.job-req-ic svg { width: 11px; height: 11px; fill: currentColor; }

.job-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.job-benefit {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-xs);
}
.job-benefit-ic {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--naranja-50);
  color: var(--naranja);
  display: grid;
  place-items: center;
}
.job-benefit-ic svg { width: 16px; height: 16px; fill: currentColor; }
.job-benefit-title {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}
.job-benefit-sub {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.35;
}

.job-empresa-card {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .12s;
  box-shadow: var(--shadow-xs);
}
.job-empresa-card:hover {
  border-color: var(--naranja-100);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.job-empresa-cover {
  height: 100px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line-2);
}
.job-empresa-info { padding: 12px 14px 14px; }
.job-empresa-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.job-empresa-name {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
  flex: 1;
  min-width: 0;
}
.job-empresa-verified {
  width: 22px; height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}
.job-empresa-desc {
  font-size: 11.5px;
  color: var(--muted);
  margin: 6px 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-empresa-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-2);
  font-weight: 600;
  flex-wrap: wrap;
}
.job-empresa-meta .dot { color: var(--line); }
.job-empresa-meta svg { vertical-align: -1px; }
.job-empresa-link { color: var(--naranja); font-weight: 800; }

.job-process { display: flex; flex-direction: column; }
.job-process-step {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 6px 0;
}
.job-process-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--azul-50);
  color: var(--azul);
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  z-index: 1;
  border: 2px solid white;
  box-shadow: 0 0 0 1px var(--azul-100);
}
.job-process-meta { padding-top: 4px; min-width: 0; flex: 1; }
.job-process-meta h4 {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.job-process-meta p {
  margin: 0 0 12px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}
.job-process-line {
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: -6px;
  width: 2px;
  background: var(--azul-100);
  z-index: 0;
}

/* ============================================================
   W09 · Detalle de negocio (rich redesign)
   ============================================================ */
/* `.bizd-hero` (= biz-detail hero) is namespaced to avoid colliding with the
   older `.biz-hero` used by the Mi Negocio dashboard, which is a rounded card
   on a colored background. */
.bizd-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -44px;
  padding: 72px 14px 16px;
  border-radius: 0;
  background-color: transparent;
  min-height: 0;
}
.bizd-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: -2;
}
.bizd-hero-scroll {
  position: absolute; inset: 0;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  z-index: -2;
  -webkit-overflow-scrolling: touch;
}
.bizd-hero-scroll::-webkit-scrollbar { display: none; }
.bizd-hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.bizd-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.55) 100%);
  z-index: -1;
  pointer-events: none;
}
.bizd-hero-dots {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 20px;
}
.bizd-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: all .2s ease;
}
.bizd-dot.active {
  width: 18px;
  background: white;
  border-radius: 4px;
}
.bizd-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
  pointer-events: none; /* let swipe gestures pass through the empty space */
  position: relative;
  z-index: 1;
}
.bizd-hero-top > * { pointer-events: auto; }
.bizd-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* The title card overlaps the bottom ~36px of the hero — push the indicators
     up so they stay clearly above the white card edge. */
  padding-bottom: 44px;
  z-index: 1;
  position: relative;
  pointer-events: none;
}
.bizd-hero-bottom > * { pointer-events: auto; }
.bizd-hero-photo-counter {
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.biz-title-card {
  background: white;
  border-radius: 18px;
  padding: 14px 14px 12px;
  margin: -36px 0 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,.10);
  border: 1px solid var(--line-2);
  position: relative;
  z-index: 2;
}
.biz-cat-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--naranja);
  background: var(--naranja-50);
  padding: 3px 8px;
  border-radius: 20px;
}
.biz-title-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 6px 0 6px;
  letter-spacing: -0.4px;
  line-height: 1.15;
}
.biz-title-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
}
.biz-title-meta .dot { color: var(--line); }
.biz-rating-inline { color: var(--ink); display: inline-flex; align-items: center; gap: 4px; }
.biz-rating-inline strong { font-weight: 800; }
.biz-rating-inline svg { fill: currentColor; }
.biz-open { color: #1f7a3a; font-weight: 800; display: inline-flex; align-items: center; gap: 4px; }
.biz-open-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #1f7a3a; }
.biz-verified-badge {
  width: 36px; height: 36px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
}

.biz-quick-actions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.biz-qa {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 10px 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  transition: all .15s;
  box-shadow: var(--shadow-xs);
}
.biz-qa:hover { transform: translateY(-2px); border-color: var(--naranja-100); }
.biz-qa-ic {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid; place-items: center;
}
.biz-qa-ic svg { width: 18px; height: 18px; fill: currentColor; }

.biz-promo {
  background: linear-gradient(135deg, var(--naranja-50) 0%, white 60%);
  border: 1px solid var(--naranja-100);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.biz-promo-ic {
  width: 42px; height: 42px;
  background: var(--naranja);
  color: white;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(237,107,64,.35);
}
.biz-promo-ic svg { width: 22px; height: 22px; fill: currentColor; }
.biz-promo-body { min-width: 0; flex: 1; }
.biz-promo-eyebrow {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--naranja);
}
.biz-promo-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 2px;
}
.biz-promo-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

.biz-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.biz-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .3px;
  background: var(--naranja-50);
  color: var(--naranja);
  padding: 4px 9px;
  border-radius: 30px;
}
.biz-tag.bizr { background: var(--azul-50); color: var(--azul); }

.biz-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.biz-service {
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-2);
  padding: 6px 11px;
  border-radius: 30px;
}

.biz-gallery-strip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 -18px;
  padding: 0 18px 6px;
  scrollbar-width: none;
}
.biz-gallery-strip::-webkit-scrollbar { display: none; }
.biz-gallery-tile {
  flex: 0 0 140px;
  height: 140px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform .12s, box-shadow .12s;
  background-color: var(--surface-2);
}
.biz-gallery-tile:hover { transform: scale(1.03); box-shadow: var(--shadow); }

.biz-horario {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 4px 14px;
}
.biz-horario-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 12.5px;
}
.biz-horario-row:last-child { border-bottom: 0; }
.biz-horario-row.hoy { color: var(--azul); font-weight: 800; }
.biz-horario-dia { color: var(--text-2); }
.biz-horario-row.hoy .biz-horario-dia { color: var(--azul); }
.biz-horario-today {
  display: inline-block;
  background: var(--naranja);
  color: white;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: 1px;
}
.biz-horario-hora { color: var(--muted); font-weight: 600; }
.biz-horario-row.hoy .biz-horario-hora { color: var(--ink); font-weight: 800; }

.biz-address {
  font-size: 12.5px;
  color: var(--text-2);
  margin: 0 0 10px;
  line-height: 1.4;
}

.biz-vacantes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.biz-vacante {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s, border-color .12s;
}
.biz-vacante:hover { transform: translateY(-2px); border-color: var(--naranja-100); box-shadow: var(--shadow); }
.biz-vacante-ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--azul-50);
  color: var(--azul);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.biz-vacante-ic svg { width: 20px; height: 20px; fill: currentColor; }
.biz-vacante-info { min-width: 0; flex: 1; }
.biz-vacante-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}
.biz-vacante-meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.biz-vacante-salario { color: #1f7a3a; font-weight: 800; }
.biz-vacante-arrow {
  color: var(--muted);
  font-size: 22px;
  flex-shrink: 0;
}

.biz-reviews-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(160deg, var(--azul-50), white);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 10px;
}
.biz-reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.biz-reviews-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--azul);
  letter-spacing: -1px;
  line-height: 1;
}
.biz-reviews-stars-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.biz-reviews-stars {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
}
.biz-reviews-stars svg { fill: currentColor; display: block; }
.biz-reviews-count {
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}
.biz-reviews-header .btn { flex: 1; min-width: 0; }

.biz-reviews {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.biz-review {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-xs);
}
.biz-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.biz-review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--azul-50);
}
.biz-review-meta { min-width: 0; flex: 1; }
.biz-review-name {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.biz-review-sub {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 2px;
}
.biz-review-stars {
  display: inline-flex;
  gap: 1px;
  flex-shrink: 0;
}
.biz-review-stars svg { fill: currentColor; }
.biz-review-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0;
}

.biz-redes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.biz-red {
  background: linear-gradient(135deg, var(--c, var(--azul)), var(--c2, var(--azul-700)));
  color: white;
  border: 0;
  border-radius: 12px;
  padding: 10px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform .12s;
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
}
.biz-red:hover { transform: translateY(-2px); }
.biz-red-ic {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  color: white;
}
.biz-red-ic svg { width: 20px; height: 20px; fill: currentColor !important; }

