/* =========================================================
   THE LOCAL ESTATE — LANDING CONTACTO
   Shortcode: [tle_landing_contacto]
   v1.1.6
========================================================= */

html {
  scroll-behavior: smooth;
}

#tle-contact-landing {
  --tle-green: #718e72;
  --tle-black: #080808;
  --tle-card: #101010;
  --tle-white: #ffffff;
  --tle-soft: #f8f8f6;
  --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-contact-landing,
#tle-contact-landing * {
  box-sizing: border-box;
}

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

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

.tle-contact-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-contact-button,
.tle-contact-submit {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 28px;
  border: 0;
  font-family: var(--tle-font-heading);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform .28s ease,
    background-color .28s ease,
    color .28s ease,
    border-color .28s ease;
}

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

.tle-contact-button--light,
.tle-contact-submit {
  background: #ffffff;
  color: #111111;
}

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

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

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

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

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

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

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

#tle-contact-landing .tle-contact-hero__media {
  position: absolute;
  inset: -8% 0;
  z-index: 1;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px),
    radial-gradient(circle at 76% 30%, rgba(113,142,114,.20), transparent 31%),
    linear-gradient(135deg, #080808 0%, #141414 45%, #080808 100%);
  background-size: 28px 28px, auto, auto;
  background-position: center;
  transform: scale(1.04);
  will-change: transform;
}

#tle-contact-landing .tle-contact-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.78) 44%, rgba(8,8,8,.58) 100%),
    radial-gradient(circle at 80% 28%, rgba(113,142,114,.24), transparent 34%);
}

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

#tle-contact-landing .tle-contact-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-contact-landing .tle-contact-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-contact-landing .tle-contact-hero h1 span {
  display: block;
  color: var(--tle-green);
}

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

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

#tle-contact-landing .tle-contact-hero__card {
  width: min(390px, 100%);
  padding: 34px;
  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-contact-landing .tle-contact-hero__card > span {
  display: block;
  margin-bottom: 22px;
  color: var(--tle-green);
  font-family: var(--tle-font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

#tle-contact-landing .tle-contact-hero__card a,
#tle-contact-landing .tle-contact-hero__card p {
  display: block;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.55;
}

#tle-contact-landing .tle-contact-hero__card a {
  color: #ffffff;
  font-family: var(--tle-font-heading);
  font-weight: 800;
  letter-spacing: .03em;
}

#tle-contact-landing .tle-contact-hero__card a:hover {
  color: var(--tle-green);
}

/* PATHS */
#tle-contact-landing .tle-contact-paths {
  padding: 0;
  background: var(--tle-soft);
  color: #111111;
}

#tle-contact-landing .tle-contact-paths__grid {
  min-height: 188px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

#tle-contact-landing .tle-contact-paths article {
  min-height: 188px;
  padding: 34px clamp(22px, 2.4vw, 38px);
  border-right: 1px solid #d8dad5;
  background: transparent;
  transition: background-color .24s ease;
}

#tle-contact-landing .tle-contact-paths article:last-child {
  border-right: 0;
}

#tle-contact-landing .tle-contact-paths article:hover {
  background: rgba(113,142,114,.055);
}

#tle-contact-landing .tle-contact-paths span {
  display: block;
  margin-bottom: 28px;
  color: var(--tle-green);
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
}

#tle-contact-landing .tle-contact-paths h2 {
  margin: 0 0 12px;
  color: #111111;
  font-family: var(--tle-font-heading);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

#tle-contact-landing .tle-contact-paths p {
  margin: 0;
  color: #1f211f;
  font-size: 13px;
  line-height: 1.62;
}

/* FORM SECTION */
#tle-contact-landing .tle-contact-form-section {
  padding: clamp(74px, 8vw, 124px) 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(113,142,114,.14), transparent 28%),
    #080808;
  color: #ffffff;
}

#tle-contact-landing .tle-contact-form-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, 1.18fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

#tle-contact-landing .tle-contact-form-section__intro h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: var(--tle-font-heading);
  font-size: clamp(38px, 5vw, 82px);
  line-height: .92;
  font-weight: 800;
  letter-spacing: -.018em;
  text-transform: uppercase;
}

#tle-contact-landing .tle-contact-form-section__intro h2 span {
  display: block;
  color: var(--tle-green);
}

#tle-contact-landing .tle-contact-form-section__intro p {
  width: min(540px, 100%);
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.78;
}

#tle-contact-landing .tle-contact-info {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

#tle-contact-landing .tle-contact-info a {
  width: fit-content;
  color: #ffffff;
  font-family: var(--tle-font-heading);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  transition: color .24s ease;
}

#tle-contact-landing .tle-contact-info a:hover {
  color: var(--tle-green);
}

