:root {
  --vive-ink: #f8f4ea;
  --vive-muted: rgba(248, 244, 234, 0.78);
  --vive-night: #07151b;
  --vive-night-2: #102932;
  --vive-panel: rgba(10, 18, 18, 0.82);
  --vive-panel-soft: rgba(20, 30, 25, 0.76);
  --vive-line: rgba(226, 168, 57, 0.28);
  --vive-gold: #e0a12b;
  --vive-gold-2: #f3c15e;
  --vive-gold-dark: #9b6408;
  --vive-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

.vive-page-banner {
  position: relative;
  width: 100vw;
  min-height: min(760px, 92vh);
  display: flex;
  align-items: center;
  margin-top: -72px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 140px 24px 58px;
  color: var(--vive-ink);
  background:
    radial-gradient(circle at 55% 36%, rgba(224, 161, 43, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(7, 21, 27, 0.86), rgba(7, 21, 27, 0.46) 48%, rgba(8, 12, 10, 0.82)),
    linear-gradient(180deg, rgba(7, 21, 27, 0.38), rgba(8, 12, 10, 0.94)),
    var(--vive-banner-image) center / cover no-repeat;
}
.vive-public-nav {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 50%;
  width: min(1200px, calc(100% - 32px));
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  transform: translateX(-50%);
  color: var(--vive-ink);
}
.vive-public-nav.is-compact {
  align-items: start;
}
.vive-public-brand {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--vive-ink);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}
.vive-public-brand:hover,
.vive-public-brand:focus {
  color: var(--vive-ink);
}
.vive-public-brand-mark {
  display: none;
}
.vive-public-brand-text {
  display: inline-grid;
  gap: 2px;
}
.vive-public-brand-text strong {
  color: inherit;
}
.vive-public-brand-text small {
  color: var(--vive-gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.vive-public-menu-icon {
  display: none;
}
.vive-public-sidebar-footer {
  display: none;
}
.vive-public-top-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.vive-top-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 168, 57, 0.3);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--vive-ink);
  background: rgba(7, 21, 27, 0.58);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.vive-top-action-primary {
  background: linear-gradient(180deg, rgba(224, 161, 43, 0.95), rgba(155, 100, 8, 0.95));
}
.vive-public-menu-toggle,
.vive-theme-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  border: 1px solid var(--vive-line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--vive-ink);
  background: rgba(7, 21, 27, 0.66);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  backdrop-filter: blur(5px);
}
.vive-public-menu-toggle span,
.vive-theme-menu-toggle span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.vive-public-nav.is-open .vive-public-menu-toggle span:nth-child(1),
body.vive-theme-menu-open .vive-theme-menu-toggle span:nth-child(1) {
  transform: translateX(4px);
}
.vive-public-nav.is-open .vive-public-menu-toggle span:nth-child(3),
body.vive-theme-menu-open .vive-theme-menu-toggle span:nth-child(3) {
  transform: translateX(-4px);
}
.vive-public-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  min-width: 0;
}
.vive-public-nav.is-compact .vive-public-menu-toggle {
  display: inline-flex;
}
.vive-public-nav.is-compact .vive-public-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(360px, calc(100vw - 24px));
  max-height: min(70vh, 460px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--vive-line);
  border-radius: 12px;
  background: rgba(7, 21, 27, 0.94);
  box-shadow: var(--vive-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.16s ease, transform 0.16s ease;
  backdrop-filter: blur(8px);
}
.vive-public-nav.is-compact.is-open .vive-public-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.vive-public-nav.is-compact .vive-public-menu-link {
  width: 100%;
  justify-content: flex-start;
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(224, 161, 43, 0.1);
}
.vive-public-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  max-width: 100%;
  border: 1px solid rgba(226, 168, 57, 0.26);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--vive-ink);
  background: rgba(7, 21, 27, 0.42);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  backdrop-filter: blur(4px);
}
.vive-public-menu-link:hover,
.vive-public-menu-link:focus,
.vive-public-menu-link.is-active {
  color: #1a1306;
  border-color: rgba(243, 193, 94, 0.86);
  background: linear-gradient(180deg, var(--vive-gold-2), var(--vive-gold));
}
.vive-public-menu-link.is-admin {
  border-color: rgba(243, 193, 94, 0.62);
  background: rgba(155, 100, 8, 0.76);
}
.vive-public-menu-link.is-admin:hover,
.vive-public-menu-link.is-admin:focus,
.vive-public-menu-link.is-admin.is-active {
  color: #fff;
  background: rgba(155, 100, 8, 0.96);
}
.vive-public-menu-link.is-locked {
  opacity: 0.82;
}
.vive-public-menu-link.is-locked:hover,
.vive-public-menu-link.is-locked:focus {
  opacity: 1;
}
body.vive-bucalemu-page .entry-header,
body.vive-bucalemu-page .ast-header-button-1 {
  display: none !important;
}
body.vive-bucalemu-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(224, 161, 43, 0.12), transparent 28%),
    linear-gradient(180deg, var(--vive-night), #0b1110 58%, #070b09);
}
body.vive-bucalemu-page .site-content,
body.vive-bucalemu-page .entry-content,
body.vive-bucalemu-page .ast-container {
  background: transparent;
}
body.vive-bucalemu-page #content,
body.vive-bucalemu-page #primary,
body.vive-bucalemu-page .content-area,
body.vive-bucalemu-page .site-content,
body.vive-bucalemu-page .ast-container {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
body.vive-bucalemu-page .site-branding {
  visibility: hidden;
}
body.vive-bucalemu-page .vive-admin-menu-link {
  display: none !important;
}
body.vive-bucalemu-page .site-header,
body.vive-bucalemu-page .ast-primary-header-bar,
body.vive-bucalemu-page .main-header-bar {
  overflow: visible;
}
@media (min-width: 901px) {
  .vive-public-nav,
  .vive-public-nav.is-compact {
    position: fixed;
    z-index: 50;
    top: 10px;
    bottom: 10px;
    left: 10px;
    width: 330px;
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    padding: 34px 28px 28px;
    border: 1px solid rgba(226, 168, 57, 0.28);
    border-radius: 14px;
    color: var(--vive-ink);
    background:
      linear-gradient(160deg, rgba(9, 22, 27, 0.94), rgba(15, 16, 10, 0.86)),
      rgba(7, 21, 27, 0.92);
    box-shadow: var(--vive-shadow);
    transform: none;
    backdrop-filter: blur(18px);
  }
  .vive-public-brand {
    display: grid;
    justify-items: center;
    gap: 10px;
    width: 100%;
    min-height: 0;
    text-align: center;
  }
  .vive-public-brand-mark {
    width: 116px;
    height: 92px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(243, 193, 94, 0.78);
    border-radius: 50% 50% 44% 44%;
    color: var(--vive-gold-2);
    background: rgba(224, 161, 43, 0.1);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
    font-size: 48px;
    font-weight: 900;
  }
  .vive-public-brand-text {
    display: grid;
    gap: 5px;
  }
  .vive-public-brand-text strong {
    color: var(--vive-ink);
    font-size: 34px;
    line-height: 1;
  }
  .vive-public-brand-text small {
    color: var(--vive-gold-2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  .vive-public-menu-toggle,
  .vive-public-nav.is-compact .vive-public-menu-toggle {
    display: none;
  }
  .vive-public-menu,
  .vive-public-nav.is-compact .vive-public-menu {
    position: static;
    width: 100%;
    max-height: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }
  .vive-public-menu-link,
  .vive-public-nav.is-compact .vive-public-menu-link {
    width: 100%;
    min-height: 58px;
    justify-content: flex-start;
    gap: 16px;
    border: 0;
    border-bottom: 1px solid rgba(248, 244, 234, 0.1);
    border-radius: 0;
    padding: 0 8px;
    color: var(--vive-ink);
    background: transparent;
    font-size: 17px;
    font-weight: 750;
    text-align: left;
  }
  .vive-public-menu-link:first-child {
    border-radius: 12px 12px 0 0;
  }
  .vive-public-menu-link:hover,
  .vive-public-menu-link:focus,
  .vive-public-menu-link.is-active {
    color: var(--vive-ink);
    border-bottom-color: rgba(226, 168, 57, 0.18);
    background: linear-gradient(90deg, rgba(224, 161, 43, 0.24), rgba(224, 161, 43, 0.08));
  }
  .vive-public-menu-link.is-active {
    border: 1px solid rgba(226, 168, 57, 0.48);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  .vive-public-menu-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--vive-gold-2);
    background: rgba(255, 255, 255, 0.06);
    font-size: 15px;
    font-weight: 900;
    flex: 0 0 auto;
  }
  .vive-public-sidebar-footer {
    display: grid;
    justify-items: center;
    gap: 16px;
    width: 100%;
    color: var(--vive-gold-2);
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
  }
  .vive-public-sidebar-footer::before {
    content: "";
    width: 82px;
    height: 34px;
    display: block;
    border-bottom: 2px solid rgba(243, 193, 94, 0.7);
    border-left: 2px solid rgba(243, 193, 94, 0.45);
    transform: skewX(-28deg);
  }
  .vive-public-sidebar-footer a {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(243, 193, 94, 0.58);
    border-radius: 12px;
    color: var(--vive-ink);
    background: rgba(224, 161, 43, 0.1);
    font-weight: 850;
    text-decoration: none;
  }
  .vive-public-top-actions {
    position: fixed;
    top: 46px;
    right: 56px;
    z-index: 55;
    display: flex;
    gap: 16px;
  }
  .vive-top-action {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 168, 57, 0.32);
    border-radius: 999px;
    padding: 0 26px;
    color: var(--vive-ink);
    background: rgba(7, 21, 27, 0.58);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    font-weight: 850;
    text-decoration: none;
    backdrop-filter: blur(14px);
  }
  .vive-top-action:hover,
  .vive-top-action:focus {
    color: var(--vive-ink);
    background: rgba(224, 161, 43, 0.16);
  }
  .vive-top-action-primary {
    color: #fff8e7;
    border-color: rgba(255, 211, 122, 0.54);
    background: linear-gradient(180deg, rgba(224, 161, 43, 0.95), rgba(155, 100, 8, 0.95));
  }
  .vive-top-action-primary:hover,
  .vive-top-action-primary:focus {
    color: #fff8e7;
    background: linear-gradient(180deg, rgba(255, 211, 122, 0.95), rgba(181, 119, 12, 0.95));
  }
  .vive-page-banner {
    padding-left: 374px;
  }
  .vive-page-banner-inner {
    width: min(1080px, calc(100vw - 430px));
  }
  .vive-app,
  .vive-agenda,
  .vive-blog-page,
  .vive-catalog-page,
  .vive-raffles,
  .vive-marker-detail-page,
  .vive-register,
  .vive-about-story,
  .vive-about-tiles,
  .vive-about-colonial,
  .vive-about-closing {
    margin-left: max(360px, calc((100vw - 1200px) / 2 + 330px));
    margin-right: 28px;
    width: auto;
  }
  .vive-about-hero {
    padding-left: 374px;
  }
  .vive-about-hero-inner {
    width: min(920px, calc(100vw - 430px));
  }
}
@media (max-width: 900px) {
  .vive-public-nav {
    position: absolute;
    top: 10px;
    left: 50%;
    width: min(1000px, calc(100% - 20px));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    transform: translateX(-50%);
  }
  .vive-public-brand-text strong {
    font-size: 20px;
  }
  .vive-public-top-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .vive-public-menu {
    grid-column: 1 / -1;
  }
  .vive-public-nav.is-compact .vive-public-menu {
    right: 0;
  }
  .vive-page-banner {
    min-height: 760px;
    padding-top: 170px;
  }
  .vive-banner-user {
    top: 100px;
    right: 14px;
  }
  .vive-about-hero {
    padding-top: 170px;
  }
}
body.vive-menu-js .vive-theme-menu-toggle {
  display: inline-flex;
}
body.vive-menu-js .main-header-menu,
body.vive-menu-js .ast-builder-menu .main-navigation > ul {
  display: none !important;
}
body.vive-menu-js.vive-theme-menu-open .main-header-menu,
body.vive-menu-js.vive-theme-menu-open .ast-builder-menu .main-navigation > ul {
  position: absolute;
  z-index: 9999;
  top: calc(100% + 10px);
  right: 16px;
  width: min(360px, calc(100vw - 24px));
  max-height: min(70vh, 460px);
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 6px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--vive-line);
  border-radius: 12px;
  background: rgba(7, 21, 27, 0.96);
  box-shadow: var(--vive-shadow);
  backdrop-filter: blur(8px);
}
body.vive-menu-js.vive-theme-menu-open .main-header-menu li,
body.vive-menu-js.vive-theme-menu-open .ast-builder-menu .main-navigation > ul li {
  width: 100%;
}
body.vive-menu-js.vive-theme-menu-open .main-header-menu a,
body.vive-menu-js.vive-theme-menu-open .ast-builder-menu .main-navigation > ul a {
  min-height: 42px;
  justify-content: flex-start;
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff !important;
  background: rgba(224, 161, 43, 0.1);
}
.vive-page-banner-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}
.vive-banner-admin-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(243, 193, 94, 0.48);
  border-radius: 999px;
  color: var(--vive-ink);
  background: rgba(155, 100, 8, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.vive-banner-admin-link:hover,
.vive-banner-admin-link:focus {
  color: #fff;
  background: rgba(155, 100, 8, 0.92);
}
.vive-banner-user {
  position: absolute;
  z-index: 6;
  top: 92px;
  right: max(24px, calc((100vw - 1180px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(290px, calc(100vw - 48px));
  min-height: 38px;
  padding: 5px 12px 5px 5px;
  border: 1px solid rgba(243, 193, 94, 0.34);
  border-radius: 999px;
  color: rgba(248, 244, 234, 0.9);
  background: rgba(7, 21, 27, 0.58);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.05;
}
.vive-banner-user img,
.vive-banner-user-initial {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
}
.vive-banner-user img {
  object-fit: cover;
  border: 1px solid rgba(248, 244, 234, 0.48);
}
.vive-banner-user-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1306;
  background: linear-gradient(180deg, var(--vive-gold-2), var(--vive-gold));
}
.vive-banner-user-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vive-banner-user-text strong,
.vive-banner-user-text small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vive-banner-user-text small {
  color: rgba(248, 244, 234, 0.68);
  font-size: 10px;
  font-weight: 700;
}
.vive-page-banner h1 {
  max-width: 980px;
  margin: 0;
  color: var(--vive-ink);
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.52);
}
.vive-page-banner p {
  max-width: 760px;
  margin: 0;
  color: var(--vive-muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}
.vive-hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(226, 168, 57, 0.34);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--vive-ink) !important;
  background: rgba(7, 21, 27, 0.54);
  font-size: 16px !important;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.vive-hero-kicker::before {
  content: "*";
  color: var(--vive-gold);
  font-size: 24px;
  line-height: 1;
}
.vive-hero-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 8px;
}
.vive-hero-cta {
  min-width: min(320px, calc(100vw - 48px));
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid rgba(255, 211, 122, 0.72);
  border-radius: 22px;
  padding: 0 34px;
  color: #fff9e9;
  background:
    linear-gradient(180deg, rgba(243, 193, 94, 0.94), rgba(155, 100, 8, 0.94)),
    var(--vive-gold);
  box-shadow:
    0 18px 44px rgba(155, 100, 8, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}
.vive-hero-cta:hover,
.vive-hero-cta:focus {
  color: #fff9e9;
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 211, 122, 0.98), rgba(181, 119, 12, 0.96)),
    var(--vive-gold);
}
.vive-hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(248, 244, 234, 0.84);
  font-size: 15px;
}
.vive-hero-note::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid var(--vive-gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(224, 161, 43, 0.18);
}
.vive-banner-stats {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  margin-top: 58px;
  padding-top: 26px;
  border: 0;
  border-top: 1px solid rgba(248, 244, 234, 0.14);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}
