/* Cyber Finance Land — design tokens (paleta S4) + componentes */
:root {
  --navy: #0D2340; --navy-900: #081A30; --navy-700: #0F2A4D; --navy-600: #14345C;
  --gold: #D4AF37; --gold-light: #F0D078; --yellow: #FFD84D; --red: #E5194B; --wa: #25D366;
  --ok: #7EE2A0; --ok-bg: rgba(40,167,69,.10); --ok-bd: rgba(40,167,69,.40);
  --warn: #FFD591; --warn-bg: rgba(240,173,78,.10); --warn-bd: rgba(240,173,78,.45);
  --txt: #fff; --txt-85: rgba(255,255,255,.85); --txt-75: rgba(255,255,255,.75); --txt-60: rgba(255,255,255,.60); --txt-45: rgba(255,255,255,.45);
  --bd: rgba(212,175,55,.14); --bd-hover: rgba(212,175,55,.38); --bd-soft: rgba(255,255,255,.08);
  --glow: 0 4px 20px rgba(212,175,55,.35);
  --mont: Montserrat, "Segoe UI", system-ui, -apple-system, sans-serif;
  --inter: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", Consolas, "Courier New", monospace;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --r: 18px; --r-sm: 10px;
  --wrap: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--navy); color: var(--txt); font-family: var(--inter); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold-light); }
h1, h2, h3, h4 { font-family: var(--mont); margin: 0; line-height: 1.12; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin: 0 auto; }
.mono { font-family: var(--mono); }
.k { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-60); font-weight: 600; }
.v { font-size: 17px; font-weight: 700; color: var(--txt); }
.gold-line { width: 80px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 16px auto 0; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 12px; padding: 13px 26px; font-weight: 700; font-size: 15px; border: 0; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease); white-space: nowrap; }
.btn svg { flex: none; }
.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--navy); box-shadow: var(--glow); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(212,175,55,.45); color: var(--navy); }
.btn--outline { background: transparent; border: 2px solid rgba(212,175,55,.5); color: var(--gold); font-weight: 600; padding: 11px 24px; }
.btn--outline:hover { background: rgba(212,175,55,.1); border-color: var(--gold); color: var(--gold-light); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #1fbd5a; color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 10px; }
.btn--block { width: 100%; }

/* Pills / chips */
.chip { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 600; letter-spacing: .04em; line-height: 1.2; white-space: nowrap; }
.chip--gold { background: rgba(212,175,55,.10); border: 1px solid rgba(212,175,55,.35); color: var(--gold-light); }
.chip--solid { background: var(--gold); color: var(--navy); }
.chip--dark { background: rgba(8,26,48,.85); border: 1px solid rgba(212,175,55,.5); color: var(--gold-light); }
.chip--ok { background: rgba(40,167,69,.15); border: 1px solid rgba(40,167,69,.5); color: var(--ok); }
.chip--warn { background: var(--warn-bg); border: 1px solid var(--warn-bd); color: var(--warn); }
.chip--muted { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.25); color: var(--txt-75); }
.chip--red { background: rgba(229,25,75,.15); border: 1px solid rgba(229,25,75,.5); color: #FF8FAA; }

/* Header */
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 60; background: rgba(13,35,64,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--gold); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.hdr.is-scrolled { border-bottom-color: rgba(212,175,55,.3); box-shadow: 0 4px 30px rgba(0,0,0,.5); }
.hdr__in { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; color: #fff; }
.brand svg { width: 42px; height: 42px; transition: transform .3s var(--ease); }
.brand:hover svg { transform: scale(1.05); }
.brand__word { font-family: var(--mont); font-size: 18px; letter-spacing: .02em; white-space: nowrap; }
.brand__word b { font-weight: 900; color: #fff; }
.brand__word span { font-weight: 700; color: var(--gold); }
.nav { display: flex; gap: 6px; }
.nav a { position: relative; color: var(--txt-85); font-weight: 500; font-size: 15px; padding: 8px 14px; }
.nav a::after { content: ""; position: absolute; left: 50%; bottom: 2px; width: 0; height: 2px; background: var(--gold); transform: translateX(-50%); transition: width .3s var(--ease); }
.nav a:hover::after, .nav a.is-active::after { width: 70%; }
.nav a:hover, .nav a.is-active { color: var(--gold); }
.hdr__right { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; gap: 6px; }
.lang a { color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 6px; padding: 4px 9px; font-size: 12px; font-weight: 600; }
.lang a:hover, .lang a.is-active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.burger { display: none; background: none; border: 1px solid rgba(212,175,55,.4); border-radius: 8px; padding: 6px 8px; color: var(--gold); }
.mnav { display: none; }
@media (max-width: 480px) { .hdr__in { gap: 8px; } .brand svg { width: 34px; height: 34px; } .brand__word { font-size: 13px; } .lang { gap: 4px; } .lang a { padding: 3px 6px; font-size: 11px; } .hdr__right { gap: 8px; } }
@media (max-width: 1040px) {
  .nav, .hdr__right .btn { display: none; }
  .burger { display: inline-flex; }
  .mnav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(8,26,48,.98); border-bottom: 1px solid rgba(212,175,55,.3); padding: 14px 24px 22px; z-index: 59; flex-direction: column; gap: 4px; }
  .mnav.is-open { display: flex; }
  .mnav a { color: var(--txt-85); font-size: 17px; font-weight: 600; padding: 12px 6px; border-bottom: 1px solid var(--bd-soft); }
  .mnav .btn { margin-top: 12px; }
}

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 70px; background: var(--navy); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero__ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,35,64,.93) 0%, rgba(8,26,48,.87) 50%, rgba(20,52,92,.80) 100%); }
.hero__shimmer { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: shimmer 3s infinite; }
.hero__in { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 900; color: #fff; max-width: 980px; margin-top: 26px; }
.hero__title .hl { display: block; color: var(--gold); }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.75; color: var(--txt-75); max-width: 680px; margin-top: 22px; }
.hero__cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; justify-content: center; }
.hero__stats { display: flex; gap: 48px; margin-top: 60px; flex-wrap: wrap; justify-content: center; }
.stat { text-align: center; min-width: 150px; }
.stat__v { font-family: var(--mont); font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 800; color: var(--gold); line-height: 1.1; }
.stat__l { margin-top: 6px; }
.scroll-ind { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(212,175,55,.6); animation: bounce 2s infinite; }

