@font-face {
  font-family: "Akrobat";
  src: url("/wp-content/themes/lucrar-hello-child//assets/fonts/Akrobat-Bold.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("/wp-content/themes/lucrar-hello-child//assets/fonts/Akrobat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("/wp-content/themes/lucrar-hello-child//assets/fonts/Akrobat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
}
html,
body {
  margin: 0;
  background: #0e1116;
}

/* ===== layout principal + variáveis ===== */
.lcr-project {
  --fg: #fff;
  --accent: #efd7a0;

  --padY: clamp(28px, 6vw, 72px);
  --after-gap: 0;

  --title-size: 60px;

  --loc-font: 40px;
  --loc-ico: clamp(22px, 4.2vw, 36px);

  --note-size: clamp(1rem, 1.5vw, 2rem);

  /* ===== legenda “Primeiro investimento …” ===== */
  --cap-size: 16px;

  --stage-h: 18vw;
  --stage-max-h: 100vh;
  --b-width: 35vw;
  --b-bottom: 3vw;
  --b-x: 50%;
  --stage-padB: 0;

  /* posições base (desktop) */
  --loc-x: 45%;
  --loc-y: 10%;
  --note-x: 52%;
  --note-y: 10%;
  --arrow-x: 51%;
  --arrow-y: 24%;
  --arrow-w: 5%;
  --arrow-rot: -5deg;

  /* Legenda = largura do prédio, sem quebra, âncora à esquerda do prédio */
  --cap-y: 80%;
  --cap-x: 35%;
  --cap-dx: 0px;
  --cap-dy: 0px;
  --cap-rot: -7deg;
  --cap-w-scale: 1;

  /* “do zero” */
  --fs-x: 50%;
  --fs-y: 70%;
  --fs-size: clamp(2rem, 5vw, 4rem);
  --fs-icon: clamp(100px, 7vw, 120px);
  --fs-gap: clamp(10px, 2vw, 16px);
  --title-text-nudge: 0.2em;
  --title-ico-nudge: 0.2em;
  --fs-text-nudge: 0.45em;
  --fs-icon-nudge: 0.2em;

  /* decor */
  --leaf-left: 0%;
  --leaf-top: 0%;
  --leaf-w: 3vw;
  --leaf-opacity: 1;
  --arc-right: 0%;
  --arc-bottom: 0%;
  --arc-w: 6vw;
  --arc-opacity: 1;

  --card-x: 60%;
  --card-y: 5%;
  --card-w: 35vw;
  --card-scale: 0.95;

  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: var(--padY) 0 var(--after-gap);
  color: var(--fg);
  position: relative;
  z-index: 10;
  overflow-x: hidden;
  font-family: "Akrobat", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
}

.lcr-project * {
  box-sizing: border-box;
  font-family: inherit;
}
.lcr-project img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
  pointer-events: none;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 14px);
  margin: 0 0 clamp(12px, 3.5vw, 50px);
}
.title .ico {
  width: clamp(42px, 7vw, 64px);
  transform: translateY(var(--title-ico-nudge));
}
.title h2 {
  font-size: var(--title-size);
  line-height: 1.02;
  margin: 0;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.3px;
  transform: translateY(var(--title-text-nudge));
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.stage {
  position: relative;
  min-height: var(--stage-h);
  max-height: var(--stage-max-h);
  padding-bottom: var(--stage-padB);
  overflow: hidden;
}
.pos {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%);
}

.loc {
  --x: var(--loc-x);
  --y: var(--loc-y);
  display: flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 800;
  font-size: var(--loc-font);
  color: #fff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.loc img {
  width: var(--loc-ico);
}

.bg-leaf {
  position: absolute;
  left: var(--leaf-left);
  top: var(--leaf-top);
  width: var(--leaf-w);
  opacity: var(--leaf-opacity);
  z-index: 1;
}
.bg-arc {
  position: absolute;
  right: var(--arc-right);
  bottom: var(--arc-bottom);
  width: var(--arc-w);
  opacity: var(--arc-opacity);
  z-index: 0;
}

.building {
  position: absolute;
  left: var(--b-x);
  bottom: var(--b-bottom);
  width: var(--b-width);
  max-width: 600px !important;
  transform: translateX(-50%);
  z-index: 5;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}

.note {
  --x: var(--note-x);
  --y: var(--note-y);
  z-index: 11;
  font-size: var(--note-size);
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  line-height: 1.1;
}

.arrow {
  --x: var(--arrow-x);
  --y: var(--arrow-y);
  width: var(--arrow-w);
  max-width: 160px !important;
  transform: translate(-50%, -50%) rotate(var(--arrow-rot));
}

