/* ============================================================
   PROFILE (W03)
   ============================================================ */
.profile-head {
  position: relative;
  background: linear-gradient(160deg, var(--azul), var(--azul-700));
  color: white;
  margin: -16px -18px 0;
  padding: 20px 18px 70px;
  text-align: center;
  overflow: hidden;
}
.profile-head .mascot-deco {
  position: absolute; right: -10px; bottom: -8px;
  width: 110px; opacity: .95;
  pointer-events: none;
}
.profile-head .avatar-lg,
.profile-hero .avatar-lg {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--naranja), #ffaa7a);
  margin: 4px auto 0;
  border: 3px solid white;
  display: grid; place-items: center;
  color: white; font-weight: 800; font-size: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  position: relative;
  flex-shrink: 0;
}
.profile-head .avatar-lg { width: 92px; height: 92px; font-size: 30px; border-width: 4px; }
.profile-head .avatar-lg.has-photo,
.profile-hero .avatar-lg.has-photo { background: var(--surface-2); }
.profile-head .avatar-lg img,
.profile-hero .avatar-lg img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.profile-head .avatar-lg .avatar-edit-badge,
.profile-hero .avatar-lg .avatar-edit-badge {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 26px; height: 26px;
  background: var(--naranja);
  border: 2.5px solid white;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.profile-head .avatar-lg .avatar-edit-badge {
  width: 32px; height: 32px;
  border-width: 3px;
}
.profile-head .avatar-lg .avatar-edit-badge svg,
.profile-hero .avatar-lg .avatar-edit-badge svg { width: 12px; height: 12px; fill: currentColor; }
.profile-head .avatar-lg .avatar-edit-badge svg { width: 14px; height: 14px; }
.fav-btn { color: var(--muted-2); }
.fav-btn.active { background: var(--naranja); color: white; }
.fav-btn .ruta-heart {
  width: 18px; height: 18px;
  display: inline-grid; place-items: center;
}
.fav-btn .ruta-heart svg { fill: currentColor; }

/* Heart button inside business carousel cards */
.business-card .photo .card-fav {
  position: absolute;
  top: 8px; left: 8px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  border: 0; border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: transform .15s, background .15s;
  color: var(--muted-2);
}
.business-card .photo .card-fav .ruta-heart svg { fill: currentColor; width: 16px; height: 16px; }
.business-card .photo .card-fav:hover { transform: scale(1.1); }
.business-card .photo .card-fav.active { background: var(--naranja); color: white; }

/* Inline fav on list-cards */
.card-fav-inline {
  background: transparent; border: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--muted-2);
  transition: all .15s;
  flex-shrink: 0;
}
.card-fav-inline .ruta-heart svg { fill: currentColor; width: 18px; height: 18px; }
.card-fav-inline:hover { background: var(--naranja-50); color: var(--naranja); }
.card-fav-inline.active { color: var(--naranja); background: var(--naranja-50); }

/* Payment buttons — unified base */
.payment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  height: 44px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all .15s;
  border: 1.5px solid var(--line);
  background: white;
  color: var(--ink);
}
.payment-btn .pay-ico,
.payment-btn .pay-ico-apple,
.payment-btn .pay-ico-google {
  display: inline-grid; place-items: center;
}
.payment-btn .pay-ico { width: 18px; height: 18px; color: currentColor; }
.payment-btn .pay-ico svg { fill: currentColor; width: 100%; height: 100%; }
.payment-btn .apple-mark { width: 13px; height: 16px; display: inline-grid; place-items: center; color: currentColor; }
.payment-btn .apple-mark svg { width: 100%; height: 100%; fill: currentColor; }
.payment-btn .google-mark { width: 16px; height: 16px; display: inline-grid; place-items: center; }
.payment-btn .google-mark svg { width: 100%; height: 100%; }
.payment-btn .pay-text { font-weight: 700; font-size: 13px; letter-spacing: -.2px; }

