:root {
  --color-primary: #009cde;
  --color-primary-dark: #056f9d;
  --color-whatsapp: #23d466;
  --color-ink: #1f2a37;
  --color-ink-soft: #4b5563;
  --color-surface: #f7fbfd;
  --color-white: #ffffff;
  --color-border: rgba(15, 23, 42, 0.1);
  --shadow-soft: 0 24px 60px rgba(5, 111, 157, 0.14);
  --shell: min(1120px, calc(100vw - 2rem));
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--color-ink);
  background: #ffffff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Quicksand", sans-serif;
  line-height: 1.05;
}

h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

p,
span,
small,
strong,
a,
button {
  font-family: "Quicksand", sans-serif;
}

h1 {
  font-size: 3.8rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.1rem;
}

p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-ink-soft);
}

small {
  font-size: 0.8rem;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #009cde 0%, #0c88bf 100%);
  color: var(--color-white);
  overflow: hidden;
}

.section-alt p,
.section-alt h2,
.section-alt h3 {
  color: var(--color-white);
}

.section-graphic {
  position: absolute;
  inset: 0 auto auto 0;
  width: min(44vw, 600px);
  opacity: 0.2;
  pointer-events: none;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-heading.centered,
.centered-block {
  text-align: center;
}

.eyebrow {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.light .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading h2,
.split-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--color-primary-dark);
}

.button-secondary {
  background: var(--color-white);
  color: var(--color-primary);
}

.button-secondary:hover {
  background: #e7f7ff;
}

