.elementor-23 .elementor-element.elementor-element-7e370c75{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-23 .elementor-element.elementor-element-e77b5bb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-4feeba24 *//* =========================
HEADER BASE
========================= */

.ls-header {
  position: sticky;
  top: 0;
  z-index: 999;

  width: 100%;
  padding: 20px 30px;

  background: rgba(244,241,236,0.85);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* CONTENEDOR */

.ls-header-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.ls-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2e2e2e;
  text-decoration: none;
}

/* NAV */

.ls-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.ls-nav a {
  font-size: 14px;
  text-decoration: none;
  color: #2e2e2e;

  transition: opacity 0.3s ease;
}

.ls-nav a:hover {
  opacity: 0.6;
}

/* CTA */

.ls-contact-btn {
  padding: 10px 22px;
  border-radius: 999px;

  background: #7a8a7b;
  color: #fff !important;

  font-size: 13px;

  transition: all 0.3s ease;
}

.ls-contact-btn:hover {
  background: #657565;
}

/* MOBILE BUTTON */

.ls-menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE MENU */

.ls-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;

  padding: 20px;

  background: #f4f1ec;
}

.ls-mobile-menu a {
  text-decoration: none;
  color: #2e2e2e;
  font-size: 16px;
}

/* ACTIVE */

.ls-mobile-menu.active {
  display: flex;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 768px) {

  .ls-nav {
    display: none;
  }

  .ls-menu-toggle {
    display: block;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f6ac6d1 *//* =========================
SECCIÓN PROPIEDADES
========================= */

.ls-properties {
  padding: 120px 20px;
  background: #f4f1ec;
}

.ls-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
HEADER (TÍTULO + INTRO)
========================= */

.ls-properties-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

/* TÍTULO */

.ls-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: #2e2e2e;

  margin-bottom: 20px;
}

/* INTRO */

.ls-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(46,46,46,0.7);
}

/* =========================
GRID
========================= */

.ls-properties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* =========================
CARD
========================= */

.ls-property-card {
  display: block;
  text-decoration: none;
  color: inherit;

  border-radius: 28px;
  overflow: hidden;

  background: #ffffff;

  box-shadow: 0 30px 80px rgba(0,0,0,0.08);

  transition: all 0.4s ease;
}

/* HOVER */

.ls-property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

/* =========================
IMAGEN
========================= */

.ls-property-img {
  width: 100%;
  height: 360px;

  background-size: cover;
  background-position: center;

  position: relative;
}

/* OVERLAY SUAVE */

.ls-property-img::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.25)
  );
}

/* ZOOM SUAVE */

.ls-property-card:hover .ls-property-img {
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

/* =========================
INFO
========================= */

.ls-property-info {
  padding: 28px;
}

/* TÍTULO CARD */

.ls-property-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
}

/* UBICACIÓN */

.ls-property-info p {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

/* PRECIO / ESTADO */

.ls-price {
  font-size: 18px;
  color: #7a8a7b;
  font-weight: 500;
}

/* =========================
RESPONSIVE TABLET
========================= */

@media (max-width: 1024px) {

  .ls-properties {
    padding: 100px 20px;
  }

  .ls-properties-header {
    margin-bottom: 50px;
  }

  .ls-property-img {
    height: 300px;
  }

}

/* =========================
RESPONSIVE MOBILE
========================= */

@media (max-width: 768px) {

  .ls-properties {
    padding: 80px 15px;
  }

  .ls-title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .ls-intro {
    font-size: 15px;
  }

  .ls-properties-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ls-property-img {
    height: 240px;
  }

  .ls-property-info {
    padding: 22px;
  }

  .ls-property-info h3 {
    font-size: 22px;
  }

  .ls-price {
    font-size: 16px;
  }

}/* End custom CSS */