/* Sections */
.sec { padding: 96px 0; }
.sec--dark { background: var(--navy-900); }
.sec--card { background: var(--navy-600); }
.sec__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.sec__head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; }
.sec__head p { color: var(--txt-60); margin-top: 12px; font-size: 16px; }
.sec__head .gold-line { margin-top: 18px; }
@media (max-width: 720px) { .sec { padding: 60px 0; } .hero { padding-top: 100px; } }

/* Filters */
.filters { display: grid; grid-template-columns: 1.6fr repeat(5, minmax(0, 1fr)) auto; gap: 10px; align-items: center; background: var(--navy-700); border: 1px solid var(--bd); border-radius: 16px; padding: 12px; }
.fld { position: relative; }
.fld input, .fld select { width: 100%; background: var(--navy); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 12px 36px 12px 14px; font: inherit; font-size: 14px; color: #fff; appearance: none; -webkit-appearance: none; }
.fld input::placeholder { color: rgba(255,255,255,.4); }
.fld input:focus, .fld select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.15); }
.fld select option { background: var(--navy); color: #fff; }
.fld::after { content: ""; position: absolute; right: 14px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.fld--search::after { display: none; }
.fld--search svg { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.seg { display: inline-flex; border: 1px solid rgba(212,175,55,.45); border-radius: 10px; overflow: hidden; }
.seg button { background: transparent; border: 0; color: var(--gold); font-weight: 600; font-size: 13px; padding: 11px 16px; transition: background .3s var(--ease), color .3s var(--ease); }
.seg button.is-active { background: var(--gold); color: var(--navy); }
.filters__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; font-size: 14px; color: var(--txt-60); gap: 12px; flex-wrap: wrap; }
.linkbtn { background: none; border: 0; color: var(--gold); font-weight: 600; padding: 0; }
.linkbtn:hover { color: var(--gold-light); }
@media (max-width: 1040px) { .filters { grid-template-columns: repeat(3, minmax(0, 1fr)); } .filters .fld--search { grid-column: 1 / -1; } .filters .seg { grid-column: 1 / -1; justify-self: center; } }
@media (max-width: 560px) { .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Grid + cards */
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 26px; }
@media (max-width: 1040px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; gap: 20px; } }
.card { position: relative; display: flex; flex-direction: column; background: var(--navy-700); border: 1px solid var(--bd); border-radius: var(--r); overflow: hidden; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.card:hover { transform: translateY(-4px); border-color: var(--bd-hover); box-shadow: var(--glow); }
.card.is-hidden { display: none; }
.card__media { position: relative; height: 250px; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,26,48,0) 55%, rgba(15,42,77,.96) 100%); pointer-events: none; }
.card__tl { position: absolute; top: 14px; left: 14px; z-index: 2; display: flex; gap: 6px; flex-wrap: wrap; max-width: 60%; }
.card__tr { position: absolute; top: 14px; right: 14px; z-index: 2; }
.card__loc { position: absolute; left: 14px; bottom: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #fff; }
.card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 17px; font-weight: 800; line-height: 1.3; color: #fff; }
.card__title a { color: #fff; } .card__title a:hover { color: var(--gold-light); }
.card__id { margin-top: 8px; font-family: var(--mono); font-size: 12px; color: var(--gold-light); background: rgba(212,175,55,.1); display: inline-block; padding: 4px 8px; border-radius: 6px; align-self: flex-start; }
.card__facts { display: grid; grid-template-columns: 1.15fr .75fr 1.1fr; gap: 10px; margin-top: 14px; }
.card__facts .v { font-size: 16px; white-space: nowrap; }
.card__facts .v small { display: block; font-size: 12px; color: var(--txt-60); font-weight: 500; }
.card__facts .v.wrap { white-space: normal; font-size: 13px; line-height: 1.3; }
.card__price { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--bd-soft); }
.card__price .k { font-size: 10px; }
.strike { font-size: 15px; color: var(--txt-45); text-decoration: line-through; margin-top: 2px; }
.price { font-family: var(--mont); font-size: 30px; font-weight: 900; color: var(--yellow); line-height: 1.1; white-space: nowrap; }
.card__cta { display: flex; gap: 10px; margin-top: 16px; }
.card__cta .btn { flex: 1; padding: 11px 10px; font-size: 14px; }
.card__cmp { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 12px; color: var(--txt-60); cursor: pointer; }
.card__cmp input { accent-color: var(--gold); width: 15px; height: 15px; }
.card__warn { margin-top: 12px; font-size: 12px; color: var(--warn); display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; }
.card__warn svg { flex: none; margin-top: 2px; }
.card.is-sold .card__media img, .card.is-reserved .card__media img { filter: grayscale(.85) brightness(.75); }
.card.is-sold .price, .card.is-sold .card__title { color: var(--txt-45); text-decoration: line-through; }
.ribbon { position: absolute; top: 24px; right: -48px; width: 210px; transform: rotate(38deg); z-index: 3; background: var(--red); color: #fff; text-align: center; font-family: var(--mont); font-weight: 800; font-size: 13px; letter-spacing: .18em; padding: 8px 0; box-shadow: 0 6px 18px rgba(0,0,0,.35); text-transform: uppercase; }
.ribbon--gold { background: var(--gold); color: var(--navy); }
.empty { text-align: center; color: var(--txt-60); padding: 60px 20px; display: none; }
.empty.is-visible { display: block; }

/* Map */
.map { display: none; height: 620px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--bd-hover); margin-top: 26px; background: var(--navy-900); }
.map.is-visible { display: block; }
.map .leaflet-popup-content-wrapper { background: var(--navy-700); color: #fff; border: 1px solid var(--bd-hover); border-radius: 12px; }
.map .leaflet-popup-tip { background: var(--navy-700); }
.map .leaflet-popup-content { margin: 12px 14px; font-family: var(--inter); font-size: 13px; }
.map .leaflet-popup-content .price { font-size: 20px; }
.map .leaflet-container a.leaflet-popup-close-button { color: var(--gold); }
.map .leaflet-control-attribution { background: rgba(8,26,48,.7); color: var(--txt-60); font-size: 10px; }
.map .leaflet-control-attribution a { color: var(--gold); }
.map .leaflet-bar a { background: var(--navy-700); color: var(--gold); border-color: rgba(212,175,55,.4); }
.map--lot { display: block; height: 420px; margin-top: 0; }
.lotmark { background: var(--gold); color: var(--navy); font-family: var(--mont); font-weight: 800; font-size: 11px; padding: 3px 7px; border-radius: 6px; white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,.4); }

/* Why */
.why { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: start; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; gap: 36px; } }
.why h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-top: 12px; }
.why .lead { margin-top: 18px; font-size: 17px; line-height: 1.75; color: var(--txt-75); }
.why .lead + .lead { margin-top: 14px; }
.legend { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.tl { display: flex; flex-direction: column; gap: 18px; border-left: 2px solid rgba(212,175,55,.25); padding-left: 28px; }
.tl__item { background: var(--navy-700); border: 1px solid var(--bd); border-radius: var(--r); padding: 20px 22px; position: relative; }
.tl__item::before { content: ""; position: absolute; left: -35px; top: 26px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--navy); }
.tl__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.tl__item h3 { font-size: 18px; font-weight: 800; margin-top: 8px; }
.tl__item p { font-size: 14px; line-height: 1.6; color: var(--txt-75); margin-top: 6px; }
.tl__src { font-size: 12px; margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; }
.adv { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 56px; }
@media (max-width: 900px) { .adv { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .adv { grid-template-columns: 1fr; } }
.adv__item { background: var(--navy-700); border: 1px solid var(--bd); border-radius: var(--r); padding: 24px; position: relative; overflow: hidden; }
.adv__item::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(.3); transform-origin: left; transition: transform .4s var(--ease); }
.adv__item:hover::before { transform: scaleX(1); }
.adv__item h3 { font-size: 16px; font-weight: 800; }
.adv__item p { margin-top: 8px; font-size: 14px; color: var(--txt-75); line-height: 1.6; }
.dist { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 32px; margin-top: 24px; }
@media (max-width: 720px) { .dist { grid-template-columns: 1fr; } }
.dist__row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--bd-soft); font-size: 14px; }
.dist__row span:last-child { font-weight: 700; white-space: nowrap; }
.note { font-size: 12px; color: var(--txt-45); line-height: 1.55; margin-top: 18px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1040px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--navy-700); border: 1px solid var(--bd); border-radius: var(--r); padding: 22px; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.step:hover { transform: translateY(-4px); border-color: var(--bd-hover); }
.step__n { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); font-family: var(--mont); font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 16px; font-weight: 800; margin-top: 14px; }
.step p { font-size: 13px; line-height: 1.6; color: var(--txt-75); margin-top: 6px; }

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--navy-700); border: 1px solid var(--bd); border-radius: 14px; padding: 0 22px; transition: border-color .3s var(--ease); }
.faq details[open] { border-color: var(--bd-hover); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-family: var(--mont); font-weight: 700; font-size: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 22px; font-weight: 400; flex: none; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 0 20px; color: var(--txt-75); font-size: 15px; line-height: 1.7; }