.vive-banner-stat {
  min-height: 70px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  padding: 0 28px;
  text-align: left;
}
.vive-banner-stat + .vive-banner-stat {
  border-left: 1px solid rgba(248, 244, 234, 0.16);
}
.vive-stat-icon {
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--vive-gold-2) !important;
  background: rgba(224, 161, 43, 0.12);
  font-size: 18px !important;
  font-weight: 900;
}
.vive-banner-stats strong {
  color: var(--vive-ink);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1;
}
.vive-banner-stats span {
  color: var(--vive-muted);
  font-size: 15px;
  line-height: 1.25;
}
@media (max-width: 640px) {
  .vive-banner-user {
    top: 76px;
    right: 12px;
    max-width: calc(100vw - 24px);
    min-height: 30px;
    padding-right: 9px;
    font-size: 11px;
  }
  .vive-banner-user img,
  .vive-banner-user-initial {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .vive-banner-user-text small {
    font-size: 9px;
  }
  .vive-public-nav {
    top: 10px;
    width: min(1000px, calc(100% - 20px));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: start;
  }
  .vive-public-brand {
    min-height: 30px;
    font-size: 20px;
  }
  .vive-public-menu {
    grid-column: 1 / -1;
  }
  .vive-public-menu-link {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .vive-page-banner {
    min-height: 720px;
    padding: 130px 16px 38px;
  }
  .vive-banner-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    margin-top: 28px;
    padding-top: 20px;
  }
  .vive-banner-stat {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 10px;
    padding: 0 10px;
  }
  .vive-banner-stat:nth-child(odd) {
    border-left: 0;
  }
  .vive-stat-icon {
    width: 38px;
    height: 38px;
  }
  .vive-hero-cta {
    min-height: 62px;
    border-radius: 18px;
    font-size: 19px;
  }
}
.vive-app {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(1680px, calc(100% - 28px));
  min-height: 72vh;
  margin: 32px auto 44px;
  color: #efe8d6;
}
.vive-panel {
  background: var(--vive-panel);
  border: 1px solid var(--vive-line);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}
.vive-panel h2 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--vive-ink);
}
.vive-left {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 10px 12px;
  align-items: start;
}
.vive-left h2,
.vive-left .vive-results {
  grid-column: 1 / -1;
}
.vive-left h2 {
  margin-bottom: 0;
}
.vive-left .vive-filters {
  margin: 0;
}
.vive-search-field {
  position: relative;
  grid-column: 1 / 2;
}
.vive-search-field input {
  padding-right: 140px;
}
.vive-search-indicator {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 0 10px 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(226, 168, 57, 0.3);
  background: rgba(7, 21, 27, 0.92);
  color: var(--vive-ink);
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.vive-search-indicator.is-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.vive-search-spinner {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(243, 193, 94, 0.28);
  border-top-color: var(--vive-gold-2);
  animation: vive-spin 0.8s linear infinite;
  flex: 0 0 auto;
}
.vive-search-indicator-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
@keyframes vive-spin {
  to {
    transform: rotate(360deg);
  }
}
.vive-panel input,
.vive-panel select,
.vive-panel textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(226, 168, 57, 0.24);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--vive-ink);
  background: rgba(255, 255, 255, 0.08);
  font-size: 16px;
}
.vive-panel input::placeholder,
.vive-panel textarea::placeholder {
  color: rgba(248, 244, 234, 0.54);
}
.vive-panel input:focus,
.vive-panel select:focus,
.vive-panel textarea:focus {
  border-color: rgba(243, 193, 94, 0.72);
  outline: 2px solid rgba(224, 161, 43, 0.18);
}
.vive-filters {
  margin: 10px 0;
}
.vive-results {
  display: grid;
  gap: 8px;
  max-height: 340px;
  overflow: auto;
}
.vive-result {
  border: 1px solid rgba(226, 168, 57, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  padding: 10px;
  cursor: pointer;
}
.vive-result:hover,
.vive-result.is-active {
  border-color: rgba(243, 193, 94, 0.72);
  background: rgba(224, 161, 43, 0.16);
}
.vive-map-wrap {
  background: #111c1f;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  padding: 12px;
  min-height: clamp(620px, 74vh, 980px);
  border: 1px solid rgba(226, 168, 57, 0.2);
  box-shadow: var(--vive-shadow);
}
#vive-map {
  width: 100%;
  min-height: clamp(620px, 74vh, 980px);
  border-radius: 6px;
}
.vive-map-nav-toggle {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(226, 168, 57, 0.36);
  border-radius: 999px;
  padding: 0 14px 0 12px;
  color: var(--vive-ink);
  background: rgba(7, 21, 27, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.vive-map-nav-toggle:hover,
.vive-map-nav-toggle:focus {
  border-color: rgba(243, 193, 94, 0.84);
  background: rgba(12, 28, 34, 0.96);
}
.vive-map-nav-toggle.is-active {
  border-color: rgba(243, 193, 94, 0.9);
  background: linear-gradient(180deg, rgba(224, 161, 43, 0.96), rgba(155, 100, 8, 0.96));
  color: #1b1205;
}
.vive-map-nav-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.vive-map-nav-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vive-map-nav-text {
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.vive-detail-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.vive-badge {
  display: inline-block;
  border-radius: 999px;
  background: rgba(224, 161, 43, 0.18);
  color: var(--vive-gold-2);
  padding: 4px 9px;
  font-size: 12px;
}
.vive-badge-solucionado {
  background: rgba(80, 130, 91, 0.84);
}
.vive-badge-en-revision {
  background: var(--vive-gold-dark);
}
.vive-badge-cancelado {
  background: #5f6368;
}
.vive-meta {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}
.vive-meta div {
  border-bottom: 1px solid rgba(226, 168, 57, 0.16);
  padding-bottom: 6px;
}
.vive-locked-detail {
  border: 1px solid rgba(226, 168, 57, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  padding: 12px;
  margin: 14px 0;
}
.vive-locked-detail h3 {
  margin-top: 0;
}
.vive-edit {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.vive-edit label {
  display: grid;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--vive-ink);
}
.vive-edit textarea {
  min-height: 78px;
  resize: vertical;
}
.vive-button {
  min-height: 42px;
  border: 1px solid rgba(243, 193, 94, 0.46);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--vive-gold-2), var(--vive-gold-dark));
  color: #1a1306;
  cursor: pointer;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(155, 100, 8, 0.24);
}
.vive-button:hover,
.vive-button:focus {
  color: #1a1306;
  background: linear-gradient(180deg, #ffd37a, var(--vive-gold));
}
.vive-button:disabled,
.vive-button.is-disabled {
  opacity: 0.58;
  cursor: not-allowed;
  box-shadow: none;
  filter: saturate(0.75);
}
.vive-button-secondary {
  color: var(--vive-ink);
  background: rgba(7, 21, 27, 0.58);
}
.vive-button-secondary:hover,
.vive-button-secondary:focus {
  color: var(--vive-ink);
  background: rgba(224, 161, 43, 0.18);
}
.vive-button-link {
  color: var(--vive-ink);
  background: rgba(7, 21, 27, 0.58);
}
.vive-action-row,
.vive-session-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.vive-session-actions span {
  color: var(--vive-muted);
}
.vive-save-status {
  color: var(--vive-gold-2);
  font-weight: 700;
}
.vive-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 8px;
  margin: 8px 0 12px;
}
.vive-photo-grid a {
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 168, 57, 0.2);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.vive-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vive-raffles {
  display: grid;
  gap: 24px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.vive-raffle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-width: 0;
}
.vive-raffle-main,
.vive-raffle-admin,
.vive-raffle-card,
.vive-raffle-board {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  background: rgba(7, 21, 27, 0.86);
  border: 1px solid rgba(224, 161, 43, 0.32);
  border-radius: 8px;
  padding: 18px;
}
.vive-raffles h1,
.vive-raffles h2,
.vive-raffles h3,
.vive-raffle-admin h2,
.vive-raffle-admin h3,
.vive-raffle-board h2,
.vive-raffle-card h2,
.vive-raffle-card h3 {
  color: var(--vive-ink);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}
.vive-raffle-admin h3,
.vive-raffle-board h2,
.vive-raffle-card h3 {
  color: var(--vive-gold-2);
}
.vive-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.vive-section-head h1 {
  margin: 0;
  color: var(--vive-ink);
}
.vive-section-head p {
  margin: 0;
  color: var(--vive-muted);
}
.vive-form-grid {
  display: grid;
  gap: 12px;
}
.vive-form-grid label {
  display: grid;
  gap: 6px;
  color: var(--vive-ink);
  font-weight: 800;
}
.vive-form-grid input,
.vive-form-grid select,
.vive-form-grid textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(224, 161, 43, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--vive-ink);
  padding: 10px 12px;
  box-sizing: border-box;
}
.vive-form-grid select option,
.vive-raffles select option,
.vive-raffles datalist option {
  color: #172326;
  background: #fffaf0;
}
.vive-form-grid select option:checked,
.vive-raffles select option:checked {
  color: #ffffff;
  background: #a96b08;
}
.vive-form-grid textarea {
  min-height: 92px;
}
.vive-raffle-number-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
  gap: 8px;
  margin: 12px 0 18px;
}
.vive-raffle-number {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(224, 161, 43, 0.34);
  color: var(--vive-ink);
  font-weight: 900;
}
.vive-raffle-number.is-disponible {
  background: rgba(49, 92, 55, 0.45);
}
.vive-raffle-number.is-pendiente {
  background: rgba(224, 161, 43, 0.35);
}
.vive-raffle-number.is-aprobado {
  background: rgba(136, 27, 27, 0.72);
  opacity: 0.72;
}
.vive-raffle-prize-grid,
.vive-raffle-prize-fields,
.vive-raffle-admin .vive-form-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.vive-raffle-admin .vive-form-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.vive-raffle-prize-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 12px 0 18px;
}
.vive-raffle-prize {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(224, 161, 43, 0.24);
  background: rgba(255, 255, 255, 0.06);
}
.vive-raffle-prize img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.vive-raffle-prize p {
  margin: 0;
  color: var(--vive-muted);
}
.vive-bank-box {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(224, 161, 43, 0.3);
  color: var(--vive-ink);
  background: rgba(224, 161, 43, 0.08);
  line-height: 1.55;
}
.vive-raffle-prize-fields {
  width: 100%;
  min-width: 0;
  grid-column: 1 / -1;
  border: 1px solid rgba(224, 161, 43, 0.28);
  border-radius: 8px;
  padding: 14px;
  box-sizing: border-box;
}
.vive-raffle-prize-fields legend {
  padding: 0 8px;
  color: var(--vive-gold-2);
  font-weight: 900;
}
.vive-raffle-prize-input {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 12px;
  align-items: end;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(224, 161, 43, 0.16);
}
.vive-raffle-prize-input label {
  min-width: 0;
}
.vive-raffle-prize-input label:last-child {
  grid-column: 1 / -1;
}
.vive-raffle-prize-input input[type="file"] {
  max-width: 100%;
  overflow: hidden;
}
.vive-raffle-prize-input:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.vive-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.vive-data-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  color: var(--vive-ink);
}
.vive-data-table th,
.vive-data-table td {
  max-width: 280px;
  padding: 10px;
  border-bottom: 1px solid rgba(224, 161, 43, 0.18);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: normal;
}
.vive-raffle-admin-list {
  display: grid;
  gap: 14px;
}
.vive-community-support-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(224, 161, 43, 0.22);
  border: 1px solid rgba(224, 161, 43, 0.7);
  color: var(--vive-gold-2);
  font-weight: 900;
  font-size: 13px;
}
.vive-photo-upload {
  display: grid;
  gap: 10px;
  margin: 10px 0 18px;
}
.vive-photo-upload label {
  display: grid;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--vive-ink);
}
.vive-community-icon-wrap {
  background: transparent;
  border: 0;
}
.vive-community-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vive-icon-color, #475569);
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
  font-family: inherit;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.vive-popup {
  display: grid;
  gap: 7px;
  color: #263126;
}
.vive-popup h3,
.vive-popup p {
  margin: 0;
}
.vive-popup dl {
  display: grid;
  gap: 5px;
  margin: 0;
}
.vive-popup dl div {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  border-top: 1px solid #e3dac9;
  padding-top: 5px;
}
.vive-popup dt {
  font-weight: 800;
}
.vive-popup dd {
  margin: 0;
}
.vive-popup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(243, 193, 94, 0.46);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--vive-gold-2), var(--vive-gold-dark));
  color: #1a1306;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}
