:root {
  --ink: #0b1d22;
  --muted: #69757b;
  --line: #e6eaee;
  --green: #08a77b;
  --green2: #05bd82;
  --red: #f24a5c;
  --soft: #f7fbfa;
  --shadow: 0 18px 50px rgba(11, 29, 34, .12);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 40% 0%, rgba(8, 167, 123, .10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5faf9 100%);
}

.o7a-app {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  padding: max(28px, env(safe-area-inset-top)) 20px calc(96px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
}

.o7a-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
}

.o7a-head h1 {
  margin: 0;
  font-size: 44px;
  line-height: .95;
  letter-spacing: 0;
  color: #123a3a;
}

.o7a-head p {
  margin: 12px 0 0;
  font-size: 17px;
  color: var(--muted);
  font-weight: 650;
}

.o7a-brand {
  margin-top: 6px;
  color: #087f68;
  font-weight: 1000;
  font-size: 24px;
  text-decoration: none;
}

.o7a-search {
  margin-top: 28px;
  height: 62px;
  border: 1px solid #dce2e6;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 34px 1fr 46px;
  align-items: center;
  padding: 0 12px 0 18px;
  box-shadow: 0 10px 26px rgba(11,29,34,.06);
  background: #fff;
}

.o7a-search span {
  font-size: 30px;
  color: #7b858a;
}

.o7a-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 19px;
  color: var(--ink);
  background: transparent;
}

.o7a-search button {
  height: 42px;
  width: 42px;
  border: 0;
  border-left: 1px solid #edf0f2;
  background: transparent;
  color: #6b7479;
  font-size: 22px;
  font-weight: 900;
}

.o7a-tabs {
  margin-top: 22px;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e1e6ea;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11,29,34,.06);
}

.o7a-tabs button {
  height: 54px;
  border: 0;
  border-radius: 19px;
  background: transparent;
  color: #666f74;
  font-size: 18px;
  font-weight: 900;
}

.o7a-tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--green2), var(--green));
  box-shadow: 0 12px 28px rgba(8, 167, 123, .28);
}

.o7a-cats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.o7a-cats button {
  min-height: 94px;
  border: 1px solid #e2e8ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(11,29,34,.055);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.o7a-cats button span {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.o7a-cats button.is-active {
  border-color: rgba(8,167,123,.45);
  box-shadow: 0 12px 26px rgba(8,167,123,.16);
}

.o7a-near {
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8,167,123,.11), rgba(255,255,255,.96) 34%);
  box-shadow: 0 18px 46px rgba(8, 75, 64, .10);
}

.o7a-near header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.o7a-near h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

.o7a-near header a {
  color: #07896f;
  font-weight: 1000;
  text-decoration: none;
}

.o7a-list {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.o7a-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  min-height: 94px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #edf1f3;
}

.o7a-item:last-child { border-bottom: 0; }

.o7a-photo {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef7f5, #f8fbfa);
  color: #098a70;
  font-size: 30px;
  font-weight: 1000;
}

.o7a-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.o7a-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
}

.o7a-item small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.o7a-distance {
  display: block;
  margin-top: 6px;
  color: #099273;
  font-weight: 900;
  font-size: 14px;
}

.o7a-badge {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  color: #e33848;
  background: #ffe5e9;
}

.o7a-badge.is-found {
  color: #098354;
  background: #e5f8ef;
}

.o7a-empty {
  margin: 0;
  padding: 22px;
  color: var(--muted);
  font-weight: 800;
}

.o7a-map-card {
  margin-top: 22px;
}

.o7a-map-bg {
  position: relative;
  height: 186px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e3e8eb;
  background:
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, #dbeedc, #f2eadc 48%, #d6eee3);
  box-shadow: 0 14px 30px rgba(11,29,34,.08);
}

.o7a-map-bg::before {
  content: "Parque\A Central";
  white-space: pre;
  position: absolute;
  left: 62px;
  top: 50px;
  color: #14845f;
  font-size: 17px;
  font-weight: 800;
}

.o7a-map-bg::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 18px;
  left: 165px;
  top: 84px;
  border-radius: 999px;
  background: rgba(120, 103, 88, .35);
  transform: rotate(-24deg);
}

