/* =========================================================
   THE LOCAL ESTATE — LANDING VENTA VISUAL V2
   Shortcode: [tle_landing_venta]

   Tipografía:
   - Usa "Nexa" si está cargada en WordPress / Elementor.
   - No incluye archivos de fuente.
   - Fallback visual: Montserrat / Poppins / Inter / Arial.
========================================================= */

html {
  scroll-behavior: smooth;
}

#tle-sale-landing {
  --tle-green: #718e72;
  --tle-black: #080808;
  --tle-card: #101010;
  --tle-white: #ffffff;
  --tle-text: #171817;
  --tle-muted: #666b66;
  --tle-line: #dedfdb;
  --tle-font-heading: "Nexa", "Montserrat", "Poppins", "Inter", Arial, Helvetica, sans-serif;
  --tle-font-body: "Nexa", "Montserrat", "Poppins", "Inter", Arial, Helvetica, sans-serif;

  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: var(--tle-black);
  color: var(--tle-white);
  font-family: var(--tle-font-body);
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

#tle-sale-landing,
#tle-sale-landing * {
  box-sizing: border-box;
}

#tle-sale-landing a {
  text-decoration: none;
}

.tle-sale-shell {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding-left: clamp(22px, 5vw, 80px);
  padding-right: clamp(22px, 5vw, 80px);
}

.tle-sale-eyebrow {
  display: block;
  font-family: var(--tle-font-heading);
  margin-bottom: 14px;
  color: var(--tle-green);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

/* MOTION
   Seguro por defecto:
   El texto queda visible aunque el JS de animaciones no cargue.
   Solo se oculta para animar cuando <html> recibe .tle-motion-enabled.
*/
#tle-sale-landing .tle-motion {
  opacity: 1;
  transform: none;
}

html.tle-motion-enabled #tle-sale-landing .tle-motion {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--tle-motion-delay, 0ms);
  will-change: opacity, transform;
}

html.tle-motion-enabled #tle-sale-landing .tle-motion[data-motion="fade-left"] {
  transform: translateX(34px);
}

html.tle-motion-enabled #tle-sale-landing .tle-motion.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* HERO */
.tle-sale-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #080808;
}

.tle-sale-hero__media {
  position: absolute;
  inset: -8% 0;
  background-image:
    url("https://thelocalestatebrokerage.com/wp-content/uploads/2026/07/ok-cancun.jpg");
  background-size: cover;
  background-position: center center;
  filter: grayscale(1) contrast(1.06) brightness(.80);
  transform: scale(1.04);
  z-index: 1;
  will-change: transform;
}

.tle-sale-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 75% 30%, rgba(113,142,114,.20), transparent 32%),
    linear-gradient(90deg, rgba(8,8,8,.95) 0%, rgba(8,8,8,.80) 43%, rgba(8,8,8,.28) 100%),
    linear-gradient(180deg, rgba(8,8,8,.30) 0%, rgba(8,8,8,.78) 100%);
}

.tle-sale-hero::after {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 80px);
  top: 0;
  width: 72px;
  height: 10px;
  background: var(--tle-green);
  z-index: 4;
}

.tle-sale-hero__grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding-top: clamp(110px, 10vw, 170px);
  padding-bottom: clamp(100px, 10vw, 160px);
}

.tle-sale-hero__content {
  width: min(800px, 100%);
}

.tle-sale-hero h1 {
  font-family: var(--tle-font-heading);
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(48px, 7.4vw, 112px);
  line-height: .86;
  font-weight: 800;
  letter-spacing: -.018em;
  text-transform: uppercase;
}

.tle-sale-hero h1 span {
  display: block;
  color: var(--tle-green);
}

.tle-sale-hero__content p {
  width: min(620px, 100%);
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.72;
}

.tle-sale-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.tle-sale-button {
  font-family: var(--tle-font-heading);
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 28px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition:
    transform .28s ease,
    background-color .28s ease,
    color .28s ease,
    border-color .28s ease;
}

.tle-sale-button:hover {
  transform: translateY(-3px);
}

.tle-sale-button--primary {
  background: #ffffff;
  color: #111111;
}

.tle-sale-button--primary:hover,
.tle-sale-button--primary:focus-visible {
  background: var(--tle-green);
  color: #ffffff;
}

.tle-sale-button--secondary {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.42);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.tle-sale-button--secondary:hover,
.tle-sale-button--secondary:focus-visible {
  background: var(--tle-green);
  border-color: var(--tle-green);
  color: #ffffff;
}