.vive-popup-link:hover,
.vive-popup-link:focus {
  color: #1a1306;
  background: linear-gradient(180deg, #ffd37a, var(--vive-gold));
}
body.vive-bucalemu-page .vive-marker-history {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 14px;
  align-items: start;
}
.vive-marker-card {
  border: 1px solid rgba(226, 168, 57, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  padding: 10px;
  height: 100%;
}
.vive-marker-card p {
  margin: 8px 0;
}
.vive-marker-photo {
  margin: 10px 0;
}
.vive-marker-photo img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(226, 168, 57, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.vive-marker-photo figcaption {
  margin-top: 5px;
  color: var(--vive-muted);
  font-size: 13px;
}
body.vive-bucalemu-page .vive-sale-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 8px 0;
  padding: 8px 10px;
  border: 1px solid rgba(226, 168, 57, 0.28);
  border-radius: 6px;
  background: rgba(224, 161, 43, 0.12);
  align-items: start;
}
body.vive-bucalemu-page .vive-sale-contact div {
  display: grid;
  gap: 2px;
  min-width: 0;
}
body.vive-bucalemu-page .vive-sale-contact strong {
  color: var(--vive-gold-2);
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.15;
}
body.vive-bucalemu-page .vive-sale-contact div > :last-child {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.vive-sale-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}
.vive-sale-fields[hidden] {
  display: none;
}
.vive-marker-card-head {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}
.vive-marker-card-head small {
  display: block;
  color: #eef5e4;
}
.vive-marker-form,
.vive-marker-status {
  display: grid;
  gap: 10px;
  margin: 10px 0 18px;
}
.vive-panel-note {
  margin: 0 0 14px;
  color: rgba(248, 244, 234, 0.8);
  font-size: 14px;
  line-height: 1.45;
}
.vive-edit-section-head {
  display: grid;
  gap: 4px;
  margin-bottom: 4px;
}
.vive-edit-section-head h4 {
  margin: 0;
  color: var(--vive-gold-2);
  font-size: 18px;
  line-height: 1.15;
}
.vive-edit-section-head p {
  margin: 0;
  color: rgba(248, 244, 234, 0.8);
  font-size: 14px;
  line-height: 1.45;
}
.vive-right h3,
.vive-right h4,
.vive-right .vive-marker-history h3,
.vive-right .vive-marker-form h3,
.vive-right .vive-marker-status h3 {
  margin: 18px 0 10px;
  color: var(--vive-gold-2);
}
.vive-right .vive-marker-card strong,
.vive-right .vive-marker-card p,
.vive-right .vive-marker-card small,
.vive-right .vive-marker-form label,
.vive-right .vive-marker-status label {
  color: var(--vive-ink);
}
.vive-right .vive-marker-form,
.vive-right .vive-marker-status,
.vive-right .vive-marker-history {
  color: var(--vive-ink);
}
.vive-right .vive-marker-card {
  border-color: rgba(226, 168, 57, 0.28);
  background: rgba(255, 255, 255, 0.06);
}
.vive-marker-form label {
  display: grid;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--vive-ink);
}
.vive-marker-form textarea {
  min-height: 86px;
  resize: vertical;
}
.vive-marker-status {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 0;
}
.vive-marker-status label,
.vive-marker-status .vive-save-status {
  grid-column: 1 / -1;
}
.vive-marker-status label {
  display: grid;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--vive-ink);
}
.vive-marker-status textarea {
  width: 100%;
  min-height: 82px;
  border: 1px solid rgba(226, 168, 57, 0.24);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--vive-ink);
  background: rgba(255, 255, 255, 0.08);
  resize: vertical;
}
.vive-marker-status input[type="file"] {
  width: 100%;
}
.vive-right .vive-badge {
  color: #1a1306;
}
.vive-empty {
  color: var(--vive-muted);
}