/* Legenda: largura do prédio, sem quebra */
.caption-real {
  --x: var(--cap-x);
  --y: var(--cap-y);
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(var(--b-width) * var(--cap-w-scale));
  max-width: calc(var(--b-width) * var(--cap-w-scale));
  text-align: center;
  transform: translate(var(--cap-dx), calc(-50% + var(--cap-dy)))
    rotate(var(--cap-rot));
  z-index: 11;
  letter-spacing: 0.6px;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  font-size: var(--cap-size);
}

/* “do zero” */
.from.pos {
  --x: var(--fs-x);
  --y: var(--fs-y);
  display: flex;
  align-items: center;
  gap: var(--fs-gap);
  z-index: 11;
  color: var(--accent);
  font-weight: 800;
  font-size: var(--fs-size);
  white-space: nowrap;
}
.from.pos img {
  width: var(--fs-icon);
  height: auto;
  transform: translateY(var(--fs-icon-nudge));
}
.from.pos span {
  line-height: 1;
  display: inline-block;
  transform: translateY(var(--fs-text-nudge));
}

/* ====== CARD ====== */
.sr-only {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.status-card-real {
  position: absolute;
  left: var(--card-x);
  top: var(--card-y);
  width: var(--card-w);
  max-width: 450px;
  background: rgba(0, 0, 0, 0.34);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: clamp(12px, 1.4vw, 18px);
  -webkit-backdrop-filter: saturate(120%) blur(0.6px);
  backdrop-filter: saturate(120%) blur(0.6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  color: #fff;
  z-index: 4;
  opacity: 1 !important;
  display: block !important;
  pointer-events: auto;
}
.status-card-real.is-visible {
  opacity: 1;
}
.status-card-real::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background-image: url("/wp-content/themes/lucrar-hello-child/real-estate/assets/Layer23.png");
  background-size: 140% 150%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.62;
  filter: saturate(130%) brightness(1.06);
  pointer-events: none;
  z-index: 0;
}
.status-card-real::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}
.status-card-real * {
  position: relative;
  z-index: 1;
}
.status-card-real h4 {
  display: none;
}
.status-card-real ul {
  list-style: disc;
  margin: 0;
  padding-left: 1.15em;
  display: grid;
  gap: clamp(0.3em, 0.55vw, 0.45em);
}
.status-card-real li {
  font-size: clamp(0.375rem, 1vw, 1.25rem);
  line-height: 1.25;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.status-card-real li b {
  font-weight: 800;
}
.status-card-real li b::after {
  content: " = ";
  opacity: 0.95;
  margin: 0 0.25em;
  font-weight: 800;
}
.status-card-real .ok {
  color: #6df551;
  font-weight: 800;
}
.status-card-real .pending {
  color: rgba(255, 255, 255, 0.72);
}

.lcr-project [style*="outline"] {
  outline: none !important;
}

@media (max-width: 3900px) {
  .lcr-project {
    --leaf-w: 4vw;
    --arc-w: 8vw;

    --stage-h: 22vw;
    --b-bottom: 3vw;
    --cap-y: 83%;
    --cap-x: 35%;

    --note-y: 14%;
    --note-x: 54%;
    --arrow-y: 32%;
  }
}

@media (max-width: 3300px) {
  .lcr-project {
    --stage-h: 25vw;
    --b-bottom: 5vw;
    --cap-y: 77%;

    --card-x: 60%;

    --note-x: 52%;
    --note-y: 13%;
    --arrow-y: 24%;
    --loc-x: 43%;
  }
}

@media (max-width: 3000px) {
  .lcr-project {
    --leaf-w: 5vw;
    --arc-w: 12vw;

    --stage-h: 28vw;
    --b-bottom: 5vw;
    --cap-y: 80%;
    --cap-x: 36%;
  }
}

@media (max-width: 2600px) {
  .lcr-project {
    --stage-h: 35vw;
    --b-bottom: 5vw;
    --cap-y: 83%;

    --card-y: 8%;
    --card-x: 62%;

    --note-y: 20%;
    --arrow-y: 33%;
    --loc-x: 42%;
  }
}

@media (max-width: 2200px) {
  .lcr-project {
    --stage-h: 36vw;
    --b-bottom: 5vw;
    --cap-y: 83%;

    --note-y: 16%;
    --arrow-y: 26%;
    --loc-x: 40%;
  }
}

@media (max-width: 1900px) {
  .lcr-project {
    --stage-h: 46vw;
    --b-bottom: 8vw;
    --cap-y: 80%;

    --card-w: 24vw;

    --note-y: 20%;
    --arrow-y: 29%;
  }
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  .lcr-project {
    --title-size: 44px;
    --loc-font: 36px;
    --note-size: clamp(13px, 4.5vw, 18px);

    --cap-size: 14px;
    --cap-x: 38%;
    --cap-y: 78%;
    --cap-dx: 0px;
    --cap-dy: 0px;
    --cap-w-scale: 0.8;

    --stage-h: 64vw;
    --stage-max-h: 90vh;
    --b-width: 45vw;
    --b-bottom: 12vw;
    --stage-padB: 0;

    --loc-x: 36%;
    --loc-y: 10%;
    --note-x: 62%;
    --note-y: 24%;
    --arrow-x: 58%;
    --arrow-y: 32%;
    --arrow-w: 8vw;
    --arrow-rot: -10deg;

    --fs-x: 50%;
    --fs-y: 80%;
    --leaf-left: 0%;
    --leaf-w: 10vw;
    --arc-right: -25%;
    --arc-bottom: -2%;
    --arc-w: 32vw;

    --card-x: 64%;
    --card-y: 4%;
    --card-w: 25vw;
    --card-scale: 0.95;
  }
}

@media (max-width: 850px) {
  .lcr-project {
    --note-size: clamp(13px, 4.5vw, 18px);

    --cap-x: 38%;
    --cap-y: 82%;
    --cap-dx: 0px;
    --cap-dy: 0px;
    --cap-w-scale: 0.8;

    --stage-max-h: 90vh;
    --b-width: 45vw;
    --b-bottom: 11vw;
    --stage-padB: 0;

    --loc-x: 36%;
    --loc-y: 14%;
    --note-x: 66%;
    --note-y: 24%;
    --arrow-x: 60%;
    --arrow-y: 32%;
    --arrow-w: 8vw;
    --arrow-rot: 0deg;

    --fs-x: 50%;
    --fs-y: 80%;
    --leaf-left: 0%;
    --leaf-w: 10vw;
    --arc-right: -20%;
    --arc-bottom: -5%;
    --arc-w: 28vw;

    --card-x: 60%;
    --card-y: 0%;
    --card-scale: 0.95;
  }
}

/* Tablet small (≤ 768px) */
@media (max-width: 768px) {
  .lcr-project {
    --title-size: 45px;
    --loc-font: 30px;
    --cap-size: 13px;
  }
}

/* ===== Mobile ≤640 ===== */
@media (max-width: 640px) {
  .lcr-project {
    --title-size: 40px;
    --loc-font: 26px;

    --cap-size: 11px;
    --cap-x: calc(var(--b-x) - (var(--b-width) / 2));
    --cap-y: 85%;
    --cap-dx: 58px;
    --cap-dy: 0px;
    --cap-w-scale: 0.8;

    --fs-size: clamp(1rem, 4vw, 2rem);
    --fs-icon: clamp(38px, 10vw, 60px);

    --stage-h: 80vw;
    --stage-max-h: 80vh;
    --b-width: 45vw;
    --b-bottom: 12vw;
    --stage-padB: 0;

    --loc-x: 28%;
    --loc-y: 22%;
    --note-size: clamp(0.75rem, 3vw, 1rem);
    --note-x: 64%;
    --note-y: 34%;
    --arrow-x: 56%;
    --arrow-y: 44%;
    --arrow-w: 10vw;
    --arrow-rot: 0deg;

    --fs-x: 45%;
    --fs-y: 88%;

    --leaf-left: 0%;
    --leaf-top: 25%;
    --leaf-w: 10vw;
    --arc-right: -25%;
    --arc-bottom: -15%;
    --arc-w: 35vw;

    --card-x: 50%;
    --card-y: 2%;
    --card-w: 30vw;
    --card-scale: 0.5;
  }

  .building {
    left: var(--b-x);
    bottom: var(--b-bottom);
    transform: translateX(-50%);
    margin: 0;
  }

  .status-card-real li {
    white-space: unset;
  }

  .status-card-real {
    padding: 8px 0px;
  }
}

@media (max-width: 520px) {
  .lcr-project {
    --card-w: 38vw;
  }
}

/* Mobile small (≤ 480px) */
@media (max-width: 480px) {
  .lcr-project {
    --title-size: 35px;
    --loc-font: 22px;
    --cap-size: 9px;
  }
}

/* ===========================
   LCR Real-Estate – OVERRIDES
   (bloco único unificado)
   =========================== */

#real-estate-3d .title h2 {
  font-weight: 900;
  letter-spacing: 0.2px;
}