.payment-btn.pay-card.active { background: var(--azul); color: white; border-color: var(--azul); box-shadow: 0 4px 12px rgba(28,60,133,.25); }
.payment-btn.pay-card.active .pay-ico { color: white; }
.payment-btn.pay-apple.active { background: #000; color: white; border-color: #000; }
.payment-btn.pay-apple.active .pay-ico-apple { color: white; }
.payment-btn.pay-google.active { border-color: var(--azul); background: var(--azul-50); }
.payment-btn:not(.active):hover { border-color: var(--azul-100); }
.profile-head h2 { margin: 10px 0 2px; font-size: 19px; font-weight: 800; }
.profile-head .hearts {
  font-size: 12.5px; color: #ffd2c0; font-weight: 700;
  background: rgba(255,255,255,.12);
  display: inline-block; padding: 4px 12px;
  border-radius: 30px;
}
.profile-card {
  background: white;
  border-radius: 22px;
  margin: 0 4px 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
/* Only the card immediately following the colored hero floats up over it. */
.profile-hero + .profile-card { margin-top: -45px; }
.profile-section h3 {
  margin: 14px 0 8px;
  font-size: 11px;
  color: var(--azul);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.profile-section:first-child h3 { margin-top: 4px; }
.profile-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
  cursor: pointer;
}
.profile-row:last-child { border-bottom: 0; }
.profile-row:hover { padding-left: 4px; }
.profile-row .left { display: flex; align-items: center; gap: 12px; }
.profile-row .ico {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--azul-50);
  color: var(--azul);
  display: grid; place-items: center;
  font-size: 17px;
  flex-shrink: 0;
}
.profile-row .ico.naranja { background: var(--naranja-50); color: var(--naranja); }
.profile-row .ico img { width: 20px; height: 20px; }
.profile-row .ico svg { width: 20px; height: 20px; fill: currentColor; }
.profile-row .name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.profile-row .arrow { color: var(--muted-2); font-size: 18px; }

/* ============================================================
   BUSINESS PROFILE (W21)
   ============================================================ */
.biz-cover {
  margin: -16px -18px 0;
  height: 200px;
  background:
    linear-gradient(180deg, rgba(28,60,133,0) 0%, rgba(28,60,133,.65) 100%),
    linear-gradient(135deg, var(--naranja) 0%, #ffaa7a 60%, #ffb88a 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.biz-cover .photo-counter {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(0,0,0,.55);
  color: white; font-size: 11px;
  padding: 4px 10px;
  border-radius: 30px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.biz-cover .fav-btn {
  position: absolute;
  top: 12px; left: 14px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.95);
  color: var(--naranja);
  border: 0;
  border-radius: 14px;
  font-size: 16px;
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  font-weight: 700;
}

.biz-head {
  position: relative;
  margin: -32px 0 0;
  background: white;
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.biz-head h2 { margin: 0; color: var(--ink); font-size: 19px; font-weight: 800; line-height: 1.2; }
.biz-head .meta-row {
  display: flex; gap: 8px; margin-top: 8px; align-items: center; flex-wrap: wrap;
}
.biz-head .verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 800; color: var(--azul);
  background: var(--azul-50);
  padding: 4px 10px;
  border-radius: 30px;
}
.biz-head .verified img { width: 14px; }

.biz-actions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 14px 0;
}
.biz-action {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 9px 4px 8px;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
}
.biz-action:hover { border-color: var(--naranja-100); transform: translateY(-2px); }
.biz-action .ic {
  width: 34px; height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--naranja), #ffaa7a);
  color: white;
  display: grid; place-items: center;
  font-size: 14px;
  margin: 0 auto 5px;
  box-shadow: 0 4px 10px rgba(237,107,64,.3);
}
.biz-action .lbl { font-size: 9px; font-weight: 800; color: var(--azul); letter-spacing: .2px; }

.biz-block {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 10px;
}
.biz-block h4 {
  margin: 0 0 8px; color: var(--azul);
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  display: flex; align-items: center; gap: 6px;
}
.biz-block p { margin: 0; color: var(--text-2); font-size: 13px; line-height: 1.55; }
.biz-tags { display: flex; gap: 6px; margin: 8px 0 0; flex-wrap: wrap; }
.tag {
  background: var(--naranja-50);
  color: var(--naranja-600);
  font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 30px;
  font-weight: 800;
  letter-spacing: .2px;
}