.button-ghost {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.button-ghost:hover {
  background: rgba(0, 156, 222, 0.08);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  transition: 0.25s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.site-header.is-scrolled {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border-top-color: transparent;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 96px;
}

.brand-logo {
  width: 252px;
}

.brand-logo-dark,
.site-header.is-scrolled .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-link {
  color: var(--color-white);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-header.is-scrolled .nav-link {
  color: var(--color-ink);
}

.nav-link-button {
  padding: 0.88rem 1.9rem;
  border-radius: 999px;
  border: 1px solid currentColor;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  background: url("/assets/img/bg-hero-desktop.jpg") 62% center/cover no-repeat;
  color: var(--color-white);
}

.hero-compact {
  min-height: 64svh;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 40, 64, 0.08), rgba(2, 40, 64, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 1.2rem;
  min-height: inherit;
  padding: 7.5rem 0 4rem;
}

.hero-content h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.hero-compact .hero-content {
  justify-items: center;
  text-align: center;
  padding-top: 5.5rem;
}

.hero-compact .hero-content h1 {
  max-width: none;
  margin-inline: auto;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(3rem, 4.4vw, 4.85rem);
  font-weight: 500;
  line-height: 1.12;
}

.hero-content strong {
  color: #a6ebff;
}

.hero-description {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.hero-home {
  overflow: visible;
  background-image: url("/assets/img/bg-hero-desktop.jpg");
  background-position: 0 0;
  background-size: cover;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-home-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 2px;
}

.hero-home-title {
  max-width: none;
  margin-inline: auto;
  font-family: "Quicksand", sans-serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero-home-title strong {
  color: var(--color-white);
  font-weight: 700;
}

.hero-actions,
.section-cta,
.form-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-graphic {
  position: absolute;
  pointer-events: none;
  opacity: 0.8;
}

.hero-graphic-left {
  top: 120px;
  left: 0;
  width: min(40vw, 520px);
}

.hero-ribbon {
  position: absolute;
  pointer-events: none;
}

.hero-ribbon-left {
  left: -12rem;
  bottom: 8rem;
  width: 32rem;
  height: 43rem;
  transform: rotate(39deg);
  background: linear-gradient(180deg, rgba(98, 218, 255, 0.72), rgba(0, 156, 222, 0.42));
}

.hero-ribbon-center {
  left: 12.5rem;
  bottom: -7rem;
  width: 42rem;
  height: 51rem;
  transform: rotate(39deg);
  background: linear-gradient(180deg, rgba(0, 186, 255, 0.58), rgba(0, 117, 171, 0.72));
}

.hero-ribbon-live {
  top: 100px;
  left: 0;
  width: 50%;
  max-width: none;
  opacity: 1 !important;
  transform: none !important;
  z-index: 1;
}

[data-header] {
  z-index: 30000 !important;
  isolation: isolate;
}

[data-header] .link-btn {
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

[data-header][data-header-variant] .nav-link.link-btn {
  background: transparent !important;
  border: 1px solid #7fd7ff !important;
  color: #009cde !important;
}

[data-header][data-header-variant] .nav-link.link-btn:hover,
[data-header][data-header-variant] .nav-link.link-btn:focus-visible,
[data-header][data-header-variant] .nav-link.link-btn:active {
  background-color: #009cde !important;
  border-color: #009cde !important;
  color: #ffffff !important;
}

.search-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 860px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-search-live {
  position: relative;
  z-index: 2;
  width: 80%;
  margin-top: 0;
  box-shadow: 0 0 20px #01385052;
}

.hero-search-live .search-box {
  display: flex;
  align-items: center;
  gap: 0.9rem !important;
}

.hero-search-field {
  flex: 1 1 0;
  min-width: 0;
}

.hero-search-submit {
  flex: 0 0 auto;
}

.hero-search-live .select2-container,
.hero-search-live .select2 {
  width: 100% !important;
  margin-bottom: 0 !important;
}

.hero-search-live select.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-search-live .select-rounder,
.hero-search-button {
  min-height: 44px;
  height: 44px;
}

.hero-search-live .select-rounder {
  width: 100%;
  box-shadow: 0 0 8px 1px rgb(0 156 222 / 35%);
  border: 0;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}

.hero-search-live .select2-container {
  width: 100% !important;
  margin-bottom: 0 !important;
}

.hero-search-live .select2-container--default .select2-selection--multiple {
  color: #333333;
  background-color: #fff;
  border: none;
  box-shadow: 0 0 8px 1px rgb(0 156 222 / 35%);
  border-radius: 10px;
  cursor: text;
  min-height: 44px;
  height: 44px;
  padding-top: 0;
  padding-right: 1.5rem;
  padding-bottom: 0;
  padding-left: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-search-live .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid 1px #009cde;
  outline: 0;
}

.hero-search-live .select2-search.select2-search--inline {
  display: flex;
  align-items: center;
  float: none;
  height: 100%;
  min-height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}

.hero-search-live .select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 1.1rem;
  margin: 0 !important;
  padding: 0;
  max-width: 100%;
  resize: none;
  min-height: 0 !important;
  max-height: 44px;
  height: 100% !important;
  line-height: 44px !important;
  vertical-align: middle;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
  width: 100% !important;
  background-color: transparent !important;
  position: static !important;
}

.hero-search-live .select2-container .select2-selection--multiple .select2-selection__rendered {
  position: static;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  min-height: 100%;
  margin: 0;
  padding: 0 !important;
  border-radius: 8px;
  background: transparent;
}

.hero-search-live .select2-container .select2-selection--multiple .select2-selection__rendered:empty {
  display: none;
}

.hero-search-live .select2-container .select2-selection--multiple .select2-selection__rendered:empty + .select2-search--inline {
  flex: 1 1 100%;
  min-width: 100%;
  width: 100%;
}

.hero-search-live .select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 3px;
  margin-bottom: 3px;
  padding: 5px;
  border: none;
  border-radius: 15px;
  background-color: #009cde;
  color: #fff;
  font-size: 1.1rem;
}

.hero-search-live .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  position: relative;
  border-right: none;
  border-radius: 10px;
  color: #ffffff;
}

.hero-search-live .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.hero-search-live .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #b3a068;
  color: #022840;
}

.hero-search-live .select2-dropdown {
  background-color: #fff;
  border: none;
  border-radius: 8px;
}

.hero-search-live .select2-results__option {
  position: relative;
  padding: 6px;
  color: #333333;
}

.hero-search-live .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #009cde;
  color: #fff;
}

.hero-search-live .select2-container--default .select2-results__option--selected {
  background-color: #dddbdb;
}

.hero-search-live .select2-container--default .select2-results__option--selected::after {
  content: "\2713";
  position: absolute;
  right: 10px;
  color: #333333;
}

.hero-search-button {
  flex: 0 0 auto;
  min-width: 0;
  border: 0;
}

.wow {
  visibility: visible !important;
}

.wow.animated {
  opacity: 1 !important;
}

.home-featured-card {
  background: #009cde;
  box-shadow: 0 0 20px #01385052;
}

.home-featured-card img {
  height: 520px;
  transition: all 0.3s ease-in-out 0s;
}

.home-featured-card .prop-info {
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.home-featured-card:hover img {
  scale: 1.1;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}

.home-development-image {
  height: 260px;
  object-fit: cover;
}

.home-news-card img {
  height: 280px;
  object-fit: cover;
}

.featured-properties-more {
  position: relative;
  z-index: 4;
}

.home-featured-section > .container {
  position: relative;
  z-index: 3;
}

input,
textarea,
select,
.search-bar button {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font: inherit;
  color: var(--color-ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(0, 156, 222, 0.44);
  box-shadow: 0 0 0 4px rgba(0, 156, 222, 0.12);
}

.card-grid,
.service-grid,
.value-grid,
.news-grid {
  display: grid;
  gap: 1.5rem;
}

.property-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-card,
.service-card,
.development-card,
.news-card,
.panel,
.value-card,
.filter-panel-card,
.map-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.property-card,
.news-card {
  overflow: hidden;
}

.property-media img,
.development-media img,
.news-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.property-body,
.development-body,
.news-card-body,
.service-card,
.panel,
.filter-panel-card {
  padding: 1.4rem;
}

.property-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  color: var(--color-ink-soft);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.74);
}

.split-section,
.detail-layout,
.listing-layout,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.split-section {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.split-section.reverse .split-media {
  order: 2;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.split-copy {
  display: grid;
  gap: 1rem;
}

.value-panels {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
}

.panel {
  display: grid;
  gap: 1rem;
}

.panel-wide {
  min-height: 100%;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  padding: 1.4rem;
  text-align: center;
  font-weight: 700;
}

.contact-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.contact-map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
}

.footer-office iframe {
  width: 100%;
  height: 250px;
  min-height: 250px;
  border: 0;
  border-radius: var(--radius-lg);
  margin-top: 0 !important;
}

.contact-map .contact-map-link img {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

.footer-office .office-map-link img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 0;
  display: block;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-block {
  display: grid;
  gap: 0.4rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-form,
.stacked-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid label,
.stacked-form {
  color: var(--color-white);
}

.field-span-2 {
  grid-column: span 2;
}

.form-grid span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-feedback {
  min-height: 1.5rem;
}

.form-feedback[data-state="success"] {
  color: #bbf7d0;
}

.form-feedback[data-state="error"] {
  color: #fecaca;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.listing-layout {
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 110px;
}

.listing-results {
  display: grid;
  gap: 1.5rem;
}

.listing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-surface {
  min-height: 360px;
  border-radius: var(--radius-lg);
}

.pagination {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination button {
  width: 44px;
  height: 44px;
  min-height: auto;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
}

.pagination button.is-active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.development-grid,
.development-list {
  display: grid;
  gap: 1.5rem;
}

.development-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.development-card-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.detail-hero {
  position: relative;
  min-height: 74svh;
  color: var(--color-white);
}

.detail-hero-image {
  position: absolute;
  inset: 0;
}

.detail-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 40, 64, 0.3), rgba(2, 40, 64, 0.72));
}

.detail-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 1rem;
  min-height: 74svh;
  padding: 7rem 0 3rem;
}

.detail-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  max-width: 12ch;
}

