:root {
  --ink: #132b3d;
  --ink-2: #0d2132;
  --ink-3: #17364d;
  --orange: #ff5b14;
  --orange-2: #df4100;
  --sand: #f6f1eb;
  --sky: #eaf6fb;
  --text: #172331;
  --muted: #617081;
  --line: #e4e9ee;
  --white: #ffffff;
  --page-bg: #ffffff;
  --surface: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-link: #132b3d;
  --section-soft: linear-gradient(180deg, #fff7f1, #ffffff);
  --shadow: 0 18px 42px rgba(19, 43, 61, 0.14);
  --radius: 8px;
  --container: 1240px;
}

body[data-theme="dark"] {
  --text: #edf4f8;
  --muted: #b7c7d4;
  --line: rgba(255, 255, 255, 0.14);
  --page-bg: #0d2132;
  --surface: #132b3d;
  --sand: #10283c;
  --sky: #10283c;
  --nav-bg: rgba(13, 33, 50, 0.9);
  --nav-link: #ffffff;
  --section-soft: linear-gradient(180deg, #10283c, #0d2132);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

body[data-theme="dark"] .nav-wrap {
  border-color: rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .whatsapp-btn,
body[data-theme="dark"] .btn-outline,
body[data-theme="dark"] .theme-toggle,
body[data-theme="dark"] .menu-toggle {
  background: rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .service-icon {
  background: #ffffff;
}

body[data-theme="dark"] .property-finder {
  border-color: rgba(255, 255, 255, 0.16);
}

body[data-theme="dark"] .finder-options a,
body[data-theme="dark"] .interest-picker span {
  background: rgba(255, 255, 255, 0.04);
}

body[data-theme="dark"] .dark-band .plan-card {
  background: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page-bg);
  font-family: "Montserrat", "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 14px;
  background: transparent;
  border-bottom: 0;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.topbar.is-scrolled {
  background: transparent;
  box-shadow: none;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 5px 10px;
  border: 1px solid rgba(19, 43, 61, 0.1);
  border-radius: 999px;
  background: var(--nav-bg);
  box-shadow: 0 16px 42px rgba(19, 43, 61, 0.16);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.brand {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, var(--ink-3) 0%, var(--ink) 52%, var(--ink-2) 100%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.92),
    0 0 0 3px rgba(19, 43, 61, 0.18),
    0 8px 18px rgba(13, 33, 50, 0.28);
  overflow: visible;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.brand img {
  width: 64px;
  height: 64px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  background: transparent !important;
  background-color: transparent !important;
  filter: drop-shadow(0 5px 8px rgba(19, 43, 61, 0.24));
}

.topbar .brand,
body[data-theme="dark"] .topbar .brand,
body:not([data-theme="dark"]) .topbar .brand {
  background-color: #0d2132 !important;
  background-image: radial-gradient(circle at 34% 28%, #17364d 0%, #132b3d 52%, #0d2132 100%) !important;
}

.topbar .brand img,
body[data-theme="dark"] .topbar .brand img,
body:not([data-theme="dark"]) .topbar .brand img {
  background: transparent !important;
  background-color: transparent !important;
}

body:not([data-theme="dark"]) .brand {
  background: radial-gradient(circle at 34% 28%, var(--ink-3) 0%, var(--ink) 52%, var(--ink-2) 100%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.92),
    0 0 0 3px rgba(19, 43, 61, 0.18),
    0 8px 18px rgba(13, 33, 50, 0.28);
}

body:not([data-theme="dark"]) .brand img {
  filter:
    drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5))
    drop-shadow(0 4px 7px rgba(0, 0, 0, 0.22));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  color: var(--nav-link);
  font-size: 0.81rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
  opacity: 0.92;
  border-radius: 999px;
  padding: 10px 12px;
  transition: color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--orange);
  background: rgba(255, 91, 20, 0.1);
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.btn,
.whatsapp-btn,
.mini-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.whatsapp-btn:hover,
.mini-btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.whatsapp-btn:focus-visible,
.mini-btn:focus-visible,
.menu-toggle:focus-visible,
.social-link:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(255, 91, 20, 0.36);
  outline-offset: 3px;
}

.btn-primary,
.mini-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 12px 26px rgba(255, 91, 20, 0.28);
}

.btn-outline,
.whatsapp-btn {
  color: var(--nav-link);
  border-color: rgba(255, 91, 20, 0.78);
  background: rgba(255, 255, 255, 0.45);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

.btn svg,
.whatsapp-btn svg,
.floating-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--nav-link);
  background: rgba(255, 255, 255, 0.16);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: var(--nav-link);
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

body .theme-toggle,
body[data-theme="dark"] .theme-toggle {
  border: 0;
}

.theme-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.nav-open .menu-toggle span {
  background: transparent;
}

.nav-open .menu-toggle span::before {
  background: currentColor;
  transform: translateY(2px) rotate(45deg);
}

.nav-open .menu-toggle span::after {
  background: currentColor;
  transform: translateY(0) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 585px;
  display: flex;
  align-items: center;
  padding: 150px 0 96px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(19, 43, 61, 0.95) 0%, rgba(19, 43, 61, 0.64) 46%, rgba(19, 43, 61, 0.18) 100%),
    var(--page-img) center / cover no-repeat;
  border-bottom: 3px solid rgba(255, 91, 20, 0.55);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(19, 43, 61, 0.16) 36%, rgba(19, 43, 61, 0.9) 100%),
    linear-gradient(90deg, rgba(19, 43, 61, 0.54), rgba(19, 43, 61, 0.08));
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.estate-hero {
  min-height: 720px;
  align-items: flex-end;
  padding-bottom: 58px;
  background:
    linear-gradient(180deg, rgba(19, 43, 61, 0.3) 0%, rgba(19, 43, 61, 0.15) 38%, rgba(19, 43, 61, 0.92) 100%),
    var(--page-img) center / cover no-repeat;
}

.estate-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 30px;
  align-items: end;
}

.hero-copy {
  max-width: 640px;
}

.estate-hero .hero-copy {
  max-width: 760px;
}

.estate-hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.property-finder {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  animation: cardFloat 5s ease-in-out infinite;
}

.finder-label {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.finder-group {
  display: grid;
  gap: 10px;
}

.finder-group strong {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.finder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.finder-options a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--text);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.finder-options a:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  color: var(--orange);
}

.finder-submit {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.property-finder > a:not(.finder-submit) {
  display: grid;
  gap: 4px;
  padding: 15px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 7px;
  color: var(--text);
  background: var(--surface);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.property-finder > a:not(.finder-submit):hover {
  transform: translateX(4px);
  border-color: rgba(255, 91, 20, 0.55);
}

.property-finder > a:not(.finder-submit) strong {
  font-size: 0.98rem;
  font-weight: 950;
}

.property-finder small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.1rem);
  line-height: 1.02;
  font-weight: 950;
}

h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  font-weight: 950;
}

