/* =========================================================
   THE LOCAL ESTATE — LANDING RENTA
   Shortcode: [tle_landing_renta]
========================================================= */

#tle-rent-landing {
  --tle-green: #718e72;
  --tle-black: #080808;
  --tle-card: #101010;
  --tle-white: #ffffff;
  --tle-muted: rgba(255,255,255,.72);

  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: Arial, Helvetica, sans-serif;
}

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

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

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

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

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

.tle-rent-hero__media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.78) 40%, rgba(8,8,8,.22) 100%),
    url("https://thelocalestatebrokerage.com/wp-content/uploads/2026/07/ok-cancun.jpg");
  background-size: cover;
  background-position: center center;
  filter: grayscale(1) contrast(1.04) brightness(.82);
  transform: scale(1.02);
}

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

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

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

.tle-rent-hero h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .88;
  font-weight: 500;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

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

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

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

.tle-rent-button {
  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-rent-button:hover {
  transform: translateY(-3px);
}

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

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

.tle-rent-button--secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,.42);
  color: #ffffff;
}

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

.tle-rent-hero__card {
  padding: 38px;
  background: rgba(16,16,16,.86);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}

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

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

.tle-rent-hero__card p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.7;
}

/* BENEFITS */
.tle-rent-benefits {
  background: #ffffff;
  color: #171817;
  padding: clamp(48px, 6vw, 76px) 0;
}

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

.tle-rent-benefit {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid #dedfdb;
}

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

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

.tle-rent-benefit h2 {
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.05;
  font-weight: 500;
}

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

/* DYNAMIC PROPERTIES */
.tle-rent-properties {
  background: #080808;
}

.tle-rent-properties .tle-featured-grid {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* PROCESS */
.tle-rent-process {
  padding: clamp(64px, 8vw, 110px) 0;
  background: #080808;
  color: #ffffff;
}

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

.tle-rent-process__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: uppercase;
}

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

.tle-rent-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-rent-process__steps article {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

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

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

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

/* CONTACT */
.tle-rent-contact {
  padding: clamp(56px, 7vw, 92px) 0;
  background: #ffffff;
  color: #171817;
}

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

.tle-rent-contact h2 {
  margin: 0 0 16px;
  color: #111111;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.05;
  font-weight: 500;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

.e-con:has(#tle-rent-landing),
.e-con-inner:has(#tle-rent-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-rent-landing {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

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

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

  .tle-rent-benefit {
    border-right: 0;
    border-bottom: 1px solid #dedfdb;
  }

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

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

@media (max-width: 767px) {
  .tle-rent-hero {
    min-height: auto;
  }

  .tle-rent-hero__grid {
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .tle-rent-hero h1 {
    font-size: clamp(40px, 13vw, 64px);
  }

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

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

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

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



/* =========================================================
   THE LOCAL ESTATE — LANDING RENTA VISUAL V2
   Shortcode: [tle_landing_renta]
   v1.1.4
========================================================= */

html {
  scroll-behavior: smooth;
}

#tle-rent-landing {
  --tle-green: #718e72;
  --tle-black: #080808;
  --tle-card: #101010;
  --tle-white: #ffffff;
  --tle-muted: rgba(255,255,255,.72);
  --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);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

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

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

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

.tle-rent-button:hover,
.tle-rent-button:focus-visible {
  transform: translateY(-3px);
}

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

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

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

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

/* Motion seguro */
#tle-rent-landing .tle-motion {
  opacity: 1;
  transform: none;
}

html.tle-motion-enabled #tle-rent-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-rent-landing .tle-motion[data-motion="fade-left"] {
  transform: translateX(34px);
}

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

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

#tle-rent-landing .tle-rent-hero__media {
  position: absolute;
  inset: -8% 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(.78);
  transform: scale(1.04);
  will-change: transform;
}

#tle-rent-landing .tle-rent-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 76% 30%, rgba(113,142,114,.20), transparent 31%),
    linear-gradient(90deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.78) 44%, rgba(8,8,8,.22) 100%),
    linear-gradient(180deg, rgba(8,8,8,.18) 0%, rgba(8,8,8,.74) 100%);
}

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

#tle-rent-landing .tle-rent-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-rent-landing .tle-rent-hero__content {
  width: min(760px, 100%);
}

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

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

#tle-rent-landing .tle-rent-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-rent-landing .tle-rent-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

#tle-rent-landing .tle-rent-hero__card {
  position: relative;
  width: min(370px, 100%);
  padding: 34px;
  overflow: hidden;
  background: rgba(18,18,18,.78);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