.detail-price {
  color: #b7f1ff;
  font-size: 1.25rem;
  font-weight: 700;
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.detail-main {
  display: grid;
  gap: 1.5rem;
}

.detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.detail-highlights span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 156, 222, 0.12);
  color: var(--color-primary-dark);
  font-weight: 700;
}

.rich-copy {
  display: grid;
  gap: 1rem;
}

.rich-copy h2,
.rich-copy h3,
.rich-copy h4 {
  font-size: 1.4rem;
  color: var(--color-ink);
}

.rich-copy ul,
.rich-copy ol {
  padding-left: 1.2rem;
  color: var(--color-ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.sticky-panel {
  position: sticky;
  top: 110px;
}

.inline-link {
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary-dark);
  font-weight: 700;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0;
}

.footer-brand,
.footer-contacts,
.footer-office {
  display: grid;
  gap: 1rem;
}

.footer-logo {
  width: 220px;
}

.footer-contacts section {
  display: grid;
  gap: 0.4rem;
}

.footer-bottom {
  background: var(--color-primary);
  color: var(--color-white);
}

.footer-bottom-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.whatsapp-pill {
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-whatsapp);
  color: var(--color-whatsapp);
  border-radius: 999px;
}

.simple-page {
  padding: 10rem 0 5rem;
}