.tle-sale-hero__card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  background: rgba(16,16,16,.74);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.tle-sale-hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,0) 40%),
    radial-gradient(circle at 100% 0%, rgba(113,142,114,.18), transparent 32%);
  pointer-events: none;
}

.tle-sale-hero__card > * {
  position: relative;
  z-index: 2;
}

.tle-sale-hero__card span,
.tle-sale-hero__card h2,
.tle-sale-hero__card p {
  display: block;
}

.tle-sale-hero__card span {
  margin-bottom: 18px;
  color: var(--tle-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.tle-sale-hero__card h2 {
  font-family: var(--tle-font-heading);
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.04;
  font-weight: 500;
}

.tle-sale-hero__card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.72;
}

/* BENEFITS */
.tle-sale-benefits {
  background:
    radial-gradient(circle at 80% 20%, rgba(113,142,114,.10), transparent 28%),
    #ffffff;
  color: #171817;
  padding: clamp(62px, 7vw, 98px) 0;
}

.tle-sale-benefits__head {
  max-width: 760px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.tle-sale-benefits__head h2 {
  font-family: var(--tle-font-heading);
  margin: 0;
  color: #111111;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.008em;
  text-transform: uppercase;
}

.tle-sale-benefits__head h2 span {
  color: var(--tle-green);
}

.tle-sale-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--tle-line);
  border-bottom: 1px solid var(--tle-line);
}

.tle-sale-benefit {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid var(--tle-line);
  transition:
    background-color .32s ease,
    transform .32s ease;
}

.tle-sale-benefit:last-child {
  border-right: 0;
}

.tle-sale-benefit:hover {
  background: #f2f3ef;
  transform: translateY(-4px);
}

.tle-sale-benefit span {
  display: block;
  margin-bottom: 34px;
  color: var(--tle-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.tle-sale-benefit h3 {
  font-family: var(--tle-font-heading);
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(22px, 1.9vw, 32px);
  line-height: 1.04;
  font-weight: 500;
}

.tle-sale-benefit p {
  margin: 0;
  color: #666b66;
  font-size: 14px;
  line-height: 1.68;
}

/* DYNAMIC PROPERTIES */
.tle-sale-properties {
  position: relative;
  overflow: hidden;
  background: #080808;
}

.tle-sale-properties__glow {
  position: absolute;
  inset: auto -20% -28% auto;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(113,142,114,.20), transparent 62%);
  pointer-events: none;
}

.tle-sale-properties .tle-featured-grid {
  position: relative;
  z-index: 2;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.tle-sale-properties .tle-featured-card,
.tle-sale-properties .tle-featured-property,
.tle-sale-properties article {
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.tle-sale-properties .tle-featured-card:hover,
.tle-sale-properties .tle-featured-property:hover {
  transform: translateY(-6px);
}

/* EDITORIAL BANNER */
.tle-sale-banner {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #080808;
}

.tle-sale-banner__media {
  position: absolute;
  inset: -10% 0;
  z-index: 1;
  background-image: url("https://thelocalestatebrokerage.com/wp-content/uploads/2026/07/ok-cancun.jpg");
  background-size: cover;
  background-position: center center;
  filter: grayscale(1) contrast(1.05) brightness(.82);
  transform: scale(1.04);
  will-change: transform;
}

.tle-sale-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 80% 45%, rgba(113,142,114,.20), transparent 34%),
    linear-gradient(90deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.76) 48%, rgba(8,8,8,.32) 100%);
}

.tle-sale-banner .tle-sale-shell {
  position: relative;
  z-index: 3;
}

.tle-sale-banner__content {
  width: min(720px, 100%);
  padding: clamp(82px, 9vw, 132px) 0;
}

.tle-sale-banner h2 {
  font-family: var(--tle-font-heading);
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(40px, 5.8vw, 86px);
  line-height: .92;
  font-weight: 800;
  letter-spacing: -.012em;
  text-transform: uppercase;
}

.tle-sale-banner h2 span {
  display: block;
  color: var(--tle-green);
}

.tle-sale-banner p {
  width: min(600px, 100%);
  margin: 0 0 34px;
  color: rgba(255,255,255,.76);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

/* INVESTMENT */
.tle-sale-investment {
  padding: clamp(70px, 8vw, 120px) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f7f4 100%);
  color: #171817;
}