@media (max-width: 1199px) {
  body.vive-bucalemu-page .vive-marker-history {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.vive-bucalemu-page .vive-marker-history {
    grid-template-columns: minmax(0, 1fr);
  }
  body.vive-bucalemu-page .vive-sale-contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1140px) and (min-width: 761px) {
  body.vive-bucalemu-page .vive-sale-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vive-agenda {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 60px;
  color: #283024;
}
.vive-agenda-head {
  max-width: 760px;
  margin-bottom: 22px;
}
.vive-agenda-head h1 {
  margin: 0 0 8px;
  color: #2c2117;
  font-size: clamp(32px, 4vw, 52px);
}
.vive-agenda-head p {
  color: #5c513f;
  font-size: 18px;
}
.vive-neighbor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 16px;
}
.vive-neighbor-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid #dac39b;
  border-radius: 8px;
  padding: 16px;
  background: #fffaf0;
  box-shadow: 0 10px 24px rgba(72, 49, 26, 0.08);
}
.vive-neighbor-photo {
  position: relative;
}
.vive-neighbor-photo img {
  width: 96px;
  height: 96px;
  border: 3px solid #f0dfba;
  border-radius: 999px;
  object-fit: cover;
  background: #efe7d6;
}
.vive-neighbor-photo span {
  position: absolute;
  right: -2px;
  bottom: 1px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid #fffaf0;
  border-radius: 999px;
  color: #fff7d6;
  background: #b7791f;
  box-shadow: 0 4px 10px rgba(61, 40, 18, 0.24);
}
.vive-neighbor-body h2 {
  margin: 0 0 6px;
  color: #2c2117;
  font-size: 21px;
  line-height: 1.18;
}
.vive-board-badge,
.vive-request-pending {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 9px;
  color: #315c37;
  background: #eef6e8;
  font-size: 12px;
  font-weight: 800;
}
.vive-board-badge-temp {
  color: #fff4dc;
  background: rgba(224, 161, 43, 0.32);
}
.vive-neighbor-body dl {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}
.vive-neighbor-body dl div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  border-bottom: 1px solid #eadcc0;
  padding-bottom: 7px;
}
.vive-neighbor-body dt {
  color: #7c4a00;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.vive-neighbor-body dd {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
}
@media (max-width: 420px) {
  .vive-neighbor-grid {
    grid-template-columns: 1fr;
  }
  .vive-neighbor-card {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }
  .vive-neighbor-photo img {
    width: 74px;
    height: 74px;
  }
  .vive-neighbor-body h2 {
    font-size: 19px;
  }
  .vive-neighbor-body dd {
    font-size: 15px;
  }
}
.vive-access-form {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}
.vive-access-form label {
  display: grid;
  gap: 4px;
  color: #21402b;
  font-size: 13px;
  font-weight: 800;
}
.vive-access-form textarea {
  min-height: 72px;
  border: 1px solid #c8b995;
  border-radius: 6px;
  padding: 8px 10px;
  resize: vertical;
}
.vive-neighbor-edit {
  margin-top: 12px;
  border-top: 1px solid #e1d2b2;
  padding-top: 10px;
}
.vive-neighbor-edit summary {
  width: fit-content;
  cursor: pointer;
  color: #315c37;
  font-weight: 900;
}
.vive-neighbor-edit form {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}
.vive-neighbor-edit label {
  display: grid;
  gap: 4px;
  color: #21402b;
  font-size: 13px;
  font-weight: 800;
}
.vive-neighbor-edit input,
.vive-neighbor-edit select {
  width: 100%;
  min-height: 38px;
  border: 1px solid #c8b995;
  border-radius: 6px;
  padding: 7px 9px;
  background: #fff;
}
.vive-temp-board-box {
  border-top-color: rgba(224, 161, 43, 0.34);
  background: rgba(224, 161, 43, 0.07);
  border-radius: 8px;
  padding: 10px;
}
.vive-temp-board-box .vive-action-row {
  margin-top: 0;
}
.vive-about-hero {
  position: relative;
  width: 100vw;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  margin-top: -72px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 150px 24px 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(39, 28, 18, 0.82), rgba(39, 28, 18, 0.36) 58%, rgba(39, 28, 18, 0.72)),
    var(--vive-about-image) center / cover no-repeat;
}
.vive-about-hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.vive-about-kicker,
.vive-about-seal {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(180, 119, 45, 0.45);
  border-radius: 999px;
  padding: 7px 12px;
  color: #f4d9a7;
  background: rgba(66, 43, 20, 0.42);
  font-weight: 900;
}
.vive-about-hero h1 {
  max-width: 900px;
  margin: 18px 0;
  color: #fff8e7;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
}
.vive-about-hero p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 238, 0.92);
  font-size: 20px;
  line-height: 1.6;
}
.vive-about-story,
.vive-about-colonial,
.vive-about-closing {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}
.vive-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  padding: 58px 0 30px;
}
.vive-about-prose {
  border-left: 6px solid #b7791f;
  padding-left: 28px;
}
.vive-about-prose h2,
.vive-about-colonial h2,
.vive-about-closing h2 {
  margin: 16px 0;
  color: #2c2117;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
}
.vive-about-prose p,
.vive-about-colonial p,
.vive-about-closing p {
  color: #4d4030;
  font-size: 19px;
  line-height: 1.78;
}
.vive-about-note {
  align-self: start;
  border: 1px solid #d9bf8f;
  border-radius: 8px;
  padding: 24px;
  color: #402c18;
  background:
    linear-gradient(135deg, rgba(255, 248, 231, 0.95), rgba(238, 221, 188, 0.9));
  box-shadow: 0 16px 34px rgba(72, 49, 26, 0.12);
}
.vive-about-note strong {
  color: #7c4a00;
  font-size: 22px;
}
.vive-about-tiles {
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px auto 56px;
}
.vive-about-tiles article {
  min-height: 260px;
  border: 1px solid #dac39b;
  border-radius: 8px;
  padding: 24px;
  background: #fffaf0;
}
.vive-about-tiles span {
  color: #b7791f;
  font-weight: 900;
}
.vive-about-tiles h3 {
  margin: 22px 0 12px;
  color: #2c2117;
  font-size: 30px;
}
.vive-about-tiles p {
  color: #594a36;
  font-size: 17px;
  line-height: 1.65;
}
.vive-about-colonial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  border-top: 1px solid #d9bf8f;
  border-bottom: 1px solid #d9bf8f;
  padding: 48px 0;
}
.vive-about-colonial blockquote {
  margin: 0;
  border-radius: 8px;
  padding: 28px;
  color: #fff8e7;
  background: #315c37;
  font-size: 24px;
  line-height: 1.45;
}
.vive-about-closing {
  padding: 58px 0 72px;
  text-align: center;
}
.vive-about-closing p {
  max-width: 820px;
  margin: 0 auto;
}
.vive-blog-page {
  width: min(1200px, calc(100% - 36px));
  margin: 42px auto 54px;
}
.vive-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.vive-blog-card {
  background: #fff;
}
.vive-blog-image {
  display: block;
  aspect-ratio: 1.2 / 1;
  background: #efe7d6;
}
.vive-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vive-blog-card-body {
  padding: 28px 24px;
}
.vive-blog-category {
  margin-bottom: 16px;
  color: #9a5a00;
  font-size: 14px;
  font-weight: 800;
}
.vive-blog-card h2 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.2;
}
.vive-blog-card h2 a {
  color: #0f1410;
  text-decoration: none;
}
.vive-blog-meta {
  margin-bottom: 18px;
  color: #9a5a00;
  font-size: 13px;
  font-weight: 800;
}
.vive-blog-card p {
  margin: 0;
  color: #111;
  font-size: 17px;
  line-height: 1.62;
}
.vive-blog-pagination {
  margin-top: 32px;
}
.vive-catalog {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 28px;
  padding-bottom: 54px;
}
.vive-catalog-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.vive-catalog-head h1 {
  margin: 0 0 6px;
  color: #1e3828;
}
.vive-catalog-head p {
  margin: 0;
  color: #5f6658;
  font-size: 15px;
}
.vive-catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  padding: 0;
  margin-bottom: 18px;
}
.vive-catalog-filter-select {
  display: none;
  margin-bottom: 14px;
}
.vive-catalog-filter-select label {
  display: grid;
  gap: 6px;
  color: #21402b;
  font-weight: 900;
}
.vive-catalog-filter-select select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #b6aa94;
  border-radius: 6px;
  padding: 8px 10px;
  background: #fffdf7;
  font-size: 16px;
}
.vive-catalog-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  border: 1px solid #d9cfbb;
  border-radius: 999px;
  padding: 6px 12px;
  color: #21402b;
  background: #fffdf7;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.vive-catalog-tabs .vive-community-icon {
  width: 24px;
  height: 24px;
  font-size: 14px;
}
.vive-catalog-tabs a.is-active,
.vive-catalog-tabs a:hover,
.vive-catalog-tabs a:focus {
  border-color: #315c37;
  background: #edf8ea;
}
.vive-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 20px;
  align-items: start;
}
.vive-catalog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(185, 155, 95, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 249, 236, 0.96));
  box-shadow: 0 14px 34px rgba(73, 47, 20, 0.12);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.vive-catalog-card:hover {
  border-color: rgba(183, 121, 31, 0.62);
  box-shadow: 0 20px 42px rgba(73, 47, 20, 0.18);
  transform: translateY(-3px);
}
.vive-catalog-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  max-height: 178px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(183, 121, 31, 0.2), transparent 34%),
    linear-gradient(135deg, #efe4cd, #f8f1df);
}
.vive-catalog-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(42, 28, 14, 0.28));
}
.vive-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.vive-catalog-card:hover .vive-catalog-image img {
  transform: scale(1.025);
}
.vive-catalog-image .vive-community-icon {
  width: 52px;
  height: 52px;
  font-size: 23px;
  box-shadow: 0 8px 20px rgba(50, 31, 13, 0.22);
}
.vive-catalog-card-body {
  display: grid;
  gap: 9px;
  padding: 14px 15px 15px;
}
.vive-catalog-meta,
.vive-catalog-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: #6d715f;
  font-size: 11px;
  font-weight: 800;
}
.vive-catalog-meta span:first-child {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 4px 8px;
  color: #315c37;
  background: #eef6e8;
}
.vive-catalog-meta span:last-child {
  color: #8a5a00;
}
.vive-catalog-meta span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vive-catalog-meta span:last-child,
.vive-catalog-foot span:first-child {
  flex: 0 0 auto;
}
.vive-catalog-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.16;
}
.vive-catalog-card h2 a {
  color: #17251b;
  text-decoration: none;
}
.vive-catalog-card h2 a:hover,
.vive-catalog-card h2 a:focus {
  color: #7c4a00;
}
.vive-catalog-card p {
  margin: 0;
  color: #3e463d;
  font-size: 14px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vive-catalog-price {
  width: fit-content;
  border: 1px solid #edd59b;
  border-radius: 999px;
  padding: 6px 10px;
  color: #6f4200;
  background: linear-gradient(180deg, #fff6d8, #ffe8a8);
  font-size: 14px;
  font-weight: 900;
}
.vive-catalog-foot {
  border-top: 1px solid #eadcc0;
  padding-top: 8px;
}
.vive-catalog-foot .vive-badge {
  padding: 4px 8px;
  font-size: 11px;
}
.vive-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.vive-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid #d9cfbb;
  border-radius: 6px;
  color: #21402b;
  background: #fffdf7;
  text-decoration: none;
  font-weight: 900;
}
.vive-pagination a.is-active {
  color: #fff;
  border-color: #315c37;
  background: #315c37;
}
.vive-marker-detail-page {
  padding-top: 26px;
  padding-bottom: 44px;
}
.vive-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: #315c37;
  font-weight: 800;
}
.vive-marker-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
}
.vive-marker-detail-main,
.vive-marker-detail-edit {
  border: 1px solid #d9cfbb;
  border-radius: 8px;
  background: #fffdf7;
  padding: 18px;
}
.vive-marker-detail-page .vive-detail-title {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}
.vive-marker-detail-page .vive-detail-title h1 {
  margin: 2px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}