.centered-block {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.empty-state {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(0, 156, 222, 0.08);
  color: var(--color-primary-dark);
  font-weight: 700;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: currentColor;
  }

  .site-header,
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
  }

  .brand-logo-light {
    display: none;
  }

  .brand-logo-dark {
    display: block;
  }

  .nav-toggle,
  .site-header.is-scrolled .nav-toggle {
    color: var(--color-ink);
  }

  .site-nav {
    position: absolute;
    top: 92px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    color: var(--color-ink);
    font-size: 0.95rem;
  }

  .hero,
  .hero-compact {
    background-image: url("/assets/img/bg-hero-mobile.jpg");
  }

  .hero-home {
    background-position: 56% center;
  }

  .hero-home-inner {
    padding-top: 5.5rem;
    padding-inline: 1rem;
  }

  .hero-home-title {
    max-width: none;
    font-size: 3rem;
  }

  .hero-ribbon-left {
    left: -15rem;
    bottom: 4rem;
    width: 18rem;
    height: 28rem;
  }

  .hero-ribbon-center {
    left: 1rem;
    bottom: -4rem;
    width: 22rem;
    height: 30rem;
  }

  .hero-search-live {
    width: min(92vw, 640px);
    margin-top: 0;
  }

  .hero-search-live .search-box {
    flex-wrap: wrap !important;
  }

  .hero-search-live .select2-container .select2-selection--multiple .select2-selection__rendered {
    top: 0;
    border: none;
  }

  .hero-search-live .select2-container--default .select2-selection--multiple .select2-selection__choice {
    font-size: 18px;
  }

  .hero-search-field {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
  }

  .hero-search-submit {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-search-button {
    width: 100%;
  }

  .search-bar,
  .split-section,
  .value-panels,
  .listing-layout,
  .detail-layout,
  .contact-layout,
  .footer-grid,
  .development-card-wide,
  .property-grid,
  .service-grid,
  .value-grid,
  .development-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-span-2 {
    grid-column: auto;
  }

  .filter-panel,
  .sticky-panel {
    position: static;
  }

  .property-media img,
  .development-media img,
  .news-card img,
  .gallery-grid img {
    height: 220px;
  }

  .footer-bottom-shell {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }
}

/* Legacy fidelity: propiedades list */
.listado-propiedades .input-rounder,
.listado-propiedades .select-rounder,
.listado-propiedades .btn-rounder {
  border-radius: 10px;
}

.listado-propiedades .input-rounder,
.listado-propiedades .select-rounder {
  min-height: 52px;
  height: 52px;
  line-height: 1.2;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  font-size: 1.1rem;
  box-sizing: border-box;
}

.listado-propiedades .input-shadow,
.listado-propiedades .select-shadow {
  border: none;
  box-shadow: 0 0 8px 1px rgb(0 156 222 / 35%);
}

.listado-propiedades select.select-rounder {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3.25rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' fill='none' stroke='%23009cde' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/svg%3E");
  background-position: right 1.25rem center;
  background-repeat: no-repeat;
  background-size: 0.85rem;
}

.listado-propiedades select.select-rounder.is-expanded {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 10 4-4 4 4' fill='none' stroke='%23009cde' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/svg%3E");
}

.listado-propiedades #ordenarPor + .select2-container {
  height: 52px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .listado-propiedades .properties-order-control {
    width: 25% !important;
    margin-left: auto;
  }
}

.listado-propiedades #ordenarPor + .select2-container .selection,
.listado-propiedades #ordenarPor + .select2-container .select2-selection--single {
  height: 52px;
  min-height: 52px;
}

.listado-propiedades #ordenarPor + .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  border: 1px solid #009cde;
  border-radius: 10px;
  box-shadow: none;
}

.listado-propiedades #ordenarPor + .select2-container .select2-selection__rendered {
  width: 100%;
  padding: 0 3.25rem 0 1.5rem;
  color: #333333;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.listado-propiedades #ordenarPor + .select2-container .select2-selection__arrow {
  top: 0;
  right: 1.15rem;
  height: 52px;
}

.listado-propiedades #ordenarPor + .select2-container .select2-selection__arrow b {
  border-color: #009cde transparent transparent transparent;
}