.tle-sale-investment__grid {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.tle-sale-investment__content h2 {
  font-family: var(--tle-font-heading);
  margin: 0 0 18px;
  color: #111111;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.008em;
  text-transform: uppercase;
}

.tle-sale-investment__content h2 span {
  display: block;
  color: var(--tle-green);
}

.tle-sale-investment__content p {
  margin: 0;
  width: min(580px, 100%);
  color: #666b66;
  font-size: 14px;
  line-height: 1.68;
}

.tle-sale-investment__cards {
  display: grid;
  gap: 14px;
}

.tle-sale-investment__cards article {
  position: relative;
  overflow: hidden;
  padding: 28px 30px;
  border: 1px solid var(--tle-line);
  background: rgba(255,255,255,.78);
  transition:
    transform .32s ease,
    background-color .32s ease,
    border-color .32s ease;
}

.tle-sale-investment__cards article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--tle-green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .32s ease;
}

.tle-sale-investment__cards article:hover {
  transform: translateX(6px);
  background: #ffffff;
  border-color: rgba(113,142,114,.35);
}

.tle-sale-investment__cards article:hover::after {
  transform: scaleY(1);
}

.tle-sale-investment__cards span {
  display: block;
  margin-bottom: 12px;
  color: var(--tle-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.tle-sale-investment__cards h3 {
  font-family: var(--tle-font-heading);
  margin: 0 0 10px;
  color: #111111;
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.08;
  font-weight: 500;
}

.tle-sale-investment__cards p {
  margin: 0;
  color: #666b66;
  font-size: 14px;
  line-height: 1.6;
}

/* PROCESS */
.tle-sale-process {
  position: relative;
  padding: clamp(70px, 8vw, 120px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(113,142,114,.16), transparent 30%),
    #080808;
  color: #ffffff;
}

.tle-sale-process__grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 5vw, 80px);
}

.tle-sale-process__intro h2 {
  font-family: var(--tle-font-heading);
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.008em;
  text-transform: uppercase;
}

.tle-sale-process__intro h2 span {
  display: block;
  color: var(--tle-green);
}

.tle-sale-process__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}

.tle-sale-process__steps article {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background-color .32s ease;
}

.tle-sale-process__steps article:hover {
  background: rgba(255,255,255,.045);
}

.tle-sale-process__steps span {
  display: block;
  margin-bottom: 26px;
  color: var(--tle-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.tle-sale-process__steps h3 {
  font-family: var(--tle-font-heading);
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.08;
  font-weight: 500;
}

.tle-sale-process__steps p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.6;
}

/* CONTACT */
.tle-sale-contact {
  padding: clamp(62px, 7vw, 98px) 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(113,142,114,.10), transparent 30%),
    #ffffff;
  color: #171817;
}

.tle-sale-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.tle-sale-contact h2 {
  font-family: var(--tle-font-heading);
  margin: 0 0 16px;
  color: #111111;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.008em;
  text-transform: uppercase;
}

.tle-sale-contact h2 span {
  display: block;
  color: var(--tle-green);
}

.tle-sale-contact p {
  margin: 0;
  width: min(620px, 100%);
  color: #676c67;
  font-size: 14px;
  line-height: 1.68;
}

.tle-sale-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}

.tle-sale-contact .tle-sale-button--primary {
  background: #111111;
  color: #ffffff;
}

.tle-sale-contact .tle-sale-button--primary:hover {
  background: var(--tle-green);
}

.tle-sale-contact__phone {
  font-family: var(--tle-font-heading);
  color: #111111;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  font-weight: 800;
  transition: color .25s ease;
}

.tle-sale-contact__phone:hover,
.tle-sale-contact__phone:focus-visible {
  color: var(--tle-green);
}