#tle-rent-landing .tle-rent-hero__card > span {
  display: block;
  margin-bottom: 20px;
  color: var(--tle-green);
  font-family: var(--tle-font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

#tle-rent-landing .tle-rent-hero__card-item {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

#tle-rent-landing .tle-rent-hero__card-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--tle-font-heading);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

#tle-rent-landing .tle-rent-hero__card-item p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.62;
}

/* BENEFITS */
#tle-rent-landing .tle-rent-benefits--preview {
  padding: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(113,142,114,.06), transparent 28%),
    #f8f8f6;
  color: #111111;
}

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

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

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

#tle-rent-landing .tle-rent-benefit:last-child {
  border-right: 0;
}

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

#tle-rent-landing .tle-rent-benefit__icon {
  color: #111111;
}

#tle-rent-landing .tle-rent-benefit__icon svg {
  width: 54px;
  height: 54px;
}

#tle-rent-landing .tle-rent-benefit__copy span {
  display: block;
  margin: 0 0 18px;
  color: var(--tle-green);
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
}

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

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

/* PROPERTIES */
#tle-rent-landing .tle-rent-properties {
  position: relative;
  padding: clamp(58px, 6vw, 84px) 0 clamp(62px, 7vw, 98px);
  background:
    radial-gradient(circle at 100% 0%, rgba(113,142,114,.10), transparent 26%),
    #080808;
}

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

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

#tle-rent-landing .tle-rent-properties__head h2 span {
  color: #ffffff;
}

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

#tle-rent-landing .tle-rent-properties__view-all:hover,
#tle-rent-landing .tle-rent-properties__view-all:focus-visible {
  background: var(--tle-green);
  border-color: var(--tle-green);
  color: #ffffff;
  transform: translateY(-2px);
}

#tle-rent-landing .tle-rent-properties .tle-featured-grid {
  width: min(1380px, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 80px);
  background: transparent;
}

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

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

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

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

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

#tle-rent-landing .tle-rent-properties .tle-featured-card__image,
#tle-rent-landing .tle-rent-properties .tle-featured-card__media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: var(--tle-card-image-position, center center) !important;
  transform-origin: var(--tle-card-image-position, center center) !important;
  filter: saturate(.9) contrast(1.02);
  transition: transform .48s ease, filter .48s ease;
}

#tle-rent-landing .tle-rent-properties .tle-featured-card:hover .tle-featured-card__image,
#tle-rent-landing .tle-rent-properties .tle-featured-card:hover .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;
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.02);
}

#tle-rent-landing .tle-rent-properties .tle-featured-card__operation {
  background: var(--tle-green);
  color: #ffffff;
  border: 0;
  font-weight: 800;
}

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

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

#tle-rent-landing .tle-rent-properties .tle-featured-card__price {
  color: var(--tle-green);
  font-size: 15px;
  font-weight: 800;
}

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

#tle-rent-landing .tle-rent-properties .tle-featured-card__cta,
#tle-rent-landing .tle-rent-properties .tle-featured-card__cta span {
  color: #ffffff;
}

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

#tle-rent-landing .tle-rent-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(.80);
  transform: scale(1.04);
  will-change: transform;
}

#tle-rent-landing .tle-rent-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-rent-landing .tle-rent-banner .tle-rent-shell {
  position: relative;
  z-index: 3;
}

#tle-rent-landing .tle-rent-banner__content {
  width: min(720px, 100%);
  padding: clamp(78px, 8vw, 118px) 0;
}

#tle-rent-landing .tle-rent-banner h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: var(--tle-font-heading);
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.012em;
  text-transform: uppercase;
}

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

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

/* FOR WHO */
#tle-rent-landing .tle-rent-for {
  padding: clamp(58px, 6vw, 86px) 0;
  background: #f8f8f6;
  color: #111111;
}

#tle-rent-landing .tle-rent-for__head {
  text-align: center;
  margin: 0 auto 34px;
}

#tle-rent-landing .tle-rent-for__head h2 {
  margin: 0;
  color: #111111;
  font-family: var(--tle-font-heading);
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -.012em;
  text-transform: uppercase;
}

#tle-rent-landing .tle-rent-for__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d8dad5;
  border-bottom: 1px solid #d8dad5;
}

#tle-rent-landing .tle-rent-for__grid article {
  min-height: 170px;
  padding: 30px;
  border-right: 1px solid #d8dad5;
}

#tle-rent-landing .tle-rent-for__grid article:last-child {
  border-right: 0;
}

#tle-rent-landing .tle-rent-for__grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--tle-green);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
}

#tle-rent-landing .tle-rent-for__grid h3 {
  margin: 0 0 10px;
  color: #111111;
  font-family: var(--tle-font-heading);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

#tle-rent-landing .tle-rent-for__grid p {
  margin: 0;
  color: #343834;
  font-size: 13px;
  line-height: 1.62;
}