.o7a-pin {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 10px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 10px 22px rgba(11,29,34,.18);
  transform: rotate(-45deg);
  font-weight: 1000;
}

.o7a-pin > * { transform: rotate(45deg); }
.o7a-pin-found { left: 112px; top: 22px; background: #08a77b; }
.o7a-pin-lost { right: 72px; top: 28px; background: var(--red); }
.o7a-pin-user {
  left: 50%;
  top: 86px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2374ff;
  box-shadow: 0 0 0 28px rgba(35,116,255,.15), 0 0 0 4px #fff;
  transform: translateX(-50%);
}

.o7a-map-btn {
  position: absolute;
  left: 18px;
  bottom: 18px;
  height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 18px;
  background: #fff;
  color: #07896f;
  font-weight: 1000;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(11,29,34,.16);
}

.o7a-publish {
  margin-top: 18px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--green2), #008d76);
  font-size: 22px;
  font-weight: 1000;
  box-shadow: 0 14px 28px rgba(8,167,123,.27);
}

.o7a-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: min(100%, 430px);
  transform: translateX(-50%);
  padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255,255,255,.94);
  border-top: 1px solid #eef1f3;
  backdrop-filter: blur(16px);
  z-index: 20;
}

.o7a-nav a {
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 3px;
  color: #798185;
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
}

.o7a-nav span {
  font-size: 12px;
  font-weight: 800;
}

.o7a-nav .is-active,
.o7a-nav-plus {
  color: #079071;
}

.o7a-nav-plus {
  transform: translateY(-10px);
  font-size: 32px !important;
}

@media (min-width: 820px) {
  body {
    background:
      radial-gradient(circle at 50% 20%, rgba(8,167,123,.12), transparent 34%),
      #f5faf9;
  }

  .o7a-app {
    margin-top: 28px;
    margin-bottom: 28px;
    min-height: auto;
    border-radius: 34px;
    box-shadow: var(--shadow);
  }

  .o7a-nav {
    bottom: 28px;
    border-radius: 0 0 34px 34px;
  }
}

@media (max-width: 380px) {
  .o7a-app { padding-left: 14px; padding-right: 14px; }
  .o7a-head h1 { font-size: 38px; }
  .o7a-cats { gap: 9px; }
  .o7a-cats button { min-height: 82px; font-size: 13px; }
  .o7a-item { grid-template-columns: 62px 1fr; }
  .o7a-badge { grid-column: 2; justify-self: start; }
  .o7a-photo { width: 58px; height: 58px; }
}

/* LUUPIGO objects-app-pc-mode-toggle-o7b-20260726-01 */
.o7b-mode-toggle {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 200;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,29,34,.10);
  box-shadow: 0 12px 30px rgba(11,29,34,.15);
  backdrop-filter: blur(14px);
}

.o7b-mode-toggle button {
  height: 32px;
  min-width: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #0b1d22;
  font-weight: 1000;
  cursor: pointer;
}