.listado-propiedades #ordenarPor + .select2-container--open .select2-selection__arrow b {
  border-color: transparent transparent #009cde transparent;
}

.listing-order-dropdown.select2-dropdown {
  border: none;
  border-radius: 0;
  box-shadow: 0 6px 18px rgb(20 29 35 / 18%);
}

.listing-order-dropdown .select2-results__option {
  padding: 0.55rem 1.5rem;
  color: #333333;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
}

.listing-order-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background: #009cde;
  color: #ffffff;
}

.listing-order-dropdown .select2-results__option--selected {
  background: #ffffff;
  color: #333333;
}

.listado-propiedades .select2-container {
  display: block;
  width: 100% !important;
  min-height: 52px;
  height: auto;
  margin-bottom: 1rem;
  overflow: visible;
  box-sizing: border-box;
}

.listado-propiedades .select2-container .selection {
  display: block;
  min-height: 52px;
  height: auto;
}

.listado-propiedades .select2-container--default .select2-selection--multiple {
  min-height: auto;
  height: 52px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 8px 1px rgb(0 156 222 / 35%);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 1.1rem;
  font-family: "Quicksand", sans-serif;
  color: #333333;
  box-sizing: border-box;
}

.listado-propiedades .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #009cde;
}

.listado-propiedades .select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.35rem;
  padding: 0 !important;
  margin: 0;
  min-height: 100%;
  width: 100%;
  position: static !important;
  top: auto !important;
  left: auto !important;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  color: #333333;
}

.listado-propiedades .select2-container .select2-selection--multiple .select2-selection__rendered:empty {
  display: none;
}

.listado-propiedades .select2-container .select2-selection--multiple .select2-selection__rendered:empty + .select2-search--inline {
  flex: 1 1 100%;
  width: 100%;
}

.listado-propiedades .select2-search.select2-search--inline {
  display: flex;
  align-items: center;
  float: none;
  margin: 0;
  min-height: 100%;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.listado-propiedades .select2-container .select2-search--inline .select2-search__field {
  margin: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.4 !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  display: block;
  vertical-align: middle;
  font-size: 1.1rem !important;
  color: #333333 !important;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 400 !important;
  text-align: left;
}

.listado-propiedades .select2-container .select2-search--inline .select2-search__field::placeholder {
  color: #333333;
  opacity: 1;
}

.listado-propiedades .select2-container--default .select2-selection--multiple:not(:has(.select2-selection__choice)) .select2-search--inline {
  min-height: 52px;
  height: 52px;
}

.listado-propiedades .select2-container--default .select2-selection--multiple:not(:has(.select2-selection__choice)) .select2-search__field {
  height: 52px !important;
  line-height: 52px !important;
}

.listado-propiedades .select2-container--default .select2-selection--multiple .select2-selection__choice {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0.1rem 0;
  padding: 0.25rem 0.7rem;
  border: none;
  border-radius: 999px;
  background-color: #009cde;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  max-width: none;
  width: max-content;
}

.listado-propiedades .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  display: inline-block;
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.listado-propiedades .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 0.2rem;
  border-right: none;
  color: #fff;
}

.listado-propiedades .select2-container--default .select2-selection--multiple:has(.select2-selection__choice) {
  min-height: 52px;
  height: auto;
  max-height: none;
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
  overflow: visible;
  align-items: center;
}

.listado-propiedades .select2-container--default .select2-selection--multiple:has(.select2-selection__choice) .select2-selection__rendered {
  flex-wrap: wrap;
  min-height: 0;
  overflow: visible;
  white-space: normal;
  align-content: center;
  row-gap: 0.35rem;
}

.listado-propiedades .select2-container--default .select2-selection--multiple:has(.select2-selection__choice) .select2-search--inline {
  flex: 0 0 0;
  width: 0;
  min-width: 0;
}

.listado-propiedades .select2-container--default .select2-selection--multiple:has(.select2-selection__choice) .select2-search__field {
  width: 0 !important;
  min-width: 0 !important;
}

.listado-propiedades .select-border-blue {
  color: #009cde;
  background-color: transparent;
  border: solid 1px #009cde;
}

.listado-propiedades .item-prop {
  background: #009cde;
  box-shadow: 0 0 20px #01385052;
}

.listado-propiedades .item-prop > a > img {
  height: 520px;
  transition: all 0.3s ease-in-out 0s;
}

.listado-propiedades .prop-info {
  bottom: 0;
}