#real-estate-3d .stage {
  overflow: hidden;
}

/* Presets folha + spark */
#real-estate-3d {
  --leaf-left: -6%;
  --leaf-opacity: 0.22;

  --spark-left: -14%;
  --spark-top: 2%;
  --spark-w: 44vw;
  --spark-opacity: 0.45;
}

#real-estate-3d .bg-leaf {
  position: absolute;
  left: var(--leaf-left);
  top: var(--leaf-top);
  width: var(--leaf-w);
  height: auto;
  opacity: var(--leaf-opacity);
  z-index: 1;
  pointer-events: none;
  filter: saturate(120%) brightness(1.05);
}

#real-estate-3d .bg-spark {
  position: absolute;
  left: var(--spark-left);
  top: var(--spark-top);
  width: var(--spark-w);
  height: auto;
  opacity: var(--spark-opacity);
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}

#real-estate-3d .status-card-real::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: url("/wp-content/themes/lucrar-hello-child/real-estate/assets/Layer23.png") center/cover no-repeat,
    radial-gradient(
      120% 120% at 100% 0%,
      rgba(239, 215, 160, 0.15),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%),
    rgba(10, 14, 18, 0.45);
}

@media (max-width: 1024px) {
  #real-estate-3d {
    --leaf-w: 26vw;
    --spark-left: -18%;
    --spark-top: 8%;
    --spark-w: 38vw;
  }
}
@media (max-width: 640px) {
  #real-estate-3d {
    --leaf-left: -10%;
    --leaf-top: 22%;
    --leaf-w: 28vw;
    --spark-left: -28%;
    --spark-top: 22%;
    --spark-w: 32vw;
  }
}