body.o7b-mode-app .o7b-mode-toggle [data-o7b-mode="app"],
body.o7b-mode-pc .o7b-mode-toggle [data-o7b-mode="pc"] {
  color: #fff;
  background: linear-gradient(135deg, #08c384, #087f68);
  box-shadow: 0 8px 18px rgba(8,127,104,.25);
}

body.o7b-mode-pc {
  background:
    radial-gradient(circle at 50% 10%, rgba(8,167,123,.12), transparent 34%),
    linear-gradient(180deg, #effaf7 0%, #ffffff 100%);
}

body.o7b-mode-pc .o7a-app {
  width: min(1180px, calc(100vw - 64px));
  min-height: calc(100vh - 72px);
  margin: 36px auto;
  padding: 34px 38px 120px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(460px, 1fr);
  column-gap: 34px;
  align-content: start;
  box-shadow: 0 24px 70px rgba(11,29,34,.12);
}

body.o7b-mode-pc .o7a-head,
body.o7b-mode-pc .o7a-search,
body.o7b-mode-pc .o7a-tabs,
body.o7b-mode-pc .o7a-cats,
body.o7b-mode-pc .o7a-publish {
  grid-column: 1;
}

body.o7b-mode-pc .o7a-near,
body.o7b-mode-pc .o7a-map-card {
  grid-column: 2;
}

body.o7b-mode-pc .o7a-near {
  grid-row: 1 / span 5;
  margin-top: 0;
  min-height: 430px;
}

body.o7b-mode-pc .o7a-map-card {
  margin-top: 24px;
}

body.o7b-mode-pc .o7a-map-bg {
  height: 300px;
}

body.o7b-mode-pc .o7a-nav {
  position: fixed;
  left: 50%;
  bottom: 24px;
  width: min(560px, calc(100vw - 64px));
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(11,29,34,.13);
}

@media (max-width: 760px) {
  .o7b-mode-toggle {
    top: 10px;
    right: 10px;
  }

  body.o7b-mode-pc .o7a-app {
    width: min(100%, 430px);
    min-height: 100vh;
    margin: 0 auto;
    padding: max(28px, env(safe-area-inset-top)) 20px calc(96px + env(safe-area-inset-bottom));
    border-radius: 0;
    display: block;
    box-shadow: none;
  }

  body.o7b-mode-pc .o7a-nav {
    bottom: 0;
    width: min(100%, 430px);
    border-radius: 0;
  }
}


/* LUUPIGO objects-home-native-fit-o7c-20260726-01 */
:root {
  --o7c-ink: #0b2730;
  --o7c-muted: #60727b;
  --o7c-green: #06b987;
  --o7c-green-dark: #008e72;
  --o7c-line: rgba(12, 45, 56, .10);
  --o7c-soft: #f6fbf9;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body.o7b-mode-app {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 174, 140, .10), transparent 32%),
    linear-gradient(180deg, #eaf8f5 0%, #f8fcfb 100%) !important;
}

body.o7b-mode-app .o7a-app {
  width: min(100vw - 22px, 392px) !important;
  height: min(100dvh - 20px, 875px) !important;
  min-height: 690px;
  margin: 10px auto !important;
  padding: 22px 14px 12px !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  display: grid !important;
  grid-template-rows: auto auto auto auto minmax(190px, 1fr) minmax(96px, 128px) auto auto;
  gap: 10px !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow:
    0 28px 70px rgba(6, 50, 57, .14),
    0 0 0 1px rgba(0,0,0,.04) !important;
}

body.o7b-mode-app .o7a-head {
  align-items: start !important;
}

body.o7b-mode-app .o7a-title h1 {
  font-size: 30px !important;
  line-height: .95 !important;
  margin: 0 0 5px !important;
  color: var(--o7c-ink) !important;
}

body.o7b-mode-app .o7a-title p {
  font-size: 12px !important;
  line-height: 1.25 !important;
  color: var(--o7c-muted) !important;
  max-width: 180px;
}

body.o7b-mode-app .o7a-brand {
  font-size: 15px !important;
  color: #008a6b !important;
  padding-top: 4px;
}

body.o7b-mode-app .o7a-search {
  height: 42px !important;
  border-radius: 18px !important;
  padding: 0 10px !important;
  box-shadow: 0 10px 24px rgba(12, 45, 56, .06) !important;
}

body.o7b-mode-app .o7a-search input {
  font-size: 12px !important;
  min-width: 0 !important;
}

body.o7b-mode-app .o7a-tabs {
  height: 42px !important;
  padding: 3px !important;
  border-radius: 17px !important;
}

body.o7b-mode-app .o7a-tab {
  height: 36px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
  gap: 6px !important;
}

body.o7b-mode-app .o7a-tab.is-active {
  background: linear-gradient(135deg, var(--o7c-green), var(--o7c-green-dark)) !important;
  box-shadow: 0 12px 22px rgba(0, 170, 126, .24) !important;
}

body.o7b-mode-app .o7a-cats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

body.o7b-mode-app .o7a-cat {
  min-width: 0 !important;
  height: 62px !important;
  border-radius: 13px !important;
  padding: 6px 4px !important;
  box-shadow: 0 8px 18px rgba(12, 45, 56, .055) !important;
}

body.o7b-mode-app .o7a-cat span:first-child {
  font-size: 18px !important;
  line-height: 1 !important;
}

body.o7b-mode-app .o7a-cat b {
  font-size: 11px !important;
  line-height: 1.05 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

body.o7b-mode-app .o7a-near {
  min-height: 0 !important;
  padding: 12px !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #effbf7 0%, #ffffff 40%) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 166, 126, .08) !important;
  overflow: hidden !important;
}

body.o7b-mode-app .o7a-section-head {
  margin-bottom: 8px !important;
}

body.o7b-mode-app .o7a-section-head h2 {
  font-size: 16px !important;
}

body.o7b-mode-app .o7a-section-head a {
  font-size: 11px !important;
  color: #008a6b !important;
}

body.o7b-mode-app .o7a-list {
  display: grid !important;
  gap: 0 !important;
  border-radius: 16px !important;
  background: #fff !important;
  overflow: hidden !important;
}

body.o7b-mode-app .o7a-item {
  min-height: 66px !important;
  padding: 8px 4px !important;
  grid-template-columns: 48px minmax(0, 1fr) auto !important;
  gap: 9px !important;
  border-bottom: 1px solid var(--o7c-line) !important;
}

body.o7b-mode-app .o7a-item:nth-child(n+4) {
  display: none !important;
}

body.o7b-mode-app .o7a-thumb {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
}

body.o7b-mode-app .o7a-item-title {
  font-size: 12px !important;
  line-height: 1.08 !important;
  max-height: 28px !important;
  overflow: hidden !important;
}

body.o7b-mode-app .o7a-item-meta,
body.o7b-mode-app .o7a-distance {
  font-size: 10px !important;
  line-height: 1.15 !important;
}

body.o7b-mode-app .o7a-badge {
  font-size: 10px !important;
  padding: 7px 9px !important;
  border-radius: 999px !important;
}

body.o7b-mode-app .o7a-map-card {
  min-height: 96px !important;
  height: 100% !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 26px rgba(12, 45, 56, .08) !important;
}

body.o7b-mode-app .o7a-map-bg {
  height: 100% !important;
}

body.o7b-mode-app .o7a-map-button {
  left: 14px !important;
  bottom: 14px !important;
  height: 38px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
}

body.o7b-mode-app .o7a-publish {
  height: 48px !important;
  border-radius: 17px !important;
  font-size: 16px !important;
  background: linear-gradient(135deg, var(--o7c-green), var(--o7c-green-dark)) !important;
  box-shadow: 0 15px 28px rgba(0, 158, 119, .22) !important;
}

body.o7b-mode-app .o7a-nav {
  position: static !important;
  width: 100% !important;
  height: 54px !important;
  margin: 0 !important;
  border-radius: 18px 18px 0 0 !important;
  box-shadow: 0 -10px 28px rgba(12, 45, 56, .08) !important;
}

body.o7b-mode-app .o7a-nav a {
  font-size: 9px !important;
}

body.o7b-mode-app .o7a-nav span {
  font-size: 16px !important;
}

@media (max-height: 780px) {
  body.o7b-mode-app .o7a-app {
    height: calc(100dvh - 10px) !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    padding-top: 16px !important;
    grid-template-rows: auto auto auto auto minmax(156px, 1fr) 92px auto auto;
    gap: 8px !important;
  }

  body.o7b-mode-app .o7a-title h1 {
    font-size: 27px !important;
  }

  body.o7b-mode-app .o7a-cats {
    gap: 6px !important;
  }

  body.o7b-mode-app .o7a-cat {
    height: 55px !important;
  }

  body.o7b-mode-app .o7a-item {
    min-height: 58px !important;
    padding: 6px 3px !important;
  }

  body.o7b-mode-app .o7a-item:nth-child(n+3) {
    display: none !important;
  }

  body.o7b-mode-app .o7a-publish {
    height: 44px !important;
  }

  body.o7b-mode-app .o7a-nav {
    height: 48px !important;
  }
}

@media (max-width: 430px) {
  body.o7b-mode-app .o7a-app {
    width: 100vw !important;
    height: 100dvh !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  body.o7b-mode-app .o7b-mode-toggle {
    top: 8px !important;
    right: 8px !important;
  }
}