.listado-propiedades .item-prop:hover .prop-info {
  bottom: 0;
  transition: all 0.3s ease-in-out 0s;
}

.listado-propiedades .item-prop:hover > a > img {
  scale: 1.1;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}

.listado-propiedades .property-feature-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  vertical-align: text-bottom;
  filter: brightness(0) saturate(100%) invert(48%) sepia(95%) saturate(3188%) hue-rotate(166deg) brightness(95%) contrast(101%);
}

.listado-propiedades .item-prop:hover .property-feature-icon {
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  scale: 1 !important;
  filter: brightness(0) saturate(100%) invert(48%) sepia(95%) saturate(3188%) hue-rotate(166deg) brightness(95%) contrast(101%) !important;
}

.item-prop.is-reserved {
  background: #5d6162;
}

.item-prop.is-reserved > a > img {
  filter: grayscale(0.72) brightness(0.78);
}

.item-prop.is-reserved:hover > a > img {
  filter: grayscale(0.72) brightness(0.72) !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

.property-status--reserved {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  background: rgb(255 255 255 / 92%);
  border: 1px solid rgb(93 97 98 / 20%);
  color: #5d6162;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.48rem 0.72rem;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgb(20 29 35 / 14%);
  backdrop-filter: blur(6px);
}

.property-status--reserved::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #5d6162;
  content: "";
}

.property-status {
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.item-prop:not(.is-reserved):hover .property-status--available {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  transform: translateY(2px);
}

.listado-propiedades .mapprop {
  position: relative;
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease-in-out 0s;
}

.listado-propiedades .mapprop.open-map {
  height: 400px;
}

.listado-propiedades .map-zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgb(0 0 0 / 48%);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 450;
}

.listado-propiedades .map-zoom-hint.is-visible {
  opacity: 1;
}

.listado-propiedades .map-zoom-hint__content {
  max-width: 52rem;
}

.listado-propiedades .leaflet-control-map-fullscreen {
  margin-top: 0 !important;
}

.listado-propiedades .map-fullscreen-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: #fff;
  color: #5b5b5b;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.listado-propiedades .map-fullscreen-button:hover,
.listado-propiedades .map-fullscreen-button:focus {
  background: #f3f6f9;
  color: #2f2f2f;
  outline: none;
}

.listado-propiedades .map-fullscreen-button.is-active {
  color: #009cde;
}

.listado-propiedades .map-fullscreen-button svg {
  width: 18px;
  height: 18px;
  display: block;
}

.leaflet-popup.leaflet-property-popup .leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.leaflet-popup.leaflet-property-popup .leaflet-popup-content {
  margin: 0;
  width: 288px !important;
}

.leaflet-popup.leaflet-property-popup .leaflet-popup-tip {
  background: #fff;
}

.listado-propiedades .map-property-popup {
  display: block;
  background: #fff;
  color: #2d2d2d;
  text-decoration: none;
}

.listado-propiedades .map-property-popup:hover,
.listado-propiedades .map-property-popup:focus {
  color: #2d2d2d;
  text-decoration: none;
}

.listado-propiedades .map-property-popup__media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #dfe8ef;
}

.listado-propiedades .map-property-popup__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listado-propiedades .map-property-popup__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgb(20 31 48 / 78%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.listado-propiedades .map-property-popup__price {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgb(0 0 0 / 45%);
}

.listado-propiedades .map-property-popup__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: #009cde;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.listado-propiedades .map-property-popup__title i {
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.listado-propiedades .map-property-popup__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  padding: 0.75rem 1rem 0.95rem;
  list-style: none;
}

.listado-propiedades .map-property-popup__stats li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  color: #565656;
  font-size: 0.95rem;
}

.listado-propiedades .map-property-popup__stats .property-feature-icon {
  width: 0.95rem;
  height: 0.95rem;
  margin: 0;
}

.listado-propiedades .buscador-prop {
  position: sticky;
  top: 100px;
  height: auto;
  box-shadow: 0 0 20px #01385052;
}

.listado-propiedades .paginador {
  display: flex;
  justify-content: center;
  width: 100%;
}

.listado-propiedades .paginador .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
}

.listado-propiedades .paginador .page-item.disabled .page-link {
  cursor: not-allowed;
  opacity: 0.45;
}

.listado-propiedades .listaFichas.is-page-transition {
  animation: propertiesPageSlide 320ms ease;
}