.mini-map {
  width: 100%;
  height: 110px;
  background:
    linear-gradient(120deg, #e1e8f5 0%, #eef3ff 100%);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}
.mini-map-real { background: #e7eaf3; }
.mini-map-real::before, .mini-map-real::after,
.mini-map-real .road1, .mini-map-real .road2,
.mini-map-real .pin { display: none !important; }
.mini-map-real .leaflet-container { font-family: 'Montserrat', sans-serif; border-radius: 14px; }
.mini-map-real .leaflet-popup-content-wrapper { border-radius: 12px; box-shadow: 0 6px 18px rgba(28,60,133,.18); }
.mini-map-real .leaflet-popup-content { margin: 10px 12px; font-size: 12px; line-height: 1.4; }
.mini-map-real .leaflet-popup-tip { background: white; }
.full-map {
  width: 100%;
  height: 100%;
  position: relative;
}
.full-map .leaflet-container { height: 100%; width: 100%; font-family: 'Montserrat', sans-serif; }

/* Keep Leaflet panes BELOW the drawer (200) and modal-host (300) */
.leaflet-pane, .leaflet-top, .leaflet-bottom { z-index: 1 !important; }
.leaflet-control-zoom { z-index: 2 !important; }
.leaflet-popup { z-index: 3 !important; }
.mini-map, .full-map { position: relative; z-index: 0; isolation: isolate; }
.mini-map::before, .mini-map::after { content: ""; position: absolute; background: rgba(28,60,133,.08); }
.mini-map::before { left: 30%; top: 0; width: 1px; height: 100%; }
.mini-map::after { left: 0; top: 45%; width: 100%; height: 1px; }
.mini-map .road1, .mini-map .road2 {
  position: absolute; background: rgba(28,60,133,.06);
}
.mini-map .road1 { left: 0; top: 25%; width: 100%; height: 12px; }
.mini-map .road2 { left: 55%; top: 0; width: 14px; height: 100%; }
.mini-map .pin {
  position: absolute;
  left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  background: var(--naranja);
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  box-shadow: 0 4px 14px rgba(237,107,64,.5);
}
.mini-map .pin::after {
  content: ""; position: absolute;
  left: 50%; top: 38%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: white; border-radius: 50%;
}

/* ============================================================
   CÍRCULO progress sliders (W15)
   ============================================================ */
.progress-slider { margin: 14px 0; }
.progress-slider .lbl {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--azul); font-weight: 800;
  margin-bottom: 8px;
}
.progress-slider .track {
  height: 12px;
  background: var(--azul-50);
  border-radius: 30px;
  overflow: visible;
  position: relative;
}
.progress-slider .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--naranja), #ffaa7a);
  border-radius: 30px;
  position: relative;
}
.progress-slider .fill::after {
  content: "";
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  background: white url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ED6B40'><path d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/></svg>") center/13px no-repeat;
  width: 24px; height: 24px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(237,107,64,.4);
  border: 2px solid var(--naranja);
}
.progress-slider .nums {
  display: flex; justify-content: space-between;
  font-size: 10.5px; color: var(--muted); font-weight: 600;
  margin-top: 8px;
  line-height: 1.4;
}

/* ============================================================
   W22 stats
   ============================================================ */
.stats-bars { display: flex; align-items: flex-end; gap: 6px; height: 130px; padding: 12px 0 26px; }
.stats-bars .bar {
  flex: 1;
  background: linear-gradient(0deg, var(--azul) 0%, var(--azul-600) 100%);
  border-radius: 8px 8px 4px 4px;
  position: relative;
  min-height: 8px;
  transition: opacity .15s;
}
.stats-bars .bar.highlight { background: linear-gradient(0deg, var(--naranja) 0%, #ff8e5f 100%); }
.stats-bars .bar .v {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  font-size: 9.5px; color: var(--azul); font-weight: 800;
  white-space: nowrap;
}
.stats-bars .bar .m {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  font-size: 9.5px; color: var(--muted); font-weight: 700;
}

.metric-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
}
.metric-row:last-child { border-bottom: 0; }
.metric-row .label {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; color: var(--ink);
}
/* Bienvenida onboarding carousel */
.welcome-back, .welcome-skip {
  position: absolute;
  top: 56px;
  z-index: 5;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.25);
  color: white;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
}
.welcome-back {
  left: 20px;
  width: 36px; height: 36px;
  border-radius: 12px;
  font-size: 20px;
  display: grid; place-items: center;
}
.welcome-skip {
  right: 20px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
}
.welcome-back:hover, .welcome-skip:hover {
  background: rgba(255,255,255,.3);
}

.welcome .top {
  padding-top: 56px;
  padding-bottom: 0;
}

.welcome-text {
  padding: 0 28px;
  text-align: center;
  color: white;
  margin-bottom: 14px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome-text h1 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.5px;
}
.welcome-text p {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
  line-height: 1.5;
}

.welcome-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.welcome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .25s;
}
.welcome-dot:hover { background: rgba(255,255,255,.5); }
.welcome-dot.active {
  background: var(--naranja);
  width: 22px;
  border-radius: 30px;
}

/* Scene card tinted (segunda y tercera slide pueden no necesitar fondo gris) */
.welcome .scene .scene-card.tinted {
  background: #f2f2f2;
}
.welcome .scene .scene-card:not(.tinted) {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.welcome .scene .scene-card img {
  transition: opacity .3s ease;
}

/* W02 · Login - hero banner + card */
.login-body {
  padding: 0 !important;
  background: var(--surface-2) !important;
}
.login-hero {
  position: relative;
  height: 240px;
  overflow: hidden;
  margin: 0;
}
.login-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.login-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,60,133,0.85) 0%, rgba(28,60,133,0.7) 50%, rgba(28,60,133,0.95) 100%);
}
.login-hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 28px 24px;
  text-align: center;
  color: white;
}
.login-hero-logo {
  height: 38px;
  margin: 0 auto 16px;
  display: block;
}
.login-hero-content h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  color: white;
}
.login-hero-content p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.login-card {
  background: white;
  margin: -28px 18px 0;
  padding: 24px 20px;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -8px 24px rgba(28,60,133,.08);
  position: relative;
  z-index: 2;
  border-radius: 22px;
  margin-bottom: 24px;
}