/* ELEMENTOR */
.elementor-widget-shortcode:has(#tle-sale-landing),
.elementor-widget-shortcode:has(#tle-sale-landing) > .elementor-widget-container,
.elementor-widget-html:has(#tle-sale-landing),
.elementor-widget-html:has(#tle-sale-landing) > .elementor-widget-container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.e-con:has(#tle-sale-landing),
.e-con-inner:has(#tle-sale-landing) {
  --container-max-width: 100% !important;
  --content-width: 100% !important;
  --gap: 0px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

body.elementor-editor-active #tle-sale-landing {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 980px) {
  .tle-sale-hero__grid,
  .tle-sale-process__grid,
  .tle-sale-contact__grid,
  .tle-sale-investment__grid {
    grid-template-columns: 1fr;
  }

  .tle-sale-benefits__grid,
  .tle-sale-process__steps {
    grid-template-columns: 1fr;
  }

  .tle-sale-benefit {
    border-right: 0;
    border-bottom: 1px solid var(--tle-line);
  }

  .tle-sale-benefit:last-child {
    border-bottom: 0;
  }

  .tle-sale-contact__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  html {
    scroll-behavior: auto;
  }

  .tle-sale-hero {
    min-height: auto;
  }

  .tle-sale-hero__media,
  .tle-sale-banner__media {
    inset: 0;
    transform: none !important;
  }

  .tle-sale-hero__grid {
    padding-top: 98px;
    padding-bottom: 68px;
  }

  .tle-sale-hero h1 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .tle-sale-hero__card {
    padding: 28px;
  }

  .tle-sale-hero__actions,
  .tle-sale-contact__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tle-sale-button {
    width: 100%;
  }

  .tle-sale-banner {
    min-height: auto;
  }

  .tle-sale-banner__content {
    padding: 74px 0;
  }

  .tle-sale-process__steps article {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  #tle-sale-landing .tle-motion,
  html.tle-motion-enabled #tle-sale-landing .tle-motion {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .tle-parallax-media {
    transform: none !important;
  }

  .tle-sale-button,
  .tle-sale-benefit,
  .tle-sale-investment__cards article,
  .tle-sale-process__steps article {
    transition: none !important;
  }
}



/* =========================================================
   VENTA — MATCH PREVIEW MOCKUP
   v0.9.8
   Ajusta la landing para acercarla a la referencia aprobada.
========================================================= */

/* HERO: más contraste, más editorial */
#tle-sale-landing .tle-sale-hero {
  min-height: 720px !important;
}

#tle-sale-landing .tle-sale-hero__shade {
  background:
    radial-gradient(circle at 76% 30%, rgba(113,142,114,.19), transparent 31%),
    linear-gradient(90deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.76) 44%, rgba(8,8,8,.20) 100%),
    linear-gradient(180deg, rgba(8,8,8,.18) 0%, rgba(8,8,8,.72) 100%) !important;
}

#tle-sale-landing .tle-sale-hero h1 {
  font-size: clamp(48px, 6.5vw, 96px) !important;
  line-height: .93 !important;
  letter-spacing: -.018em !important;
}

#tle-sale-landing .tle-sale-hero__card {
  width: min(360px, 100%) !important;
  padding: 34px !important;
  background: rgba(18,18,18,.78) !important;
  border-color: rgba(255,255,255,.16) !important;
}

#tle-sale-landing .tle-sale-hero__card h2 {
  font-size: clamp(18px, 1.3vw, 22px) !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

#tle-sale-landing .tle-sale-hero__card p {
  font-size: 13px !important;
}


/* BENEFITS STRIP — como la referencia */
#tle-sale-landing .tle-sale-benefits--preview {
  padding: 0 !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(113,142,114,.06), transparent 28%),
    #f8f8f6 !important;
  color: #111111 !important;
}

#tle-sale-landing .tle-sale-benefits--preview .tle-sale-shell {
  padding-left: clamp(28px, 5vw, 84px) !important;
  padding-right: clamp(28px, 5vw, 84px) !important;
}

#tle-sale-landing .tle-sale-benefits__grid {
  min-height: 178px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  border: 0 !important;
}

#tle-sale-landing .tle-sale-benefit {
  min-height: 178px !important;
  display: grid !important;
  grid-template-columns: 70px minmax(0, 1fr) !important;
  gap: 26px !important;
  align-items: center !important;
  padding: 34px clamp(26px, 3vw, 46px) !important;
  border-right: 1px solid #d8dad5 !important;
  border-bottom: 0 !important;
  background: transparent !important;
  transform: none !important;
}

#tle-sale-landing .tle-sale-benefit:last-child {
  border-right: 0 !important;
}

#tle-sale-landing .tle-sale-benefit:hover {
  background: rgba(113,142,114,.055) !important;
  transform: none !important;
}

#tle-sale-landing .tle-sale-benefit__icon {
  color: #111111 !important;
}

#tle-sale-landing .tle-sale-benefit__icon svg {
  width: 54px !important;
  height: 54px !important;
}

#tle-sale-landing .tle-sale-benefit__copy span {
  display: block !important;
  margin: 0 0 18px !important;
  color: #718e72 !important;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
}