.listado-propiedades .listaFichas.is-loading {
  position: relative;
  min-height: 12rem;
  pointer-events: none;
}

.listado-propiedades .listaFichas.is-loading::before {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3.6rem;
  background: rgb(255 255 255 / 78%);
  color: #009cde;
  content: "Actualizando resultados...";
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  backdrop-filter: blur(2px);
}

.listado-propiedades .listaFichas.is-loading::after {
  position: absolute;
  z-index: 6;
  top: calc(50% - 1.65rem);
  left: calc(50% - 0.8rem);
  width: 1.6rem;
  height: 1.6rem;
  border: 3px solid rgb(0 156 222 / 22%);
  border-top-color: #009cde;
  border-radius: 50%;
  content: "";
  animation: propertiesLoadingSpin 0.7s linear infinite;
}

.listado-propiedades .paginador.is-loading {
  pointer-events: none;
  opacity: 0.55;
}

@keyframes propertiesLoadingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes propertiesPageSlide {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.listaEmprendimientos .col-info-empre p {
  margin-bottom: 1rem;
}

.servicios h2,
.tasaciones h2,
#tasaciones h2,
.nosotros h2,
#contacto h2,
.destacadas h2 {
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.tasaciones p,
#tasaciones .text-start > p,
.nosotros .text-start p,
#contacto .text-start > p {
  margin-bottom: 1rem;
}

section.contacto.py-5.position-relative:not(.bg-blue-1) h5 {
  margin-bottom: 0.5rem;
}

footer h5 {
  margin-bottom: 0.5rem;
}

footer .footer-contact-title {
  margin-bottom: 0.12rem;
}

footer .footer-contact-list {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-top: 0;
}

footer .footer-contact-list li + li {
  margin-top: 0.22rem;
}

footer .footer-contact-list li {
  margin-top: 0;
  padding-top: 0;
}

footer .footer-contact-list a {
  display: inline-flex;
  align-items: flex-start;
  line-height: 1.35;
}

footer .footer-office .footer-contact-list {
  margin-top: -0.24rem !important;
  margin-bottom: 0.3rem !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

footer .footer-office .footer-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.05rem;
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

footer .footer-office .footer-contact-list li {
  margin: 0 !important;
  padding: 0 !important;
}

footer .footer-office .footer-contact-list .icon-i {
  top: 0.08rem;
  margin-right: 0.45rem !important;
}

footer .footer-office .footer-office-text {
  display: block;
  line-height: 1.28;
  margin: 0 !important;
  padding: 0 !important;
}

footer .footer-office .footer-contact-title {
  margin-bottom: 0 !important;
}

footer .footer-office {
  row-gap: 0;
  align-content: start;
  grid-auto-rows: max-content;
}

footer .footer-office iframe {
  margin-top: 0.45rem;
}

footer .footer-brand-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer > .container > .row {
  align-items: flex-start;
}

footer .logo-footer {
  width: min(100%, 20rem);
}

footer .footer-social-wrap {
  width: 100%;
  padding-bottom: 0 !important;
}

footer .footer-social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  max-width: 15rem;
  margin-bottom: 0;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
}

footer .footer-social-item {
  margin: 0;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer-social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 1;
}

footer .social-icon-i {
  top: 0;
  font-size: 2.35rem;
  line-height: 1;
  display: block;
}

footer .social-icon-x {
  width: 2rem;
  height: 2rem;
  color: #009cde;
  display: block;
}

footer .bg-blue-1 p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  #contacto .py-5.text-start {
    min-height: 566px;
  }
}

#contacto input.input-rounder,
#contacto input[type="submit"].btn-rounder {
  box-sizing: border-box;
  height: 44px;
  min-height: 44px;
}

#tasaciones input.input-rounder,
#tasaciones input[type="submit"].btn-rounder {
  box-sizing: border-box;
  height: 44px;
  min-height: 44px;
}

#tasaciones select.select-rounder {
  box-sizing: border-box;
  height: 41px;
  min-height: 41px;
}

#tasaciones textarea.textarea-rounder {
  box-sizing: border-box;
  min-height: 150px;
}

.servicios .item-serv h5 {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .listado-propiedades .buscador-prop {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out 0s;
  }

  .listado-propiedades .buscador-prop.open-filter {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 15px;
    height: auto;
  }
}