h1 span,
h2 span {
  color: var(--orange);
}

.hero p,
.page-hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.proof-strip {
  color: var(--white);
  background: var(--ink);
}

.market-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.market-card {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 24px;
  border: 1px solid rgba(255, 91, 20, 0.24);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.market-card:hover {
  transform: perspective(900px) rotateX(4deg) translateY(-6px);
}

.market-card strong {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 950;
}

.market-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.showcase-section {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  background:
    linear-gradient(180deg, rgba(255, 91, 20, 0.08), transparent 34%),
    var(--page-bg);
}

.showcase-section::before {
  content: "AVENIDA IMOVEIS";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 0;
  color: rgba(255, 91, 20, 0.06);
  font-size: clamp(3.4rem, 12vw, 10rem);
  font-weight: 950;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.showcase-section > .container {
  position: relative;
  z-index: 1;
}

.motion-divider {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  height: 28px;
  background: var(--page-bg);
}

.motion-divider span {
  display: block;
  transform: skewX(-24deg) translateX(-16px);
  animation: dividerSlide 6s ease-in-out infinite alternate;
}

.motion-divider span:nth-child(1) {
  background: var(--orange);
}

.motion-divider span:nth-child(2) {
  background: var(--ink);
  animation-delay: 0.4s;
}

.motion-divider span:nth-child(3) {
  background: #cfd6dc;
  animation-delay: 0.8s;
}

.diagonal-divider {
  height: 72px;
  background: linear-gradient(135deg, transparent 0 48%, var(--sand) 49% 100%);
}

@keyframes dividerSlide {
  from {
    transform: skewX(-24deg) translateX(-24px);
  }
  to {
    transform: skewX(-24deg) translateX(24px);
  }
}

.stage-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -18px 0 34px;
}

.stage-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--text);
  background: var(--surface);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.stage-tabs button:hover,