/* Input con icono */
.input-icon { position: relative; }
.input-icon .input-ic {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--muted-2);
  pointer-events: none;
  z-index: 1;
}
.input-icon .input-ic svg { width: 100%; height: 100%; fill: currentColor; }
.input-icon .input.has-ic { padding-left: 40px; }
.input-icon .input-ic-trail {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  color: var(--muted-2);
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 8px;
}
.input-icon .input-ic-trail:hover { background: var(--azul-50); color: var(--azul); }
.input-icon .input-ic-trail svg { fill: currentColor; }
.input-icon .input.has-ic[type="password"]:not([data-shown]) ~ .input-ic-trail,
.input-icon .input.has-ic { padding-right: 44px; }

/* W15 · Círculo de Conexión redesign (compacto) */
.circulo-hero {
  position: relative;
  border-radius: 22px;
  padding: 18px;
  margin: 4px 0 10px;
  overflow: hidden;
  min-height: 150px;
}
.circulo-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--azul) 0%, #1A2B5C 40%, var(--azul-700) 100%);
}
.circulo-hero-bg::before {
  content: ""; position: absolute;
  top: -60px; right: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(closest-side, rgba(237,107,64,.45), transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}
.circulo-hero-bg::after {
  content: ""; position: absolute;
  bottom: -60px; left: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(closest-side, rgba(124,77,255,.25), transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}
.circulo-hero-content {
  position: relative;
  z-index: 1;
  max-width: 65%;
  color: white;
}
.circulo-hero-mascot {
  position: absolute;
  right: 4px; bottom: 0;
  height: 130px;
  pointer-events: none;
  z-index: 0;
}
.circulo-hero-title {
  margin: 4px 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -.3px;
  font-style: italic;
}
.circulo-hero-desc {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}

/* Stats card stand-alone debajo del hero */
.circulo-social-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
}
.circulo-stat { text-align: center; flex: 1; min-width: 0; }
.circulo-stat-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--azul);
  line-height: 1;
}
.circulo-stat-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.2px;
}
.circulo-stat-divider {
  width: 1px;
  height: 24px;
  background: var(--line);
  flex-shrink: 0;
}

/* Video card */
.circulo-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1d2b;
  margin-bottom: 14px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.circulo-video-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.circulo-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.6);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: transform .15s;
}
.circulo-play:hover { transform: translate(-50%, -50%) scale(1.05); }
.circulo-video-tag {
  position: absolute;
  bottom: 10px; left: 12px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.circulo-video-tag svg { fill: currentColor; }

/* Beneficios grid 2x2 */
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.beneficio-card {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: var(--shadow-xs);
  transition: transform .15s, box-shadow .15s;
}
.beneficio-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.beneficio-ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.beneficio-ic svg { width: 20px; height: 20px; fill: currentColor; }
.beneficio-tit {
  font-size: 12px;
  font-weight: 800;
  color: var(--azul);
  line-height: 1.2;
  margin-bottom: 4px;
}
.beneficio-desc {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* Testimonios del Círculo */
.circulo-testimonio {
  flex: 0 0 240px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 16px;
  scroll-snap-align: start;
  box-shadow: var(--shadow-xs);
  position: relative;
}
.circulo-testimonio-stars {
  display: flex; gap: 2px;
  margin-bottom: 8px;
}
.circulo-testimonio-text {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0 0 12px;
  font-style: italic;
  min-height: 72px;
}
.circulo-testimonio-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line-2);
}
.circulo-testimonio-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--azul-50);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

/* Evento exclusivo */
.circulo-evento {
  position: relative;
  height: 160px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 18px;
}
.circulo-evento-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.circulo-evento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,60,133,0) 30%, rgba(28,60,133,.85) 100%);
}
.circulo-evento-body {
  position: absolute;
  bottom: 14px; left: 14px;
  color: white;
  max-width: 75%;
  z-index: 1;
}
.circulo-evento-body h3 {
  margin: 6px 0 4px;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.circulo-evento-body p {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.circulo-evento-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--naranja);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 30px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.circulo-evento-tag svg { fill: currentColor; }

/* CTA final */
.circulo-cta {
  margin-top: 16px;
}
.circulo-cta-locked {
  background: var(--azul-50);
  border: 1px dashed var(--azul-100);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.circulo-cta-locked-ic {
  font-size: 22px;
}

.kpi-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.kpi-grid-2 .kpi-card { min-height: 76px; }