#tle-sale-landing .tle-sale-benefit__copy h3 {
  margin: 0 0 12px !important;
  color: #111111 !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.13 !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
  text-transform: uppercase !important;
}

#tle-sale-landing .tle-sale-benefit__copy p {
  max-width: 270px !important;
  margin: 0 !important;
  color: #1f211f !important;
  font-size: 13px !important;
  line-height: 1.62 !important;
}


/* PROPERTIES — encabezado como la referencia */
#tle-sale-landing .tle-sale-properties {
  padding: clamp(58px, 6vw, 84px) 0 clamp(62px, 7vw, 98px) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(113,142,114,.10), transparent 26%),
    #080808 !important;
}

#tle-sale-landing .tle-sale-properties__head {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 28px !important;
  margin-bottom: clamp(28px, 3vw, 42px) !important;
}

#tle-sale-landing .tle-sale-properties__head h2 {
  margin: 0 !important;
  color: #ffffff !important;
  font-family: var(--tle-font-heading) !important;
  font-size: clamp(28px, 3vw, 48px) !important;
  line-height: 1.02 !important;
  font-weight: 800 !important;
  letter-spacing: -.012em !important;
  text-transform: uppercase !important;
}

#tle-sale-landing .tle-sale-properties__head h2 span {
  color: #ffffff !important;
}

#tle-sale-landing .tle-sale-properties__view-all {
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  padding: 13px 22px !important;
  border: 1px solid rgba(255,255,255,.42) !important;
  color: #ffffff !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  transition: background-color .24s ease, border-color .24s ease, color .24s ease, transform .24s ease !important;
}

#tle-sale-landing .tle-sale-properties__view-all:hover,
#tle-sale-landing .tle-sale-properties__view-all:focus-visible {
  background: #718e72 !important;
  border-color: #718e72 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* El shortcode dinámico queda sin encabezado propio */
#tle-sale-landing .tle-sale-properties .tle-featured-grid {
  width: min(1380px, 100%) !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 clamp(22px, 5vw, 80px) !important;
  background: transparent !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-grid__head {
  display: none !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-grid__items {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card {
  border: 1px solid rgba(255,255,255,.18) !important;
  background: #101010 !important;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(113,142,114,.62) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,.24) !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__media {
  height: 205px !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__image {
  filter: saturate(.9) contrast(1.02) !important;
  transition: transform .48s ease, filter .48s ease !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card:hover .tle-featured-card__image {
  transform: scale(1.055) !important;
  filter: saturate(1.05) contrast(1.02) !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__operation {
  background: #718e72 !important;
  color: #ffffff !important;
  border: 0 !important;
  font-weight: 800 !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__content {
  padding: 18px 18px 20px !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__topline h3 {
  color: #ffffff !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__price {
  color: #718e72 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__facts {
  gap: 10px !important;
  color: rgba(255,255,255,.78) !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__cta {
  color: #ffffff !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__cta span {
  color: #ffffff !important;
}


/* Banner más parecido: texto a la izquierda, imagen fuerte */
#tle-sale-landing .tle-sale-banner {
  min-height: 430px !important;
}

#tle-sale-landing .tle-sale-banner h2 {
  font-size: clamp(34px, 4.2vw, 64px) !important;
  line-height: .98 !important;
}

#tle-sale-landing .tle-sale-banner .tle-sale-button {
  min-height: 48px !important;
}


/* Process más compacto como mockup */
#tle-sale-landing .tle-sale-process {
  padding: clamp(52px, 6vw, 82px) 0 !important;
}

#tle-sale-landing .tle-sale-process__grid {
  grid-template-columns: 1fr !important;
  gap: 34px !important;
}

#tle-sale-landing .tle-sale-process__intro {
  text-align: center !important;
}

#tle-sale-landing .tle-sale-process__intro h2 {
  font-size: clamp(26px, 2.6vw, 42px) !important;
}

#tle-sale-landing .tle-sale-process__steps {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  border: 0 !important;
}

#tle-sale-landing .tle-sale-process__steps article {
  min-height: 160px !important;
  padding: 18px 22px !important;
  border: 0 !important;
  position: relative !important;
}

#tle-sale-landing .tle-sale-process__steps article:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  right: -18px !important;
  width: 36px !important;
  height: 1px !important;
  background: rgba(255,255,255,.28) !important;
}