.stage-tabs button.active {
  transform: translateY(-2px);
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.property-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.property-card {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.28s ease, opacity 0.24s ease;
  transform-style: preserve-3d;
}

.property-card.is-hidden {
  display: none;
}

.property-card:hover {
  transform: perspective(1100px) rotateX(3deg) rotateY(-3deg) translateY(-8px);
}

.property-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(19, 43, 61, 0.04), rgba(19, 43, 61, 0.88));
}

.property-card:hover img {
  transform: scale(1.06);
}

.property-card div {
  width: 100%;
  padding: 28px;
}

.property-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.property-card h3 {
  margin-bottom: 9px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.property-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.property-card strong {
  display: inline-flex;
  margin-top: 8px;
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.ticker-band {
  overflow: hidden;
  border-block: 1px solid rgba(255, 91, 20, 0.18);
  background: var(--ink);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 0;
  padding: 18px 0;
  color: var(--white);
  animation: tickerMove 24s linear infinite;
}

.ticker-group {
  display: flex;
  gap: 42px;
  padding-right: 42px;
}

.ticker-group span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-group span::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 42px;
  border-radius: 999px;
  background: var(--orange);
  vertical-align: 1px;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.proof-item:last-child {
  border-right: 0;
}

.icon,
.proof-item svg,
.feature-card svg,
.plan-card svg,
.check-list svg,
.service-icon svg {
  width: 38px;
  height: 38px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.proof-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 950;
}

.proof-item span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.section {
  padding: 74px 0;
}

.section.soft {
  background: var(--section-soft);
}

.section.sand {
  background: var(--sand);
}

.story-motion {
  margin-top: -1px;
  overflow: hidden;
}

.story-motion .feature-card {
  transform-style: preserve-3d;
}

.story-motion .feature-card:hover {
  transform: perspective(900px) rotateX(4deg) translateY(-7px);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.services-grid,
.posts,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.service-card,
.plan-card,
.post-card,
.contact-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(19, 43, 61, 0.07);
  overflow: hidden;
}

.feature-card,
.plan-card,
.contact-card {
  padding: 26px;
}

.feature-card h3,
.service-card h3,
.plan-card h3,
.post-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 950;
}

.feature-card p,
.service-card p,
.plan-card p,
.post-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-card svg,
.plan-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}

.service-card,
.post-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.post-card:hover,
.feature-card:hover,
.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 91, 20, 0.55);
  box-shadow: var(--shadow);
}

.service-media {
  min-height: 165px;
  background-position: center;
  background-size: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-media,
.post-card:hover .service-media {
  transform: scale(1.025);
}

.service-body,
.post-body {
  padding: 24px;
  text-align: center;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: -58px auto 18px;
  border: 8px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(19, 43, 61, 0.14);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.two-col,
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list,
.info-list {
  margin: 24px 0 0;
  padding: 0;
}

.check-list li,
.info-list li {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 800;
}

.check-list svg {
  width: 26px;
  height: 26px;
}

.dark-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 91, 20, 0.13), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
}

.dark-band h2,
.dark-band h3 {
  color: var(--white);
}

.dark-band p,
.dark-band .lead,
.dark-band .check-list li {
  color: rgba(255, 255, 255, 0.8);
}

.dark-band .plan-card h3 {
  color: var(--text);
}

.dark-band .plan-card p {
  color: var(--muted);
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.45fr);
  gap: 48px;
  align-items: center;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.plan-layout > div:first-child {
  max-width: 520px;
}

.plan-card {
  min-height: 322px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plan-card h3 {
  min-height: 48px;
}

.plan-card p {
  margin-bottom: 22px;
}

.plan-card .mini-btn {
  margin-top: auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 170px 0 92px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 91, 20, 0.34) 0%, rgba(19, 43, 61, 0.92) 42%, rgba(19, 43, 61, 0.18) 100%),
    var(--page-img) center / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 58px), 0 100%);
}

.page-hero::before {
  content: "AVENIDA";
  position: absolute;
  right: -2vw;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(4.2rem, 16vw, 12rem);
  font-weight: 950;
  line-height: 0.75;
  letter-spacing: 0;
  animation: pageWatermark 8s ease-in-out infinite alternate;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, 0.75), var(--ink));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