/* About / contact */
.about { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; }
.about p { margin-top: 16px; color: var(--txt-75); line-height: 1.75; }
.about__meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.about__meta .v { font-size: 15px; }
.panel { background: var(--navy-700); border: 1px solid var(--bd); border-radius: var(--r); padding: 26px 28px; }
.panel h3 { font-size: 20px; font-weight: 800; }
.panel .sub { color: var(--txt-60); font-size: 14px; margin-top: 6px; }
.form { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.form input, .form textarea, .form select { width: 100%; background: var(--navy); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 12px 14px; font: inherit; font-size: 14px; color: #fff; }
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,.4); }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.15); }
.form textarea { min-height: 96px; resize: vertical; }
.form .hp { position: absolute; left: -9999px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.form small { color: var(--txt-45); font-size: 12px; text-align: center; }

/* Footer */
.ftr { background: var(--navy); border-top: 1px solid rgba(212,175,55,.2); padding: 56px 0 28px; color: rgba(255,255,255,.65); }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .ftr__grid { grid-template-columns: 1fr; gap: 28px; } }
.ftr h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); position: relative; padding-bottom: 8px; margin-bottom: 12px; }
.ftr h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--gold); }
.ftr p { font-size: 13px; line-height: 1.7; }
.ftr p + p { margin-top: 8px; }
.ftr a { color: rgba(255,255,255,.75); } .ftr a:hover { color: var(--gold); }
.ftr__links { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.ftr__bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--bd); font-size: 12px; color: var(--txt-45); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* Floating */
.wa-fab { position: fixed; right: 24px; bottom: 24px; z-index: 55; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); border: 2px solid rgba(212,175,55,.35); box-shadow: 0 4px 16px rgba(37,211,102,.45); display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease); }
.wa-fab:hover { transform: scale(1.08); }
.totop { position: fixed; right: 96px; bottom: 30px; z-index: 55; width: 44px; height: 44px; border-radius: 50%; background: var(--navy-700); border: 1px solid rgba(212,175,55,.5); color: var(--gold); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), background .3s var(--ease); }
.totop.is-visible { opacity: 1; pointer-events: auto; }
.totop:hover { background: var(--gold); color: var(--navy); }