@media (max-width: 1180px) {
  #tle-sale-landing .tle-sale-properties .tle-featured-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #tle-sale-landing .tle-sale-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #tle-sale-landing .tle-sale-process__steps article::after {
    display: none !important;
  }
}

@media (max-width: 980px) {
  #tle-sale-landing .tle-sale-benefits__grid {
    grid-template-columns: 1fr !important;
  }

  #tle-sale-landing .tle-sale-benefit {
    border-right: 0 !important;
    border-bottom: 1px solid #d8dad5 !important;
  }

  #tle-sale-landing .tle-sale-benefit:last-child {
    border-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  #tle-sale-landing .tle-sale-benefit {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    gap: 18px !important;
    padding: 28px 22px !important;
  }

  #tle-sale-landing .tle-sale-benefit__icon svg {
    width: 42px !important;
    height: 42px !important;
  }

  #tle-sale-landing .tle-sale-properties__head {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  #tle-sale-landing .tle-sale-properties__view-all {
    width: 100% !important;
  }

  #tle-sale-landing .tle-sale-properties .tle-featured-grid__items {
    grid-template-columns: 1fr !important;
  }

  #tle-sale-landing .tle-sale-process__steps {
    grid-template-columns: 1fr !important;
  }
}



/* =========================================================
   VENTA LANDING — PROPERTY IMAGE CROP FIX
   v1.0.7
========================================================= */

#tle-sale-landing .tle-sale-properties .tle-featured-card__media {
  aspect-ratio: 16 / 11 !important;
  height: auto !important;
  min-height: 300px !important;
  overflow: hidden !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__image,
#tle-sale-landing .tle-sale-properties .tle-featured-card__media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 300px !important;
  object-fit: cover !important;
  object-position: center bottom !important;
  transform-origin: center bottom !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card:hover .tle-featured-card__image,
#tle-sale-landing .tle-sale-properties .tle-featured-card:hover .tle-featured-card__media img {
  object-position: center bottom !important;
}

@media (max-width: 767px) {
  #tle-sale-landing .tle-sale-properties .tle-featured-card__media {
    aspect-ratio: 4 / 3 !important;
    min-height: 260px !important;
  }

  #tle-sale-landing .tle-sale-properties .tle-featured-card__image,
  #tle-sale-landing .tle-sale-properties .tle-featured-card__media img {
    min-height: 260px !important;
  }
}



/* =========================================================
   VENTA LANDING — POSITION PER PROPERTY
   v1.0.8
========================================================= */

#tle-sale-landing .tle-sale-properties .tle-featured-card__image,
#tle-sale-landing .tle-sale-properties .tle-featured-card__media img {
  object-position: var(--tle-card-image-position, center center) !important;
  transform-origin: var(--tle-card-image-position, center center) !important;
}



/* =========================================================
   VENTA LANDING — HOVER POSITION FIX
   v1.0.9
========================================================= */

#tle-sale-landing .tle-sale-properties .tle-featured-card:hover .tle-featured-card__image,
#tle-sale-landing .tle-sale-properties .tle-featured-card:hover .tle-featured-card__media img,
#tle-sale-landing .tle-sale-properties .tle-featured-card:focus-within .tle-featured-card__image,
#tle-sale-landing .tle-sale-properties .tle-featured-card:focus-within .tle-featured-card__media img {
  object-position: var(--tle-card-image-position, center center) !important;
  transform-origin: var(--tle-card-image-position, center center) !important;
}

#tle-sale-landing .tle-sale-properties .tle-featured-card__image,
#tle-sale-landing .tle-sale-properties .tle-featured-card__media img {
  object-position: var(--tle-card-image-position, center center) !important;
  transform-origin: var(--tle-card-image-position, center center) !important;
}



/* =========================================================
   v1.2.5 — BANNERS LANDINGS OK CANCÚN
   Imagen única para banners/hero de landings.
========================================================= */

#tle-sale-landing .tle-sale-hero__media,
#tle-sale-landing .tle-sale-banner__media,
#tle-rent-landing .tle-rent-hero__media,
#tle-rent-landing .tle-rent-banner__media,
#tle-rent-landing .tle-rent-contact__media,
#tle-submit-property .tle-submit-hero__media,
#tle-submit-property .tle-submit-owner__media,
#tle-submit-property .tle-submit-cta__media {
  background-image: url("https://thelocalestatebrokerage.com/wp-content/uploads/2026/07/ok-cancun.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