@keyframes pageWatermark {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-24px);
  }
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.4vw, 3.65rem);
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.faq-list {
  max-width: 940px;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--text);
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 30px;
  align-items: stretch;
}

.contact-experience {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 91, 20, 0.1), transparent 28%),
    var(--page-bg);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(19, 43, 61, 0.08), rgba(19, 43, 61, 0.88)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=900&q=80") center / cover no-repeat;
}

.contact-panel h2,
.contact-panel .tag,
.contact-panel p,
.contact-panel .contact-row strong,
.contact-panel .contact-row a {
  color: var(--white);
}

.contact-panel .contact-row {
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-form-card {
  padding: 34px;
}

.form-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-row {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row strong {
  color: var(--text);
}

.contact-row a[href*="wa.me"] svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: -2px;
  fill: currentColor;
}

.interest-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 24px;
}

.interest-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-picker span {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--page-bg);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.interest-picker strong {
  color: var(--text);
  font-size: 1rem;
}

.interest-picker small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.interest-picker input:checked + span {
  color: var(--white);
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 28px rgba(255, 91, 20, 0.22);
}

.interest-picker input:checked + span strong,
.interest-picker input:checked + span small {
  color: var(--white);
}

.interest-picker label:hover span {
  transform: translateY(-3px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 14px;
  color: var(--text);
  background: var(--surface);
  font: inherit;
}

textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 91, 20, 0.24);
  border-color: var(--orange);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  gap: 42px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.24));
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
}

.site-footer li {
  list-style: none;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--orange);
}

.site-footer a[href*="wa.me"] svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: -3px;
  fill: currentColor;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 91, 20, 0.35);
  border-radius: 7px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  color: var(--white);
  background: rgba(255, 91, 20, 0.16);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-facebook svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.36);
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(37, 211, 102, 0.55);
  border-radius: inherit;
  animation: pulse 1.8s ease-out infinite;
}

.floating-whatsapp.is-paused::before {
  animation: none;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  transition: opacity 0.2s ease, transform 0.08s linear;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 91, 20, 0.7);
  border-radius: 999px;
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease, transform 0.14s ease-out;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 91, 20, 0.36);
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.58s ease, transform 0.58s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .whatsapp-btn {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 94px;
    right: 14px;
    width: min(320px, calc(100vw - 28px));
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 10px 18px 18px;
    border: 1px solid rgba(255, 91, 20, 0.24);
    border-radius: 8px;
    background: var(--nav-bg);
    box-shadow: 0 22px 50px rgba(19, 43, 61, 0.38);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .proof-grid,
  .market-grid,
  .feature-grid.four,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .services-grid,
  .property-showcase,
  .plans,
  .posts,
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .split-section,
  .estate-hero-grid,
  .plan-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .estate-hero {
    min-height: auto;
    padding-bottom: 46px;
  }

  .property-finder {
    animation: none;
  }
}

.page-hero + .section {
  padding-top: 92px;
}

.page-hero + .section .container,
.contact-layout,
.faq-list {
  position: relative;
}

.page-hero + .section .container::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 0;
  width: 96px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.content-grid > *,