/* Folha (preset contido) */
#real-estate-3d {
  --leaf-left: 0%;
  --leaf-opacity: 0.18;
}
#real-estate-3d .bg-leaf {
  position: absolute;
  left: var(--leaf-left);
  top: var(--leaf-top);
  width: var(--leaf-w);
  height: auto;
  max-width: 150px;
  opacity: var(--leaf-opacity);
  z-index: 1;
  pointer-events: none;
}

#real-estate-3d .stage {
  overflow: hidden;
}

/* Fonts Akrobat garantir */
@font-face {
  font-family: "Akrobat";
  src: url("/wp-content/themes/lucrar-hello-child//assets/fonts/Akrobat-Bold.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("/wp-content/themes/lucrar-hello-child//assets/fonts/Akrobat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("/wp-content/themes/lucrar-hello-child//assets/fonts/Akrobat-Black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
#real-estate-3d .title h2 {
  font-family: "Akrobat", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Segoe Print */
@font-face {
  font-family: "Segoe Print Web";
  src: url("/wp-content/themes/lucrar-hello-child//assets/fonts/segoepr.woff2") format("woff2"),
    url("/wp-content/themes/lucrar-hello-child//assets/fonts/segoepr.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
#real-estate-3d .re-hand {
  font-family: "Segoe Print Web", "Segoe Print", cursive !important;
  font-weight: 400;
  letter-spacing: 0.4px;
  fill: var(--accent);
}
#real-estate-3d .note-curve.pos {
  --x: var(--note-x);
  --y: var(--note-y);
  width: clamp(200px, 17vw, 300px);
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
}
#real-estate-3d .note-curve text {
  paint-order: stroke fill;
  stroke: rgba(0, 0, 0, 0.35);
  stroke-width: 1.2px;
}

/* Leaf + Glow central */
#real-estate-3d .bg-leaf,
#real-estate-3d .bg-spark {
  display: none !important;
}
#real-estate-3d .stage::before,
#real-estate-3d .stage::after {
  content: none !important;
}
html,
body,
.lcr-project {
  overflow-x: clip;
}
#real-estate-3d {
  position: relative;
  z-index: 2;
  --glow-x: 0%;
  --glow-y: 66%;
  --leaf-x: 0%;
  --leaf-y: 60%;
  --note-max: 500px;
}
#real-estate-3d .stage {
  position: relative;
  overflow: visible !important;
  isolation: isolate;
  contain: paint;
}
#real-estate-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: no-repeat url("/wp-content/themes/lucrar-hello-child/real-estate/assets/Layer23.png");
  background-size: clamp(280px, 30vw, 520px) auto;
  background-position: var(--glow-x) var(--glow-y);
  opacity: 0.8;
  mix-blend-mode: screen;
  filter: saturate(120%) brightness(1.05);
}
#real-estate-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: no-repeat url("/wp-content/themes/lucrar-hello-child/real-estate/assets/image005copy.png");
  background-size: clamp(80px, 12vw, 150px) auto;
  background-position: var(--leaf-x) var(--leaf-y);
  opacity: 0.4;
  filter: saturate(115%) brightness(1.03);
}
@media (max-width: 1024px) {
  #real-estate-3d {
    --glow-y: 62%;
    --leaf-y: 58%;
  }
}
@media (max-width: 640px) {
  #real-estate-3d {
    --glow-y: 58%;
    --leaf-y: 54%;
  }
}
@media (max-width: 500px) {
  #real-estate-3d {
    --note-max: 190px;
  }
  #real-estate-3d .note-curve.pos {
    width: min(var(--note-max), 60vw);
    max-width: var(--note-max);
  }
  #real-estate-3d .note-curve .re-hand {
    font-size: 22px !important;
  }
}