#tle-contact-landing .tle-contact-form-card {
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}

#tle-contact-landing .tle-contact-alert {
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.16);
  font-size: 13px;
  line-height: 1.5;
}

#tle-contact-landing .tle-contact-alert--success {
  color: #ffffff;
  background: rgba(113,142,114,.22);
  border-color: rgba(113,142,114,.48);
}

#tle-contact-landing .tle-contact-alert--error {
  color: #ffffff;
  background: rgba(165,68,68,.22);
  border-color: rgba(165,68,68,.48);
}

#tle-contact-landing .tle-contact-form {
  display: grid;
  gap: 18px;
}

#tle-contact-landing .tle-contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#tle-contact-landing .tle-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#tle-contact-landing .tle-contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

#tle-contact-landing .tle-contact-form input,
#tle-contact-landing .tle-contact-form select,
#tle-contact-landing .tle-contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  outline: none;
  background: rgba(255,255,255,.06);
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  transition:
    border-color .22s ease,
    background-color .22s ease,
    box-shadow .22s ease;
}

#tle-contact-landing .tle-contact-form select option {
  color: #111111;
}

#tle-contact-landing .tle-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

#tle-contact-landing .tle-contact-form input:focus,
#tle-contact-landing .tle-contact-form select:focus,
#tle-contact-landing .tle-contact-form textarea:focus {
  border-color: rgba(113,142,114,.78);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(113,142,114,.12);
}

#tle-contact-landing .tle-contact-form ::placeholder {
  color: rgba(255,255,255,.42);
}

#tle-contact-landing .tle-contact-submit {
  width: fit-content;
  margin-top: 4px;
}

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

#tle-contact-landing .tle-contact-final__media {
  position: absolute;
  inset: -10% 0;
  z-index: 1;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px),
    radial-gradient(circle at 76% 30%, rgba(113,142,114,.20), transparent 31%),
    linear-gradient(135deg, #080808 0%, #141414 45%, #080808 100%);
  background-size: 28px 28px, auto, auto;
  transform: scale(1.04);
}

#tle-contact-landing .tle-contact-final__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,.62) 100%);
}

#tle-contact-landing .tle-contact-final__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-contact-landing .tle-contact-final 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-contact-landing .tle-contact-final h2 span {
  display: block;
  color: var(--tle-green);
}

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

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

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

.e-con:has(#tle-contact-landing),
.e-con-inner:has(#tle-contact-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: 1100px) {
  #tle-contact-landing .tle-contact-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #tle-contact-landing .tle-contact-paths article {
    border-bottom: 1px solid #d8dad5;
  }
}

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

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

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

  #tle-contact-landing .tle-contact-hero__media,
  #tle-contact-landing .tle-contact-final__media {
    inset: 0;
    transform: none;
  }

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

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

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

  #tle-contact-landing .tle-contact-button,
  #tle-contact-landing .tle-contact-submit {
    width: 100%;
  }

  #tle-contact-landing .tle-contact-paths__grid,
  #tle-contact-landing .tle-contact-form__grid {
    grid-template-columns: 1fr;
  }

  #tle-contact-landing .tle-contact-paths article {
    border-right: 0;
  }

  #tle-contact-landing .tle-contact-form-section__intro h2 {
    font-size: clamp(38px, 11vw, 64px);
  }
}

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

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



/* =========================================================
   CONTACTO — FIX TÍTULO + SELECT DE PROPIEDADES
   v1.1.7
========================================================= */

#tle-contact-landing .tle-contact-form-section__grid {
  grid-template-columns: minmax(420px, .95fr) minmax(520px, 1.05fr) !important;
}

#tle-contact-landing .tle-contact-form-section__intro h2 {
  font-size: clamp(36px, 4.1vw, 68px) !important;
  line-height: .94 !important;
  letter-spacing: -.035em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  text-wrap: balance !important;
}

#tle-contact-landing .tle-contact-form-section__intro h2 span {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
}

#tle-contact-landing .tle-contact-form__field--full {
  grid-column: 1 / -1 !important;
}

#tle-contact-landing [data-tle-contact-property-field].is-hidden {
  display: none !important;
}

#tle-contact-landing .tle-contact-form select[name="property_interest"] {
  min-height: 56px !important;
}

#tle-contact-landing .tle-contact-form select[name="property_interest"] option[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  #tle-contact-landing .tle-contact-form-section__grid {
    grid-template-columns: 1fr !important;
  }

  #tle-contact-landing .tle-contact-form-section__intro h2 {
    max-width: 820px !important;
  }
}

@media (max-width: 767px) {
  #tle-contact-landing .tle-contact-form-section__intro h2 {
    font-size: clamp(36px, 10vw, 58px) !important;
  }
}