.vive-marker-detail-page .vive-detail-title small {
  color: #6d715f;
  font-weight: 800;
}
.vive-carousel {
  position: relative;
  margin: 12px 0 18px;
}
.vive-carousel-stage {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d9cfbb;
  background: #111;
  aspect-ratio: 16 / 9;
}
.vive-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.vive-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.vive-carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #111;
}
.vive-carousel-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  font-size: 14px;
}
.vive-carousel-delete {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(145, 32, 24, 0.92);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}
.vive-carousel-delete:hover,
.vive-carousel-delete:focus {
  background: #7f1d1d;
}
.vive-carousel-delete:disabled {
  opacity: 0.72;
  cursor: wait;
}
.vive-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(38, 49, 38, 0.82);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.vive-carousel-prev {
  left: 10px;
}
.vive-carousel-next {
  right: 10px;
}
.vive-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}
.vive-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c7bca8;
  cursor: pointer;
}
.vive-carousel-dots button.is-active {
  background: #315c37;
}
.vive-marker-description {
  font-size: 18px;
  line-height: 1.55;
}
.vive-detail-list {
  display: grid;
  gap: 0;
  margin: 18px 0;
}
.vive-detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e3dac9;
  padding: 8px 0;
}
.vive-detail-list dt {
  color: #263126;
  font-weight: 900;
}
.vive-detail-list dd {
  margin: 0;
  text-align: right;
}
.vive-marker-detail-edit {
  position: sticky;
  top: 18px;
}
.vive-marker-detail-edit form {
  display: grid;
  gap: 10px;
}
.vive-marker-detail-edit label {
  display: grid;
  gap: 4px;
  color: #21402b;
  font-weight: 800;
}
.vive-marker-detail-edit textarea {
  min-height: 96px;
  resize: vertical;
}
.vive-login-page {
  padding-top: 26px;
  padding-bottom: 44px;
}
.vive-login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
}
.vive-login-card,
.vive-login-side-card {
  border: 1px solid #d9cfbb;
  border-radius: 8px;
  background: #fffdf7;
  padding: 18px;
}
.vive-login-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.vive-login-head h1,
.vive-login-side-card h2 {
  margin: 0;
}
.vive-login-head p {
  margin: 0;
  color: #5f5a4a;
  line-height: 1.45;
}
.vive-login-form {
  display: grid;
  gap: 12px;
}
.vive-login-form label {
  display: grid;
  gap: 5px;
  color: #1f1a12;
  font-weight: 700;
}
.vive-login-form input[type="text"],
.vive-login-form input[type="password"],
.vive-login-form input[type="email"],
.vive-login-form input[type="number"] {
  width: 100%;
  border: 1px solid #d9cfbb;
  border-radius: 6px;
  padding: 10px 12px;
  color: #1a1306;
  background: #fff;
}
.vive-login-page .vive-panel-note {
  color: #5f5a4a;
  margin-top: 8px;
}
.vive-reset-form {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid #e3dac9;
}
.vive-panel-note a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
}
.vive-login-remember {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  grid-template-columns: none !important;
}
.vive-login-remember input {
  width: 16px;
  height: 16px;
}
.vive-login-side {
  display: grid;
  gap: 16px;
}
.vive-login-side-card ul {
  margin: 0;
  padding-left: 20px;
  color: #3d372c;
  line-height: 1.5;
}
.vive-login-side-card li + li {
  margin-top: 8px;
}
.vive-register {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 16px 42px;
  color: #283024;
}
.vive-register-head {
  margin-bottom: 18px;
}
.vive-register-head h1 {
  margin: 0 0 8px;
  color: #1e3828;
}
.vive-register-form {
  display: grid;
  gap: 18px;
}
.vive-register-form section {
  border: 1px solid #d8ccb4;
  border-radius: 8px;
  background: #fbf8ef;
  padding: 16px;
}
.vive-register-form h2 {
  margin: 0 0 14px;
  font-size: 20px;
  color: #21402b;
}
.vive-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.vive-register-form label {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #21402b;
}
.vive-register-form input,
.vive-register-form select,
.vive-register-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #b6aa94;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 16px;
  background: #fff;
}
.vive-register-form textarea {
  min-height: 92px;
  resize: vertical;
}
.vive-parcela-lookup {
  position: relative;
}
.vive-parcela-lookup small {
  color: #63705d;
  font-weight: 500;
}
.vive-form-note {
  margin: -2px 0 10px;
  color: #63705d;
  font-size: 14px;
  line-height: 1.45;
}
.vive-lookup-results {
  display: grid;
  gap: 6px;
  margin-top: 6px;
}
.vive-lookup-item {
  display: grid;
  gap: 2px;
  width: 100%;
  border: 1px solid #d9cfbb;
  border-radius: 6px;
  background: #fffdf7;
  color: #283024;
  padding: 9px 10px;
  text-align: left;
  cursor: pointer;
}
.vive-lookup-item:hover,
.vive-lookup-item:focus {
  border-color: #477348;
  background: #eef6e8;
}
.vive-lookup-item span,
.vive-lookup-item small {
  font-weight: 500;
  color: #63705d;
}
.vive-lookup-item em {
  font-style: normal;
  color: #8a5a00;
}
.vive-reg-assigned {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddb85b;
  background: #fff8df;
  color: #6d5208;
  font-size: 14px;
  line-height: 1.4;
}
.vive-reg-assigned strong {
  color: #5b4305;
}
.vive-alert {
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-weight: 700;
}
.vive-alert h2 {
  margin: 0 0 8px;
  font-size: 22px;
}
.vive-alert p {
  margin: 8px 0;
  font-weight: 500;
}
.vive-alert-ok {
  background: #edf8ea;
  border: 1px solid #8fbf83;
  color: #24512c;
}
.vive-alert-error {
  background: #fff1ed;
  border: 1px solid #d59b8f;
  color: #813022;
}
.vive-alert-warning {
  background: #fff7df;
  border: 1px solid #ddb85b;
  color: #6d5208;
}
.vive-admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.vive-footer-counter {
  width: min(1120px, calc(100% - 32px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 24px auto 18px;
  padding: 10px 14px;
  border: 1px solid #d8c49a;
  border-radius: 999px;
  color: #315c37;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(248, 239, 218, 0.96));
  box-shadow: 0 8px 22px rgba(73, 47, 20, 0.1);
  font-size: 13px;
  font-weight: 800;
}
.vive-footer-counter-label {
  color: #7c4a00;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.vive-footer-counter strong {
  color: #17251b;
  font-size: 20px;
  line-height: 1;
}
.vive-footer-counter span:not(.vive-footer-counter-label) {
  color: #5f6658;
}
@media (max-width: 980px) {
  .vive-app {
    grid-template-columns: 1fr;
    width: min(920px, calc(100% - 24px));
  }
  .vive-search-field {
    grid-column: 1 / -1;
  }
  .vive-search-field input {
    padding-right: 126px;
  }
  .vive-left {
    grid-template-columns: 1fr;
  }
  .vive-results {
    max-height: 260px;
  }
  .vive-catalog-head {
    display: grid;
  }
  .vive-catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
  .vive-about-hero {
    min-height: 560px;
  }
  .vive-about-story,
  .vive-about-colonial,
  .vive-about-tiles {
    grid-template-columns: 1fr;
  }
  .vive-blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .vive-catalog-filter-select {
    display: block;
  }
  .vive-catalog-tabs {
    display: none;
  }
  .vive-marker-detail-layout {
    grid-template-columns: 1fr;
  }
  .vive-marker-detail-edit {
    position: static;
  }
  .vive-login-layout {
    grid-template-columns: 1fr;
  }
  .vive-form-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1500px) {
  .vive-public-nav,
  .vive-page-banner-inner {
    width: min(1500px, calc(100% - 48px));
  }
  .vive-about-hero-inner,
  .vive-about-story,
  .vive-about-colonial,
  .vive-about-closing,
  .vive-about-tiles {
    width: min(1320px, calc(100% - 48px));
  }
  .vive-catalog,
  .vive-blog-page,
  .vive-agenda {
    width: min(1440px, calc(100% - 48px));
  }
}
@media (max-width: 720px) {
  .vive-app,
  .vive-catalog,
  .vive-raffles,
  .vive-blog-page,
  .vive-agenda,
  .vive-register,
  .vive-marker-detail-page {
    width: min(720px, calc(100% - 20px));
  }
  .vive-login-page {
    width: min(720px, calc(100% - 20px));
  }
  .vive-map-wrap,
  #vive-map {
    min-height: 58vh;
  }
  .vive-panel {
    padding: 12px;
  }
  .vive-map-wrap {
    padding: 10px;
  }
  .vive-map-nav-toggle {
    top: 18px;
    right: 18px;
    padding: 0 12px;
  }
  .vive-map-nav-text {
    font-size: 12px;
  }
  .vive-left {
    grid-template-columns: 1fr;
  }
  .vive-search-indicator {
    right: 8px;
    padding: 0 8px 0 7px;
  }
  .vive-search-indicator-text {
    font-size: 11px;
  }
  .vive-detail-title,
  .vive-marker-detail-page .vive-detail-title,
  .vive-marker-status,
  .vive-detail-list div {
    grid-template-columns: 1fr;
  }
  .vive-detail-list div {
    display: grid;
    gap: 4px;
  }
  .vive-detail-list dd {
    text-align: left;
  }
  .vive-login-card,
  .vive-login-side-card {
    padding: 14px;
  }
}

/* Propuesta grafica: unificacion de paginas internas */
.vive-wrap,
.vive-agenda,
.vive-blog-page,
.vive-catalog,
.vive-marker-detail-page,
.vive-login-page,
.vive-register,
.vive-about-story,
.vive-about-colonial,
.vive-about-closing {
  color: var(--vive-ink);
}
.vive-agenda-head h1,
.vive-catalog-head h1,
.vive-register-head h1,
.vive-about-prose h2,
.vive-about-colonial h2,
.vive-about-closing h2,
.vive-marker-detail-page .vive-detail-title h1 {
  color: var(--vive-ink);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
}
.vive-agenda-head p,
.vive-catalog-head p,
.vive-register-head p,
.vive-about-prose p,
.vive-about-colonial p,
.vive-about-closing p,
.vive-marker-description,
.vive-marker-detail-page .vive-detail-title small {
  color: var(--vive-muted);
}
.vive-neighbor-card,
.vive-blog-card,
.vive-catalog-card,
.vive-marker-detail-main,
.vive-marker-detail-edit,
.vive-register-form section,
.vive-about-note,
.vive-about-tiles article {
  border: 1px solid rgba(226, 168, 57, 0.24);
  border-radius: 8px;
  color: var(--vive-ink);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(7, 21, 27, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}
.vive-blog-card-body h2,
.vive-catalog-card-body h2,
.vive-neighbor-body h2,
.vive-register-form h2,
.vive-about-note strong,
.vive-about-tiles h3 {
  color: var(--vive-ink);
}
.vive-blog-card-body p,
.vive-catalog-card-body p,
.vive-neighbor-body dd,
.vive-about-tiles p,
.vive-detail-list dd {
  color: var(--vive-muted);
}
.vive-blog-category,
.vive-blog-meta,
.vive-catalog-meta,
.vive-catalog-price,
.vive-neighbor-body dt,
.vive-detail-list dt,
.vive-about-tiles span {
  color: var(--vive-gold-2);
}
.vive-board-badge,
.vive-request-pending,
.vive-catalog-tabs a,
.vive-catalog-filter-select select,
.vive-lookup-item {
  border: 1px solid rgba(226, 168, 57, 0.28);
  color: var(--vive-ink);
  background: rgba(224, 161, 43, 0.1);
}
.vive-catalog-tabs a.is-active,
.vive-catalog-tabs a:hover,
.vive-catalog-tabs a:focus,
.vive-lookup-item:hover,
.vive-lookup-item:focus {
  color: #1a1306;
  background: linear-gradient(180deg, var(--vive-gold-2), var(--vive-gold));
}
body.vive-bucalemu-page select option,
body.vive-bucalemu-page datalist option {
  color: #172326 !important;
  background: #fffaf0 !important;
}
body.vive-bucalemu-page select option:checked {
  color: #ffffff !important;
  background: #a96b08 !important;
}
body.vive-bucalemu-page .vive-catalog-filter-select label {
  color: var(--vive-ink);
}
.vive-register-form label,
.vive-marker-detail-edit label,
.vive-access-form label,
.vive-neighbor-edit label {
  color: var(--vive-ink);
}
.vive-register-form input,
.vive-register-form select,
.vive-register-form textarea,
.vive-marker-detail-edit textarea,
.vive-access-form textarea,
.vive-neighbor-edit input,
.vive-neighbor-edit select,
.vive-temp-board-box input,
.vive-temp-board-box select {
  border: 1px solid rgba(226, 168, 57, 0.24);
  color: var(--vive-ink);
  background: rgba(255, 255, 255, 0.08);
}
.vive-register-form input:required,
.vive-register-form textarea:required {
  border-color: rgba(226, 168, 57, 0.42);
}
.vive-register-form .vive-form-note {
  color: var(--vive-muted);
}
.vive-detail-list div,
.vive-neighbor-body dl div,
.vive-neighbor-edit {
  border-color: rgba(226, 168, 57, 0.18);
}
.vive-about-hero {
  align-items: center;
  min-height: min(760px, 92vh);
  background:
    radial-gradient(circle at 54% 36%, rgba(224, 161, 43, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(7, 21, 27, 0.88), rgba(7, 21, 27, 0.44) 55%, rgba(8, 12, 10, 0.86)),
    var(--vive-about-image) center / cover no-repeat;
}
.vive-about-kicker,
.vive-about-seal {
  border-color: rgba(226, 168, 57, 0.34);
  color: var(--vive-gold-2);
  background: rgba(7, 21, 27, 0.54);
}
.vive-about-prose {
  border-left-color: var(--vive-gold);
}
.vive-about-colonial blockquote {
  color: var(--vive-ink);
  background: rgba(224, 161, 43, 0.12);
}
.vive-blog-image,
.vive-catalog-image,
.vive-carousel-stage {
  border-color: rgba(226, 168, 57, 0.18);
  background: #111c1f;
}
.vive-footer-counter {
  border-color: rgba(226, 168, 57, 0.24);
  color: var(--vive-ink);
  background: rgba(7, 21, 27, 0.72);
}
.vive-footer-counter-label,
.vive-footer-counter strong {
  color: var(--vive-gold-2);
}
.vive-footer-counter span:not(.vive-footer-counter-label) {
  color: var(--vive-muted);
}
.vive-alert-ok {
  border-color: rgba(143, 191, 131, 0.5);
  color: #dff7d7;
  background: rgba(39, 86, 49, 0.34);
}
.vive-alert-error {
  border-color: rgba(213, 155, 143, 0.5);
  color: #ffd7ce;
  background: rgba(129, 48, 34, 0.32);
}
@media (max-width: 900px) {
  .vive-page-banner-inner,
  .vive-about-hero-inner {
    width: min(100%, 760px);
  }
}
@media (max-width: 640px) {
  .vive-public-top-actions {
    gap: 6px;
  }
  .vive-top-action {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }
  .vive-page-banner h1 {
    font-size: clamp(38px, 13vw, 58px);
  }
  .vive-banner-stats {
    grid-template-columns: 1fr;
  }
  .vive-banner-stat,
  .vive-banner-stat + .vive-banner-stat {
    border-left: 0;
    border-top: 1px solid rgba(248, 244, 234, 0.12);
    padding-top: 14px;
  }
  .vive-banner-stat:first-child {
    border-top: 0;
    padding-top: 0;
  }
}
@media (min-width: 901px) {
  body.vive-bucalemu-page {
    --vive-shell-sidebar: 332px;
    --vive-shell-gutter: 16px;
  }
  body.vive-bucalemu-page .vive-public-nav,
  body.vive-bucalemu-page .vive-public-nav.is-compact {
    width: 316px;
  }
  body.vive-bucalemu-page .vive-page-banner-inner {
    width: min(1080px, calc(100vw - 392px));
  }
  body.vive-bucalemu-page .vive-app,
  body.vive-bucalemu-page .vive-agenda,
  body.vive-bucalemu-page .vive-blog-page,
  body.vive-bucalemu-page .vive-catalog,
  body.vive-bucalemu-page .vive-marker-detail-page,
  body.vive-bucalemu-page .vive-login-page,
  body.vive-bucalemu-page .vive-register,
  body.vive-bucalemu-page .vive-about-story,
  body.vive-bucalemu-page .vive-about-tiles,
  body.vive-bucalemu-page .vive-about-colonial,
  body.vive-bucalemu-page .vive-about-closing {
    width: calc(100vw - 348px);
    max-width: none;
    min-width: 0;
    margin: 24px 16px 44px var(--vive-shell-sidebar);
  }
  body.vive-bucalemu-page .vive-app {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
  }
  body.vive-bucalemu-page .vive-marker-detail-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
  body.vive-bucalemu-page .vive-map-wrap,
  body.vive-bucalemu-page #vive-map {
    min-height: clamp(580px, calc(100vh - 70px), 920px);
  }
}

/* Mockup exacto primera pantalla */
body.vive-bucalemu-page {
  margin: 0;
  background: #061620;
}
body.vive-bucalemu-page .site-header,
body.vive-bucalemu-page .ast-primary-header-bar,
body.vive-bucalemu-page .main-header-bar,
body.vive-bucalemu-page .site-footer,
body.vive-bucalemu-page .entry-title {
  display: none !important;
}
.vive-public-brand-logo {
  display: block;
  width: 100%;
  height: auto;
}
.vive-public-menu-icon svg,
.vive-top-action svg,
.vive-hero-kicker svg,
.vive-hero-note svg,
.vive-sidebar-landmark svg,
.vive-stat-icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vive-sidebar-landmark {
  display: block;
  width: 112px;
  color: var(--vive-gold);
}
.vive-sidebar-landmark svg {
  width: 100%;
  height: auto;
}
@media (min-width: 901px) {
  .vive-page-banner {
    min-height: 100vh;
    margin-top: 0;
    padding: 160px 58px 58px 340px;
    background:
      linear-gradient(90deg, rgba(6, 15, 15, 0.88) 0%, rgba(8, 23, 29, 0.46) 42%, rgba(8, 11, 8, 0.82) 100%),
      linear-gradient(180deg, rgba(7, 21, 27, 0.16) 0%, rgba(0, 0, 0, 0.7) 100%),
      var(--vive-banner-image) center / cover no-repeat;
  }
  .vive-page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 62% 38%, rgba(255, 255, 255, 0.08), transparent 28%),
      linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.36));
  }
  .vive-public-nav,
  .vive-public-nav.is-compact {
    top: 4px;
    bottom: 12px;
    left: 8px;
    width: 316px;
    padding: 38px 22px 38px;
    gap: 22px;
    grid-template-rows: 190px minmax(0, 1fr) auto;
    border: 1px solid rgba(209, 147, 40, 0.36);
    border-radius: 13px;
    background:
      linear-gradient(180deg, rgba(13, 29, 34, 0.9), rgba(16, 16, 9, 0.82)),
      rgba(3, 9, 10, 0.74);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 26px 74px rgba(0, 0, 0, 0.48);
  }
  .vive-public-brand {
    align-self: start;
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vive-public-brand-logo {
    width: 255px;
    max-height: 170px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.2));
  }
  .vive-public-brand-mark,
  .vive-public-brand-text {
    display: none !important;
  }
  .vive-public-menu,
  .vive-public-nav.is-compact .vive-public-menu {
    align-self: stretch;
    display: grid;
    align-content: start;
    gap: 0;
  }
  .vive-public-menu-link,
  .vive-public-nav.is-compact .vive-public-menu-link {
    min-height: 76px;
    padding: 0 16px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.095);
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    font-weight: 650;
  }
  .vive-public-menu-link.is-active,
  .vive-public-menu-link:hover,
  .vive-public-menu-link:focus {
    min-height: 74px;
    border: 1px solid rgba(219, 149, 24, 0.8);
    border-radius: 19px;
    color: #fff;
    background:
      radial-gradient(circle at 16% 48%, rgba(255, 195, 72, 0.36), transparent 34%),
      linear-gradient(90deg, rgba(165, 107, 15, 0.48), rgba(255, 255, 255, 0.06));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 10px 28px rgba(176, 109, 9, 0.22);
  }
  .vive-public-menu-icon {
    width: 32px;
    height: 32px;
    color: var(--vive-gold-2);
    background: rgba(255, 255, 255, 0.045);
    font-size: 25px;
  }
  .vive-public-menu-icon svg {
    width: 25px;
    height: 25px;
  }
  .vive-public-sidebar-footer {
    gap: 14px;
    padding: 0 14px;
    color: var(--vive-gold-2);
    font-size: 14px;
  }
  .vive-public-sidebar-footer::before {
    display: none;
  }
  .vive-public-sidebar-footer a {
    min-height: 52px;
    border-color: rgba(224, 161, 43, 0.86);
    border-radius: 12px;
    color: #fff8e8;
    background: rgba(28, 22, 9, 0.38);
    font-size: 15px;
  }
  .vive-public-sidebar-footer a::before {
    content: "♡";
    margin-right: 10px;
    color: var(--vive-gold);
    font-size: 22px;
  }
  .vive-public-top-actions {
    top: 46px;
    right: 56px;
    gap: 16px;
  }
  .vive-top-action {
    min-width: 178px;
    min-height: 55px;
    gap: 12px;
    padding: 0 24px;
    border-color: rgba(224, 161, 43, 0.42);
    color: #fff;
    background: rgba(8, 24, 30, 0.62);
    font-size: 16px;
    font-weight: 650;
  }
  .vive-top-action svg {
    width: 21px;
    height: 21px;
    color: var(--vive-gold);
  }
  .vive-top-action-primary {
    min-width: 177px;
    border-color: rgba(251, 177, 42, 0.78);
    background: linear-gradient(180deg, rgba(205, 132, 16, 0.98), rgba(151, 92, 7, 0.98));
    box-shadow: 0 15px 40px rgba(196, 117, 6, 0.34);
  }
  .vive-page-banner-inner {
    position: relative;
    z-index: 1;
    width: min(940px, calc(100vw - 470px));
    min-height: calc(100vh - 220px);
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    margin: 0 auto;
    transform: translateY(26px);
  }
  .vive-banner-admin-link {
    position: absolute;
    top: -74px;
    left: 0;
  }
  .vive-hero-kicker {
    min-height: 45px;
    padding: 0 20px;
    gap: 12px;
    border-color: rgba(224, 161, 43, 0.36);
    color: #fff !important;
    background: rgba(10, 28, 34, 0.56);
    font-size: 16px !important;
    font-weight: 650;
  }
  .vive-hero-kicker::before {
    display: none;
  }
  .vive-hero-kicker svg {
    width: 20px;
    height: 20px;
    color: var(--vive-gold);
  }
  .vive-page-banner h1 {
    max-width: 820px;
    font-size: clamp(64px, 5.6vw, 78px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.44);
  }
  .vive-page-banner p:not(.vive-hero-kicker) {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.45;
  }
  .vive-hero-actions {
    gap: 16px;
    margin-top: 14px;
  }
  .vive-hero-cta {
    min-width: 284px;
    min-height: 72px;
    border-radius: 22px;
    color: #fff;
    font-size: 22px;
    background: linear-gradient(180deg, rgba(203, 132, 19, 0.98), rgba(150, 92, 7, 0.98));
  }
  .vive-hero-note {
    gap: 9px;
    color: rgba(255, 255, 255, 0.82);
  }
  .vive-hero-note::before {
    display: none;
  }
  .vive-hero-note svg {
    width: 18px;
    height: 18px;
    color: var(--vive-gold);
  }
  .vive-banner-stats {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    width: min(980px, 100%);
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .vive-banner-stat {
    min-height: 64px;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 14px;
    padding: 0 30px;
  }
  .vive-stat-icon {
    width: 52px;
    height: 52px;
    color: var(--vive-gold-2) !important;
    background: rgba(224, 161, 43, 0.13);
  }
  .vive-stat-icon svg {
    width: 27px;
    height: 27px;
  }
  .vive-banner-stats strong {
    font-size: 29px;
    font-weight: 900;
  }
  .vive-banner-stats span {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .vive-public-brand-logo {
    width: 190px;
  }
}

/* Ajuste fino de margenes contra mockup 1688x949 */
@media (min-width: 901px) {
  body.vive-bucalemu-page .vive-public-nav,
  body.vive-bucalemu-page .vive-public-nav.is-compact {
    top: 4px !important;
    bottom: 10px !important;
    left: 8px !important;
    width: 316px !important;
    min-width: 316px !important;
    max-width: 316px !important;
    height: calc(100vh - 14px) !important;
    padding: 0 !important;
    border-radius: 13px !important;
    overflow: hidden !important;
  }
  body.vive-bucalemu-page .vive-public-brand {
    position: absolute !important;
    top: 38px !important;
    left: 30px !important;
    right: 30px !important;
    width: auto !important;
    height: 170px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }
  body.vive-bucalemu-page .vive-public-brand-logo {
    width: 250px !important;
    max-width: 250px !important;
    height: 76px !important;
    max-height: 76px !important;
    object-fit: contain !important;
  }
  body.vive-bucalemu-page .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu {
    position: absolute !important;
    top: 245px !important;
    left: 29px !important;
    right: 36px !important;
    width: auto !important;
    height: 455px !important;
    min-height: 0 !important;
    max-height: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-content: start !important;
    gap: 0 !important;
    overflow: visible !important;
  }
  body.vive-bucalemu-page .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link {
    height: 76px !important;
    min-height: 76px !important;
    padding: 0 16px !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    column-gap: 17px !important;
    font-size: 17px !important;
    line-height: 1 !important;
  }
  body.vive-bucalemu-page .vive-public-menu-link.is-active,
  body.vive-bucalemu-page .vive-public-menu-link:hover,
  body.vive-bucalemu-page .vive-public-menu-link:focus {
    height: 74px !important;
    min-height: 74px !important;
    margin-bottom: 2px !important;
    border-radius: 18px !important;
  }
  body.vive-bucalemu-page .vive-public-menu-icon {
    width: 34px !important;
    height: 34px !important;
  }
  body.vive-bucalemu-page .vive-public-menu-icon svg {
    width: 24px !important;
    height: 24px !important;
  }
  body.vive-bucalemu-page .vive-public-sidebar-footer {
    position: absolute !important;
    left: 44px !important;
    right: 35px !important;
    bottom: 37px !important;
    width: auto !important;
    display: grid !important;
    justify-items: center !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  body.vive-bucalemu-page .vive-sidebar-landmark {
    width: 102px !important;
    height: 36px !important;
  }
  body.vive-bucalemu-page .vive-public-sidebar-footer span:not(.vive-sidebar-landmark) {
    max-width: 210px !important;
    color: var(--vive-gold-2) !important;
    font-size: 14px !important;
    line-height: 1.42 !important;
    text-align: center !important;
    text-shadow: none !important;
  }
  body.vive-bucalemu-page .vive-public-sidebar-footer a {
    width: 242px !important;
    min-height: 51px !important;
    border-radius: 11px !important;
    font-size: 15px !important;
  }
  body.vive-bucalemu-page .vive-public-top-actions {
    top: 46px !important;
    right: 56px !important;
  }
  body.vive-bucalemu-page .vive-page-banner {
    min-height: 100vh !important;
    padding: 150px 56px 54px 340px !important;
  }
  body.vive-bucalemu-page .vive-page-banner-inner {
    width: min(940px, calc(100vw - 470px)) !important;
    min-height: calc(100vh - 210px) !important;
    padding-bottom: 88px !important;
    align-content: start !important;
    transform: translateY(0) !important;
  }
  body.vive-bucalemu-page .vive-hero-kicker {
    margin-top: 0 !important;
  }
  body.vive-bucalemu-page .vive-banner-stats {
    bottom: -6px !important;
    width: min(980px, 100%) !important;
  }
}

/* Correccion de overflow del menu lateral */
@media (min-width: 901px) {
  body.vive-bucalemu-page .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu {
    left: 22px !important;
    right: 26px !important;
    width: auto !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  body.vive-bucalemu-page .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-menu-link.is-active,
  body.vive-bucalemu-page .vive-public-menu-link:hover,
  body.vive-bucalemu-page .vive-public-menu-link:focus {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
  }
  body.vive-bucalemu-page .vive-public-menu-link > span:last-child {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* Correccion logo visible y menu sin cortes */
@media (min-width: 901px) {
  body.vive-bucalemu-page .vive-public-brand {
    top: 34px !important;
    left: 24px !important;
    right: 24px !important;
    height: 158px !important;
    overflow: visible !important;
  }
  body.vive-bucalemu-page .vive-public-brand-logo {
    width: 270px !important;
    max-width: 270px !important;
    height: auto !important;
    max-height: 120px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.32)) !important;
  }
  body.vive-bucalemu-page .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu {
    top: 224px !important;
    left: 22px !important;
    right: 22px !important;
    height: 430px !important;
  }
  body.vive-bucalemu-page .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-menu-link.is-active,
  body.vive-bucalemu-page .vive-public-menu-link:hover,
  body.vive-bucalemu-page .vive-public-menu-link:focus {
    height: 68px !important;
    min-height: 68px !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    column-gap: 16px !important;
    padding: 0 14px !important;
    overflow: visible !important;
  }
  body.vive-bucalemu-page .vive-public-menu-link > span:last-child {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    font-size: 17px !important;
  }
  body.vive-bucalemu-page .vive-public-sidebar-footer {
    bottom: 36px !important;
  }
}

/* Correccion definitiva: logo arriba y menu debajo */
body.vive-bucalemu-page .vive-public-nav {
  position: fixed !important;
}
body.vive-bucalemu-page .vive-public-brand {
  position: absolute !important;
  top: 34px !important;
  left: 24px !important;
  right: 24px !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 142px !important;
  overflow: visible !important;
}
body.vive-bucalemu-page .vive-public-brand-logo {
  display: block !important;
  width: 260px !important;
  max-width: 260px !important;
  height: auto !important;
  max-height: 118px !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}
body.vive-bucalemu-page .vive-public-menu,
body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu {
  position: absolute !important;
  top: 220px !important;
  left: 22px !important;
  right: 22px !important;
  z-index: 2 !important;
  width: auto !important;
  height: 420px !important;
  min-height: 0 !important;
  max-height: none !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-content: start !important;
  overflow: hidden !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
body.vive-bucalemu-page .vive-public-menu-link,
body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link {
  height: 68px !important;
  min-height: 68px !important;
}
body.vive-bucalemu-page .vive-public-sidebar-footer {
  position: absolute !important;
  left: 36px !important;
  right: 36px !important;
  bottom: 36px !important;
  z-index: 2 !important;
}

/* Aislamiento frente al tema activo: evita compresion vertical del sidebar */
@media (min-width: 901px) {
  body.vive-bucalemu-page .vive-public-nav,
  body.vive-bucalemu-page .vive-public-nav.is-compact {
    position: fixed !important;
    top: 4px !important;
    right: auto !important;
    bottom: 12px !important;
    left: 8px !important;
    width: 316px !important;
    max-width: 316px !important;
    min-width: 316px !important;
    transform: none !important;
    box-sizing: border-box !important;
    display: block !important;
    padding: 38px 22px 30px !important;
    overflow: hidden !important;
  }
  body.vive-bucalemu-page .vive-public-nav > .vive-public-top-actions {
    display: none !important;
  }
  body.vive-bucalemu-page .vive-public-brand {
    width: 100% !important;
    height: 190px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    overflow: hidden !important;
  }
  body.vive-bucalemu-page .vive-public-brand-logo {
    width: 270px !important;
    max-width: 270px !important;
    height: auto !important;
    max-height: 166px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    flex: none !important;
  }
  body.vive-bucalemu-page .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu {
    position: static !important;
    width: 100% !important;
    height: calc(100vh - 430px) !important;
    min-height: 360px !important;
    max-height: 455px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-content: start !important;
    justify-content: stretch !important;
    overflow: hidden !important;
  }
  body.vive-bucalemu-page .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    min-height: 64px !important;
    height: 64px !important;
    align-items: center !important;
    justify-content: stretch !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    letter-spacing: 0 !important;
  }
  body.vive-bucalemu-page .vive-public-menu-link > span:last-child {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
  }
  body.vive-bucalemu-page .vive-public-menu-icon {
    display: inline-grid !important;
    justify-self: center !important;
    flex: none !important;
  }
  body.vive-bucalemu-page .vive-public-sidebar-footer {
    position: absolute !important;
    left: 22px !important;
    right: 22px !important;
    bottom: 30px !important;
    width: 100% !important;
    width: auto !important;
    display: grid !important;
    justify-items: center !important;
    gap: 10px !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }
  body.vive-bucalemu-page .vive-sidebar-landmark {
    width: 86px !important;
    height: 34px !important;
  }
  body.vive-bucalemu-page .vive-public-sidebar-footer span:not(.vive-sidebar-landmark) {
    max-width: 220px !important;
    line-height: 1.35 !important;
    text-align: center !important;
    white-space: normal !important;
  }
  body.vive-bucalemu-page .vive-public-sidebar-footer a {
    width: 100% !important;
    min-height: 48px !important;
    text-decoration: none !important;
    white-space: normal !important;
    line-height: 1.2 !important;
  }
  body.vive-bucalemu-page .vive-public-top-actions {
    position: fixed !important;
    top: 46px !important;
    right: 56px !important;
    left: auto !important;
    width: auto !important;
    display: flex !important;
    grid-column: auto !important;
    z-index: 9999 !important;
    transform: none !important;
  }
  body.vive-bucalemu-page .vive-top-action {
    text-decoration: none !important;
    white-space: nowrap !important;
  }
  body.vive-bucalemu-page .vive-page-banner {
    margin-top: 0 !important;
    padding-left: 340px !important;
  }
}

/* Ajuste final del menu lateral: logo centrado y separacion como referencia */
@media (min-width: 901px) {
  body.vive-bucalemu-page .vive-public-nav,
  body.vive-bucalemu-page .vive-public-nav.is-compact {
    position: fixed !important;
    top: 10px !important;
    bottom: 10px !important;
    left: 4px !important;
    right: auto !important;
    width: 312px !important;
    min-width: 312px !important;
    max-width: 312px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto minmax(0, 1fr) auto !important;
    grid-auto-flow: row !important;
    gap: 18px !important;
    padding: 34px 20px 36px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    transform: none !important;
  }

  body.vive-bucalemu-page .vive-public-brand {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 112px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  body.vive-bucalemu-page .vive-public-brand-logo {
    width: min(236px, 100%) !important;
    max-width: 236px !important;
    height: auto !important;
    max-height: 168px !important;
    object-fit: contain !important;
    object-position: center !important;
    flex: 0 0 auto !important;
  }

  body.vive-bucalemu-page .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-content: start !important;
    gap: 0 !important;
    padding: 0 2px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link {
    width: 100% !important;
    max-width: 100% !important;
    height: 72px !important;
    min-height: 72px !important;
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 18px !important;
    padding: 0 22px !important;
    border: 1px solid transparent !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    transition:
      background-color 0.18s ease,
      border-color 0.18s ease,
      box-shadow 0.18s ease,
      color 0.18s ease,
      transform 0.18s ease !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link.is-active,
  body.vive-bucalemu-page .vive-public-menu-link:hover,
  body.vive-bucalemu-page .vive-public-menu-link:focus {
    height: 72px !important;
    min-height: 72px !important;
    margin: 0 !important;
    border-color: rgba(224, 161, 43, 0.72) !important;
    border-radius: 22px !important;
    color: #fff8e8 !important;
    background:
      radial-gradient(circle at 18% 50%, rgba(243, 193, 94, 0.34), transparent 34%),
      linear-gradient(90deg, rgba(140, 88, 11, 0.48), rgba(255, 255, 255, 0.055)) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 12px 26px rgba(176, 109, 9, 0.18) !important;
    transform: translateX(0) !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link > span:last-child {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }

  body.vive-bucalemu-page .vive-public-menu-icon {
    width: 34px !important;
    height: 34px !important;
    justify-self: center !important;
  }

  body.vive-bucalemu-page .vive-public-sidebar-footer {
    position: static !important;
    width: 100% !important;
    display: grid !important;
    justify-items: center !important;
    gap: 12px !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
  }

  body.vive-bucalemu-page .vive-public-sidebar-footer a {
    width: 100% !important;
    min-height: 52px !important;
  }
}

/* Interaccion luminosa del menu lateral */
@media (min-width: 901px) {
  body.vive-bucalemu-page .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link {
    position: relative !important;
    isolation: isolate !important;
    border: 1px solid transparent !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.88) !important;
    transition:
      border-color 0.22s ease,
      border-radius 0.22s ease,
      color 0.22s ease,
      box-shadow 0.22s ease,
      transform 0.22s ease !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    border-radius: inherit !important;
    background:
      radial-gradient(circle at 18% 50%, rgba(243, 193, 94, 0.42), transparent 36%),
      linear-gradient(90deg, rgba(160, 101, 16, 0.56), rgba(255, 255, 255, 0.075)) !important;
    opacity: 0 !important;
    transition: opacity 0.22s ease !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link > span {
    position: relative !important;
    z-index: 1 !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link.is-active,
  body.vive-bucalemu-page .vive-public-menu-link:hover,
  body.vive-bucalemu-page .vive-public-menu-link:focus,
  body.vive-bucalemu-page .vive-public-menu-link:focus-visible {
    border-color: rgba(224, 161, 43, 0.78) !important;
    border-radius: 22px !important;
    color: #fff8e8 !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 14px 30px rgba(176, 109, 9, 0.24),
      0 0 34px rgba(224, 161, 43, 0.12) !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link.is-active::before,
  body.vive-bucalemu-page .vive-public-menu-link:hover::before,
  body.vive-bucalemu-page .vive-public-menu-link:focus::before,
  body.vive-bucalemu-page .vive-public-menu-link:focus-visible::before {
    opacity: 1 !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link:hover .vive-public-menu-icon,
  body.vive-bucalemu-page .vive-public-menu-link:focus .vive-public-menu-icon,
  body.vive-bucalemu-page .vive-public-menu-link:focus-visible .vive-public-menu-icon,
  body.vive-bucalemu-page .vive-public-menu-link.is-active .vive-public-menu-icon {
    color: var(--vive-gold-2) !important;
    background: rgba(224, 161, 43, 0.12) !important;
    box-shadow: 0 0 22px rgba(224, 161, 43, 0.2) !important;
  }
}

/* Responsive real del menu: tarjeta vertical en tablet y movil */
@media (max-width: 900px) {
  body.vive-bucalemu-page .vive-public-nav,
  body.vive-bucalemu-page .vive-public-nav.is-compact {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 18px !important;
    padding: 24px 20px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    transform: none !important;
    border: 1px solid rgba(209, 147, 40, 0.36) !important;
    border-radius: 14px !important;
    background:
      linear-gradient(180deg, rgba(13, 29, 34, 0.92), rgba(16, 16, 9, 0.86)),
      rgba(3, 9, 10, 0.78) !important;
  }

  body.vive-bucalemu-page .vive-public-brand {
    position: static !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  body.vive-bucalemu-page .vive-public-brand-logo {
    width: min(230px, 74vw) !important;
    max-width: 230px !important;
    height: auto !important;
    max-height: 120px !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  body.vive-bucalemu-page .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    max-height: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-content: start !important;
    gap: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    overflow: visible !important;
    transform: none !important;
  }

  body.vive-bucalemu-page .vive-public-menu-toggle,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-toggle {
    display: none !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    height: 58px !important;
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 16px !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link > span:last-child {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.vive-bucalemu-page .vive-public-sidebar-footer {
    display: none !important;
  }
}

/* Menu hamburguesa limpio en telefonos */
@media (max-width: 640px) {
  body.vive-bucalemu-page .vive-public-nav,
  body.vive-bucalemu-page .vive-public-nav.is-compact {
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 9999 !important;
    width: auto !important;
    height: 58px !important;
    min-height: 58px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-rows: 58px auto !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 12px !important;
    overflow: visible !important;
    border: 1px solid rgba(224, 161, 43, 0.4) !important;
    border-radius: 16px !important;
    background: rgba(5, 17, 20, 0.92) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34) !important;
    backdrop-filter: blur(14px) !important;
  }

  body.vive-bucalemu-page .vive-public-brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
  }

  body.vive-bucalemu-page .vive-public-brand-logo {
    width: 152px !important;
    max-width: 152px !important;
    max-height: 48px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  body.vive-bucalemu-page .vive-public-menu-toggle,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    color: var(--vive-gold-2) !important;
    background: rgba(224, 161, 43, 0.08) !important;
    font-size: 0 !important;
  }

  body.vive-bucalemu-page .vive-public-menu-toggle span {
    width: 18px !important;
    height: 2px !important;
    display: block !important;
    border-radius: 999px !important;
  }

  body.vive-bucalemu-page .vive-public-nav.is-open .vive-public-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }

  body.vive-bucalemu-page .vive-public-nav.is-open .vive-public-menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  body.vive-bucalemu-page .vive-public-nav.is-open .vive-public-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  body.vive-bucalemu-page .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 4px !important;
    padding: 10px !important;
    border: 1px solid rgba(224, 161, 43, 0.38) !important;
    border-radius: 16px !important;
    background: rgba(5, 17, 20, 0.97) !important;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) scale(0.98) !important;
    transition: opacity 0.18s ease, transform 0.18s ease !important;
    overflow: hidden !important;
  }

  body.vive-bucalemu-page .vive-public-nav.is-open .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact.is-open .vive-public-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link {
    height: 54px !important;
    min-height: 54px !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    padding: 0 14px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 16px !important;
    text-decoration: none !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link > span:last-child {
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  body.vive-bucalemu-page .vive-public-menu-icon {
    width: 30px !important;
    height: 30px !important;
  }

  body.vive-bucalemu-page .vive-page-banner {
    padding-top: 92px !important;
  }
}

/* Pulido hero en telefono: centrado y sin botones flotantes */
@media (max-width: 640px) {
  body.vive-bucalemu-page .vive-public-top-actions,
  body.vive-bucalemu-page .vive-top-action {
    display: none !important;
  }

  body.vive-bucalemu-page .vive-page-banner {
    min-height: auto !important;
    width: 100vw !important;
    padding: 106px 18px 42px !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    overflow: hidden !important;
  }

  body.vive-bucalemu-page .vive-page-banner-inner {
    width: min(100%, 360px) !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    display: grid !important;
    justify-items: center !important;
    align-content: start !important;
    gap: 16px !important;
    text-align: center !important;
    transform: none !important;
  }

  body.vive-bucalemu-page .vive-page-banner h1,
  body.vive-bucalemu-page .vive-hero-title {
    max-width: 330px !important;
    margin: 0 auto !important;
    font-size: clamp(40px, 12vw, 52px) !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    overflow-wrap: normal !important;
  }

  body.vive-bucalemu-page .vive-page-banner p,
  body.vive-bucalemu-page .vive-hero-copy {
    max-width: 330px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
    text-align: center !important;
  }

  body.vive-bucalemu-page .vive-hero-actions {
    width: 100% !important;
    display: grid !important;
    justify-items: center !important;
  }

  body.vive-bucalemu-page .vive-hero-cta {
    width: min(100%, 290px) !important;
    min-width: 0 !important;
    max-width: 290px !important;
    min-height: 56px !important;
    padding: 0 20px !important;
    border-radius: 17px !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    gap: 14px !important;
    font-size: 18px !important;
    white-space: nowrap !important;
  }

  body.vive-bucalemu-page .vive-hero-note {
    max-width: 310px !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
  }

  body.vive-bucalemu-page .vive-banner-stats {
    position: static !important;
    width: min(100%, 300px) !important;
    margin: 28px auto 0 !important;
    padding-top: 22px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.vive-bucalemu-page .vive-banner-stat,
  body.vive-bucalemu-page .vive-banner-stat + .vive-banner-stat {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    column-gap: 16px !important;
    align-items: center !important;
    justify-content: start !important;
    text-align: left !important;
    border: 0 !important;
    padding: 0 !important;
  }
}

/* v0.2.0 Visual reset: navegacion y hero responsive */
@media (max-width: 900px) {
  body.vive-bucalemu-page {
    overflow-x: hidden !important;
  }

  body.vive-bucalemu-page .vive-public-top-actions,
  body.vive-bucalemu-page .vive-top-action {
    display: none !important;
  }

  body.vive-bucalemu-page .vive-public-nav,
  body.vive-bucalemu-page .vive-public-nav.is-compact {
    position: fixed !important;
    z-index: 10000 !important;
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 64px !important;
    min-height: 64px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px !important;
    grid-template-rows: 64px !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 12px !important;
    border: 1px solid rgba(224, 161, 43, 0.42) !important;
    border-radius: 16px !important;
    background: rgba(5, 17, 20, 0.94) !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36) !important;
    backdrop-filter: blur(16px) !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    transform: none !important;
  }

  body.vive-bucalemu-page .vive-public-brand {
    position: static !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    height: 64px !important;
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body.vive-bucalemu-page .vive-public-brand-logo {
    width: min(178px, 58vw) !important;
    max-width: 178px !important;
    height: auto !important;
    max-height: 52px !important;
    object-fit: contain !important;
    object-position: left center !important;
    flex: 0 1 auto !important;
  }

  body.vive-bucalemu-page .vive-public-menu-toggle,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    padding: 0 !important;
    border: 1px solid rgba(224, 161, 43, 0.42) !important;
    border-radius: 13px !important;
    color: var(--vive-gold-2) !important;
    background: rgba(224, 161, 43, 0.09) !important;
    box-shadow: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  body.vive-bucalemu-page .vive-public-menu-toggle span {
    width: 21px !important;
    height: 2px !important;
    display: block !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transition: transform 0.18s ease, opacity 0.18s ease !important;
  }

  body.vive-bucalemu-page .vive-public-nav.is-open .vive-public-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  body.vive-bucalemu-page .vive-public-nav.is-open .vive-public-menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  body.vive-bucalemu-page .vive-public-nav.is-open .vive-public-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  body.vive-bucalemu-page .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: calc(100svh - 94px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 4px !important;
    padding: 10px !important;
    border: 1px solid rgba(224, 161, 43, 0.38) !important;
    border-radius: 16px !important;
    background: rgba(5, 17, 20, 0.98) !important;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.48) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    transform: translateY(-8px) scale(0.98) !important;
    transform-origin: top center !important;
    transition: opacity 0.18s ease, transform 0.18s ease !important;
  }

  body.vive-bucalemu-page .vive-public-nav.is-open .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact.is-open .vive-public-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link {
    width: 100% !important;
    max-width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 13px !important;
    padding: 0 14px !important;
    border: 1px solid transparent !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    background: transparent !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
    font-weight: 750 !important;
    line-height: 1.1 !important;
    text-align: left !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link.is-active,
  body.vive-bucalemu-page .vive-public-menu-link:hover,
  body.vive-bucalemu-page .vive-public-menu-link:focus {
    border-color: rgba(224, 161, 43, 0.72) !important;
    border-radius: 17px !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link > span:last-child {
    min-width: 0 !important;
    display: block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.vive-bucalemu-page .vive-public-menu-icon {
    width: 30px !important;
    height: 30px !important;
    justify-self: center !important;
  }

  body.vive-bucalemu-page .vive-public-sidebar-footer {
    display: none !important;
  }
}

@media (max-width: 640px) {
  body.vive-bucalemu-page .vive-page-banner {
    min-height: 100svh !important;
    width: 100vw !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 104px 18px 44px !important;
    margin-top: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body.vive-bucalemu-page .vive-page-banner-inner {
    width: min(100%, 354px) !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    display: grid !important;
    justify-items: center !important;
    align-content: start !important;
    gap: 15px !important;
    text-align: center !important;
    transform: none !important;
  }

  body.vive-bucalemu-page .vive-hero-kicker {
    max-width: 100% !important;
    min-height: 36px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    white-space: normal !important;
  }

  body.vive-bucalemu-page .vive-page-banner h1 {
    width: 100% !important;
    max-width: 330px !important;
    margin: 0 auto !important;
    font-size: clamp(38px, 11.4vw, 50px) !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    text-wrap: balance !important;
    overflow-wrap: normal !important;
  }

  body.vive-bucalemu-page .vive-page-banner p:not(.vive-hero-kicker) {
    width: 100% !important;
    max-width: 322px !important;
    margin: 0 auto !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
    text-align: center !important;
  }

  body.vive-bucalemu-page .vive-hero-actions {
    width: 100% !important;
    margin-top: 2px !important;
    display: grid !important;
    justify-items: center !important;
    gap: 12px !important;
  }

  body.vive-bucalemu-page .vive-hero-cta {
    width: min(100%, 292px) !important;
    min-width: 0 !important;
    max-width: 292px !important;
    min-height: 56px !important;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    border-radius: 17px !important;
    box-sizing: border-box !important;
    font-size: 18px !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
  }

  body.vive-bucalemu-page .vive-hero-note {
    width: min(100%, 310px) !important;
    display: inline-flex !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.3 !important;
  }

  body.vive-bucalemu-page .vive-banner-stats {
    position: static !important;
    width: min(100%, 304px) !important;
    margin: 24px auto 0 !important;
    padding-top: 20px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  body.vive-bucalemu-page .vive-banner-stat,
  body.vive-bucalemu-page .vive-banner-stat + .vive-banner-stat {
    width: 100% !important;
    min-height: 54px !important;
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    column-gap: 16px !important;
    align-items: center !important;
    justify-content: start !important;
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
  }

  body.vive-bucalemu-page .vive-stat-icon {
    width: 44px !important;
    height: 44px !important;
  }
}

@media (max-width: 370px) {
  body.vive-bucalemu-page .vive-public-brand-logo {
    width: 142px !important;
    max-width: 142px !important;
  }

  body.vive-bucalemu-page .vive-page-banner {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body.vive-bucalemu-page .vive-page-banner h1 {
    font-size: clamp(35px, 11vw, 44px) !important;
  }
}

@media (min-width: 1400px) {
  body.vive-bucalemu-page .vive-app {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 1121px) and (max-width: 1399px) {
  body.vive-bucalemu-page .vive-app {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  body.vive-bucalemu-page .vive-app {
    grid-template-columns: minmax(0, 1fr);
  }

  body.vive-bucalemu-page .vive-results {
    max-height: 280px;
  }
}

@media (max-width: 900px) {
  body.vive-bucalemu-page .vive-app {
    width: calc(100% - 24px);
    max-width: 760px;
    margin: 20px auto 36px;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  body.vive-bucalemu-page .vive-map-wrap,
  body.vive-bucalemu-page #vive-map {
    min-height: clamp(440px, 62vh, 680px);
  }

  body.vive-bucalemu-page .vive-raffle-layout {
    grid-template-columns: 1fr;
  }

  body.vive-bucalemu-page .vive-raffle-prize-input {
    grid-template-columns: 1fr;
  }
}

/* Ultimo override: asegurar titulos completos del menu lateral */
@media (min-width: 901px) {
  body.vive-bucalemu-page .vive-public-nav,
  body.vive-bucalemu-page .vive-public-nav.is-compact {
    width: 336px !important;
  }

  body.vive-bucalemu-page .vive-public-brand {
    padding-right: 4px !important;
  }

  body.vive-bucalemu-page .vive-public-menu,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu {
    width: 100% !important;
    overflow: visible !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link,
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link {
    min-height: 64px !important;
    height: auto !important;
    padding: 10px 12px !important;
    align-items: center !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    column-gap: 12px !important;
  }

  body.vive-bucalemu-page .vive-public-menu-link > span:last-child {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    text-overflow: clip !important;
    line-height: 1.15 !important;
    font-size: 15px !important;
  }

  body.vive-bucalemu-page .vive-public-menu-icon {
    width: 30px !important;
    height: 30px !important;
  }
}

@media (max-width: 900px) {
  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-icon {
    display: none !important;
  }

  body.vive-bucalemu-page .vive-public-nav.is-compact .vive-public-menu-link > span:last-child {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
  }
}

@media (min-width: 901px) {
  body.vive-bucalemu-page .vive-raffles {
    width: min(1180px, calc(100vw - 430px)) !important;
    max-width: calc(100vw - 430px) !important;
    margin-left: calc(374px + ((100vw - 430px - min(1180px, calc(100vw - 430px))) / 2)) !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  body.vive-bucalemu-page .vive-about-hero {
    justify-content: flex-start !important;
    padding-left: 374px !important;
    padding-right: 28px !important;
    box-sizing: border-box !important;
  }

  body.vive-bucalemu-page .vive-about-hero-inner {
    width: min(920px, calc(100vw - 430px)) !important;
    margin: 0 !important;
    max-width: none !important;
    text-align: left !important;
    justify-items: start !important;
  }

  body.vive-bucalemu-page .vive-about-hero h1 {
    max-width: 880px !important;
  }

  body.vive-bucalemu-page .vive-about-hero p:last-child {
    max-width: 760px !important;
  }
}