/* Leaf responsivo (.bg-leaf) */
#real-estate-3d,
#real-estate-3d-pt,
#real-estate-3d .stage,
#real-estate-3d-pt .stage {
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}
#real-estate-3d::before,
#real-estate-3d::after,
#real-estate-3d-pt::before,
#real-estate-3d-pt::after {
  content: none !important;
}

.lcr-project {
  --fs-size: var(--title-size) !important;
}
.lcr-project .title h2,
.lcr-project .from.pos span {
  font-family: "Akrobat", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px;
  line-height: 1.02;
  color: var(--accent);
  font-size: var(--title-size) !important;
}

#real-estate-3d .bg-leaf,
#real-estate-3d-pt .bg-leaf {
  position: absolute !important;
  display: block !important;
  pointer-events: none !important;
  max-width: 150px;
  filter: none !important;
  mix-blend-mode: normal !important;
  z-index: 1 !important;
}

#real-estate-3d,
#real-estate-3d-pt {
  --leaf-left: 0%;
  --leaf-opacity: 0.68;
}
#real-estate-3d .bg-leaf,
#real-estate-3d-pt .bg-leaf {
  width: var(--leaf-w) !important;
  left: var(--leaf-left) !important;
  top: var(--leaf-top) !important;
  opacity: var(--leaf-opacity) !important;
}

@media (max-width: 2400px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-w: 6vw;
  }
}
@media (max-width: 1200px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-w: 5vw;
  }
}
@media (max-width: 1024px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-w: 12vw;
  }
}
@media (max-width: 900px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-w: 12vw;
    --leaf-top: 2%;
  }
}
@media (max-width: 780px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-w: 11vw;
    --leaf-top: 4%;
  }
}
@media (max-width: 640px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-w: 12vw;
    --leaf-top: 12%;
  }
}
@media (max-width: 560px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-w: 12vw;
    --leaf-top: 15%;
  }
}
@media (max-width: 480px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-w: 10vw;
    --leaf-top: 15%;
  }
}

/* Anti-corte wrappers */
#real-estate-3d,
#real-estate-3d-pt,
#real-estate-3d .stage,
#real-estate-3d-pt .stage,
#real-estate-3d .elementor-container,
#real-estate-3d-pt .elementor-container,
#real-estate-3d .elementor-row,
#real-estate-3d-pt .elementor-row,
#real-estate-3d .elementor-column,
#real-estate-3d-pt .elementor-column,
#real-estate-3d .elementor-widget-wrap,
#real-estate-3d-pt .elementor-widget-wrap {
  overflow: visible !important;
}

/* Nudge vertical opcional para a folha */
#real-estate-3d,
#real-estate-3d-pt {
  --leaf-nudge-y: 0%;
}
#real-estate-3d .bg-leaf,
#real-estate-3d-pt .bg-leaf {
  transform: translateY(var(--leaf-nudge-y)) !important;
  will-change: transform;
}
@media (max-width: 2900px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-nudge-y: 3%;
  }
}
@media (max-width: 1100px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-nudge-y: 3%;
  }
}
@media (max-width: 980px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-nudge-y: 4.5%;
  }
}
@media (max-width: 900px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-nudge-y: 6%;
  }
}
@media (max-width: 780px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-nudge-y: 7%;
  }
}
@media (max-width: 640px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-nudge-y: 8.5%;
  }
}
@media (max-width: 560px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-nudge-y: 10%;
  }
}
@media (max-width: 480px) {
  #real-estate-3d,
  #real-estate-3d-pt {
    --leaf-nudge-y: 11%;
  }
}