/* Compare */
.cmpbar { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 120%); z-index: 56; display: flex; align-items: center; gap: 14px; background: var(--navy-700); border: 1px solid var(--bd-hover); border-radius: 999px; padding: 10px 12px 10px 20px; box-shadow: 0 10px 40px rgba(0,0,0,.45); transition: transform .35s var(--ease); font-size: 14px; }
.cmpbar.is-visible { transform: translate(-50%, 0); }
.drawer { position: fixed; inset: 0; z-index: 70; display: none; }
.drawer.is-open { display: block; }
.drawer__bg { position: absolute; inset: 0; background: rgba(8,26,48,.75); backdrop-filter: blur(4px); }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(960px, 100%); background: var(--navy); border-left: 1px solid var(--bd-hover); overflow: auto; padding: 28px; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 20px; }
.drawer__head h3 { font-size: 22px; font-weight: 800; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cmp-table th, .cmp-table td { padding: 10px 12px; border-bottom: 1px solid var(--bd-soft); text-align: left; vertical-align: top; }
.cmp-table th { color: var(--txt-60); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; width: 160px; }
.cmp-table td .price { font-size: 22px; }
.cmp-table img { width: 100%; height: 110px; object-fit: cover; border-radius: 10px; }
.cmp-table .rm { font-size: 12px; }

/* Lot page */
.crumbs { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--txt-60); padding-top: 104px; flex-wrap: wrap; }
.crumbs a { color: var(--txt-60); } .crumbs a:hover { color: var(--gold); }
.lot { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: start; padding: 20px 0 80px; }
@media (max-width: 1000px) { .lot { grid-template-columns: 1fr; } }
.lot__main { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.lot__aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 92px; }
@media (max-width: 1000px) { .lot__aside { position: static; } }
.lot__title { font-size: clamp(1.8rem, 3.2vw, 2.75rem); font-weight: 900; margin-top: 14px; }
.lot__sub { margin-top: 10px; color: var(--txt-60); font-size: 16px; }
.gallery { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(212,175,55,.2); background: var(--navy-900); }
.gallery img { width: 100%; height: 520px; object-fit: cover; }
@media (max-width: 640px) { .gallery img { height: 300px; } }
.gallery__tabs { position: absolute; right: 16px; bottom: 16px; display: flex; gap: 8px; z-index: 5; }
.gallery__tabs button { border: 1px solid rgba(212,175,55,.5); background: rgba(8,26,48,.85); color: var(--gold-light); border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 600; }
.gallery__tabs button.is-active { background: var(--gold); color: var(--navy); }
.gallery__note { position: absolute; left: 16px; bottom: 16px; z-index: 5; font-size: 11px; color: var(--txt-75); background: rgba(8,26,48,.75); padding: 6px 10px; border-radius: 8px; max-width: 46%; line-height: 1.35; }
@media (max-width: 640px) { .gallery__note { display: none; } }
.gallery .map--lot { display: none; height: 520px; border: 0; border-radius: 0; }
.gallery.is-map .map--lot { display: block; }
.gallery.is-map > img { display: none; }
@media (max-width: 640px) { .gallery .map--lot { height: 300px; } }
.rows { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; margin-top: 10px; }
@media (max-width: 640px) { .rows { grid-template-columns: 1fr; } }
.row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14px; }
.row .l { color: var(--txt-60); flex: none; max-width: 48%; }
.row .r { font-weight: 600; text-align: right; overflow-wrap: anywhere; }
.row .r small { color: var(--txt-60); font-weight: 500; }
.panel__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.panel__top small { font-size: 12px; color: var(--txt-45); }
.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
@media (max-width: 640px) { .checks { grid-template-columns: 1fr; } }
.check { display: flex; gap: 12px; border-radius: 12px; padding: 14px; font-size: 13px; line-height: 1.55; }
.check svg { flex: none; margin-top: 1px; }
.check--ok { background: var(--ok-bg); border: 1px solid var(--ok-bd); }
.check--warn { background: var(--warn-bg); border: 1px solid var(--warn-bd); }
.check b { display: block; margin-bottom: 2px; }
.check span { color: var(--txt-75); }
.pricecard { border-color: rgba(212,175,55,.35); box-shadow: 0 10px 40px rgba(0,0,0,.35); }
.pricecard .price { font-size: 44px; }
.pricecard .strike { font-size: 18px; }
.pricecard__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; font-size: 13px; color: var(--txt-75); }
.pricecard__grid b { color: #fff; display: block; }
.pricecard .btns { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.pricecard .fine { margin-top: 14px; font-size: 11px; color: var(--txt-45); line-height: 1.5; }
.parcels-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.parcels-list a { font-family: var(--mono); font-size: 13px; display: flex; justify-content: space-between; gap: 10px; padding: 8px 10px; background: rgba(212,175,55,.08); border-radius: 8px; color: var(--gold-light); }
.similar { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 18px; }
@media (max-width: 900px) { .similar { grid-template-columns: 1fr; } }
.share { display: flex; gap: 10px; flex-wrap: wrap; }
.share .k { width: 100%; }

/* Admin */
.admin { padding: 120px 0 80px; max-width: 900px; margin: 0 auto; }
.admin pre { background: var(--navy-900); border: 1px solid var(--bd); border-radius: 12px; padding: 16px; font-family: var(--mono); font-size: 12px; overflow: auto; color: var(--gold-light); max-height: 420px; }
.admin .status { font-size: 13px; color: var(--txt-60); margin-top: 8px; min-height: 20px; }

/* Reveal + keyframes */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__shimmer, .scroll-ind { animation: none; } }

/* Avisos legais do rodapé — presentes, discretos */
.ftr__legal { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.06); }
.ftr__legal p { font-size: 10.5px; line-height: 1.5; color: rgba(255,255,255,.34); margin: 0 0 6px; max-width: 1000px; }
.ftr__legal strong { color: rgba(255,255,255,.46); font-weight: 600; }