/* PROCESS */
#tle-rent-landing .tle-rent-process {
  padding: clamp(52px, 6vw, 82px) 0;
  background: #080808;
  color: #ffffff;
}

#tle-rent-landing .tle-rent-process__intro {
  text-align: center;
  margin-bottom: 38px;
}

#tle-rent-landing .tle-rent-process__intro h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--tle-font-heading);
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -.012em;
  text-transform: uppercase;
}

#tle-rent-landing .tle-rent-process__intro h2 span {
  color: var(--tle-green);
}

#tle-rent-landing .tle-rent-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 0;
}

#tle-rent-landing .tle-rent-process__steps article {
  min-height: 160px;
  padding: 18px 22px;
  border: 0;
  position: relative;
  background: transparent;
}

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

#tle-rent-landing .tle-rent-process__steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--tle-green);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
}

#tle-rent-landing .tle-rent-process__steps h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--tle-font-heading);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

#tle-rent-landing .tle-rent-process__steps p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.55;
}

/* CTA */
#tle-rent-landing .tle-rent-contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 330px;
  display: flex;
  align-items: center;
  background: #080808;
}

#tle-rent-landing .tle-rent-contact__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(.70);
  transform: scale(1.04);
}

#tle-rent-landing .tle-rent-contact__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,.96) 0%, rgba(8,8,8,.80) 48%, rgba(8,8,8,.48) 100%);
}

#tle-rent-landing .tle-rent-contact__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  padding-top: clamp(58px, 6vw, 88px);
  padding-bottom: clamp(58px, 6vw, 88px);
}

#tle-rent-landing .tle-rent-contact h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: var(--tle-font-heading);
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.012em;
  text-transform: uppercase;
}

#tle-rent-landing .tle-rent-contact h2 span {
  color: var(--tle-green);
}

#tle-rent-landing .tle-rent-contact p {
  width: min(560px, 100%);
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.7;
}

#tle-rent-landing .tle-rent-contact__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

#tle-rent-landing .tle-rent-contact__phone {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,.42);
  color: #ffffff;
  font-family: var(--tle-font-heading);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
  transition:
    background-color .28s ease,
    border-color .28s ease,
    color .28s ease,
    transform .28s ease;
}

#tle-rent-landing .tle-rent-contact__phone:hover,
#tle-rent-landing .tle-rent-contact__phone:focus-visible {
  background: var(--tle-green);
  border-color: var(--tle-green);
  color: #ffffff;
  transform: translateY(-3px);
}

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

.e-con:has(#tle-rent-landing),
.e-con-inner:has(#tle-rent-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;
}

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

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

  #tle-rent-landing .tle-rent-process__steps article::after {
    display: none;
  }
}

@media (max-width: 980px) {
  #tle-rent-landing .tle-rent-hero__grid,
  #tle-rent-landing .tle-rent-contact__grid {
    grid-template-columns: 1fr;
  }

  #tle-rent-landing .tle-rent-benefits__grid,
  #tle-rent-landing .tle-rent-for__grid {
    grid-template-columns: 1fr;
  }

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

  #tle-rent-landing .tle-rent-benefit:last-child,
  #tle-rent-landing .tle-rent-for__grid article:last-child {
    border-bottom: 0;
  }

  #tle-rent-landing .tle-rent-for__grid article {
    border-right: 0;
    border-bottom: 1px solid #d8dad5;
  }
}

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

  #tle-rent-landing .tle-rent-hero {
    min-height: auto;
  }

  #tle-rent-landing .tle-rent-hero__media,
  #tle-rent-landing .tle-rent-banner__media,
  #tle-rent-landing .tle-rent-contact__media {
    inset: 0;
    transform: none;
  }

  #tle-rent-landing .tle-rent-hero__grid {
    padding-top: 98px;
    padding-bottom: 68px;
  }

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

  #tle-rent-landing .tle-rent-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  #tle-rent-landing .tle-rent-button {
    width: 100%;
  }

  #tle-rent-landing .tle-rent-benefit {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    padding: 28px 22px;
  }

  #tle-rent-landing .tle-rent-benefit__icon svg {
    width: 42px;
    height: 42px;
  }

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

  #tle-rent-landing .tle-rent-properties__view-all {
    width: 100%;
  }

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

  #tle-rent-landing .tle-rent-properties .tle-featured-card__media {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }

  #tle-rent-landing .tle-rent-process__steps {
    grid-template-columns: 1fr;
  }

  #tle-rent-landing .tle-rent-contact__actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  #tle-rent-landing .tle-motion,
  html.tle-motion-enabled #tle-rent-landing .tle-motion {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  #tle-rent-landing .tle-parallax-media {
    transform: none !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;
}