.feature-grid > *,
.services-grid > *,
.contact-card,
.faq-item {
  transform-style: preserve-3d;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.content-grid > *:hover,
.feature-grid > *:hover,
.services-grid > *:hover,
.contact-card:hover,
.faq-item:hover {
  transform: perspective(900px) rotateX(3deg) translateY(-5px);
  border-color: rgba(255, 91, 20, 0.42);
  box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    width: 60px;
    height: 60px;
  }

  .brand img {
    width: 54px;
    height: 54px;
    padding: 5px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 120px;
  }

  .hero {
    min-height: 610px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(19, 43, 61, 0.98) 0%, rgba(19, 43, 61, 0.88) 58%, rgba(19, 43, 61, 0.74) 100%),
      var(--page-img) 58% center / cover no-repeat;
  }

  .estate-hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  .property-finder {
    padding: 14px;
    animation: none;
  }

  .finder-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stage-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .stage-tabs button {
    flex: 0 0 auto;
  }

  .property-card {
    min-height: 360px;
  }

  .page-hero {
    background:
      linear-gradient(180deg, rgba(19, 43, 61, 0.98), rgba(19, 43, 61, 0.82)),
      var(--page-img) 58% center / cover no-repeat;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .whatsapp-btn {
    width: 100%;
  }

  .proof-grid,
  .market-grid,
  .feature-grid,
  .feature-grid.four,
  .services-grid,
  .property-showcase,
  .plans,
  .posts,
  .content-grid,
  .stats,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat {
    border-color: var(--line);
  }

  .section {
    padding: 56px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.form-alert{padding:14px 16px;border-radius:12px;margin:0 0 18px;font-weight:700}.form-alert.success{background:#e7f6ed;color:#17643a}.form-alert.error{background:#fff0ef;color:#a52a24}.property-detail-hero{padding:150px 0 58px;background:var(--navy,#0d2132);color:#fff}.property-detail-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:42px;align-items:start}.property-gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.property-gallery img{width:100%;height:250px;object-fit:cover;border-radius:18px}.property-gallery .property-cover{grid-column:1/-1;height:min(560px,62vw)}.property-description{margin-top:38px}.property-features{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 24px;padding:0;list-style:none}.property-features li:before{content:'✓';color:var(--gold,#c49b54);margin-right:9px}.property-contact-card{position:sticky;top:110px;padding:28px;border-radius:20px;background:var(--surface,#fff);box-shadow:0 18px 50px rgba(13,33,50,.13);display:grid;gap:16px}.property-contact-card>strong{font-size:1.65rem}.property-contact-card>div{display:flex;justify-content:space-between;border-top:1px solid rgba(13,33,50,.1);padding-top:12px}.property-card h3 a{color:inherit;text-decoration:none}.property-card-image{display:block}.catalog-filters{display:grid;grid-template-columns:minmax(220px,1fr) minmax(180px,260px) auto auto;gap:12px;align-items:center;margin:0 0 32px}.catalog-filters input,.catalog-filters select{height:48px;border:1px solid rgba(13,33,50,.14);border-radius:999px;padding:0 18px;background:#fff;color:var(--navy,#0d2132);font:inherit}.catalog-filters .btn{height:48px;display:inline-flex;align-items:center;justify-content:center}@media(max-width:850px){.property-detail-layout{grid-template-columns:1fr}.property-contact-card{position:static}.property-gallery img{height:180px}.property-features{grid-template-columns:1fr}.catalog-filters{grid-template-columns:1fr}.catalog-filters .btn{width:100%}}
.catalog-filters.has-type-filter{grid-template-columns:minmax(220px,1fr) minmax(170px,230px) minmax(180px,260px) auto auto}.catalog-count{margin:-12px 0 26px;color:var(--muted);font-weight:800}.pagination{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin:34px 0 0}.pagination a{min-width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(13,33,50,.16);border-radius:999px;background:var(--surface);font-weight:900;color:var(--ink)}.pagination a.active,.pagination a:hover{background:var(--orange);border-color:var(--orange);color:#fff}.rich-content{font-size:1.03rem;color:var(--text)}.rich-content p,.rich-content ul,.rich-content ol{margin:0 0 16px}.rich-content ul,.rich-content ol{padding-left:22px}.rich-content li{margin:6px 0}.rich-content h2,.rich-content h3,.rich-content h4{margin:24px 0 10px;color:var(--ink);line-height:1.18}@media(max-width:1050px){.catalog-filters.has-type-filter{grid-template-columns:1fr 1fr}.catalog-filters.has-type-filter .btn{width:100%}}@media(max-width:850px){.catalog-filters.has-type-filter{grid-template-columns:1fr}.pagination a{min-width:38px;height:38px}}
.contact-hero{min-height:430px;padding:150px 0 72px;align-items:flex-end;color:#fff;background:linear-gradient(90deg,rgba(13,33,50,.86) 0%,rgba(13,33,50,.58) 48%,rgba(255,91,20,.18) 100%),var(--contact-img) center / cover no-repeat;clip-path:none}.contact-hero::before{display:none}.contact-hero::after{height:5px;background:linear-gradient(90deg,var(--orange),rgba(255,91,20,.1))}.contact-hero .eyebrow{color:#fff}.contact-hero h1{color:#fff;margin-bottom:12px;text-shadow:0 2px 16px rgba(0,0,0,.18)}.contact-hero p:not(.eyebrow){max-width:720px;color:rgba(255,255,255,.9);font-weight:700}.contact-hero+.contact-experience{padding-top:58px}@media(max-width:850px){.contact-hero{min-height:360px;padding:120px 0 52px}.contact-hero+.contact-experience{padding-top:34px}}
