.elementor-89 .elementor-element.elementor-element-d0573d6{--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-89 .elementor-element.elementor-element-2d571d0{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8ed8bf5 */:root{
  /* Paleta oficial IF */
  --if-red: #C4161C;
  --if-red-dark: #8F1115;

  --if-gray: #8C9496;
  --if-gray-light: #F2F2F2;
  --if-white: #FFFFFF;
  --if-ink: #333333;

  --muted: #6b7280;
  --line: #e5e7eb;

  --bg: var(--if-white);
  --soft: var(--if-gray-light);

  --card: #ffffff;
  --shadow: 0 14px 34px rgba(17,24,39,.08);

  --radius: 16px;
  --radius-sm: 12px;
  --container: 1140px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  background: var(--bg);
  color: var(--if-ink);
  line-height: 1.5;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--container), calc(100% - 32px)); margin:0 auto; }

.u-accent{ color: var(--if-red); }

/* Topbar */
.topbar{
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}
.topbar__left{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.topbar__txt{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.topbar__right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.topbar__link{
  font-weight: 800;
  font-size: 13px;
}
.topbar__cta{
  font-weight: 900;
  color: var(--if-red);
  font-size: 13px;
}
.topbar__sep{ color: #c7cbd1; font-weight: 900; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.brand__logo{
  width:70px;
  height:70px;
  object-fit:contain;
}
.brand__name{
  font-weight: 900;
  letter-spacing: .2px;
}
.brand__tag{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav__link{
  padding: 10px 10px;
  border-radius: 999px;
  font-weight: 800;
  color: #374151;
  font-size: 13px;
}
.nav__link:hover{
  background: rgba(17,24,39,.04);
  color: #111827;
}

.header__actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Mobile */
.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background:#111827;
  margin:4px auto;
  border-radius:2px;
}

.nav-mobile{
  display:none;
  padding: 10px 0 14px;
}
.nav-mobile__link{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  color:#111827;
}
.nav-mobile__link:hover{ background: rgba(17,24,39,.04); }
.nav-mobile__actions{ display:grid; gap:10px; padding:10px 0 0; }
.nav-mobile--open{ display:block; }

@media (max-width: 980px){
  .nav{ display:none; }
  .nav-toggle{ display:inline-block; }
}

/* Badges */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight: 800;
  font-size: 12px;
  color:#111827;
}
.badge--solid{
  background: var(--if-red);
  border-color: var(--if-red);
  color:#fff;
}
.badge--outline{
  border-color: rgba(196,22,28,.22);
  color: var(--if-red);
  background: rgba(196,22,28,.05);
}

/* Chips */
.chip{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: rgba(196,22,28,.08);
  color: var(--if-red);
  border: 1px solid rgba(196,22,28,.14);
}
.chip--soft{
  background: #fff;
  color: #111827;
  border: 1px solid var(--line);
}

/* Buttons: OUTLINE ONLY */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding: 12px 16px;

  border: 2px solid var(--if-red);
  background: transparent;
  color: var(--if-red);

  font-weight: 900;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(196,22,28,.06);
  border-color: var(--if-red-dark);
  color: var(--if-red-dark);
  box-shadow: 0 12px 24px rgba(17,24,39,.08);
}
.btn--sm{ padding: 10px 14px; font-size: 13px; }
.btn--full{ width:100%; }

/* HERO (sobrio) */
.hero{
  padding: 26px 0 30px;
  background:
    radial-gradient(900px 360px at 18% 0%, rgba(17,24,39,.06), transparent 60%),
    radial-gradient(900px 360px at 85% 20%, rgba(140,148,150,.10), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
}

.hero__kicker{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}
.hero__title{
  margin:0 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.7px;
}
.hero__sub{
  margin:0 0 14px;
  color: #374151;
  font-weight: 600;
  max-width: 62ch;
}
.hero__bullets{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px 0 14px;
}
.pill{
  background: #fff;
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 13px;
  color: #111827;
}
.hero__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 16px;
}

/* Microproof */
.microproof{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.microproof__item{
  border:1px solid rgba(140,148,150,.25);
  background:#fff;
  border-radius: 14px;
  padding: 10px 12px;
  min-width: 118px;
}
.microproof__k{
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}
.microproof__v{
  font-size: 14px;
  font-weight: 900;
}

/* Lead card */
.hero__lead{ position: relative; }
.lead{
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lead__head{
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 240px at 10% 0%, rgba(140,148,150,.10), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
}
.lead__title{
  font-weight: 900;
  letter-spacing: -0.2px;
  font-size: 16px;
}
.lead__sub{
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.lead__form{ padding: 14px 16px 16px; }

.field{ display:grid; gap:8px; margin-bottom: 12px; }
.label{ font-weight: 900; font-size: 13px; color:#111827; }

.input{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
  font-weight: 600;
}
.input:focus{
  border-color: rgba(196,22,28,.40);
  box-shadow: 0 0 0 4px rgba(196,22,28,.10);
}
.input--area{ resize: vertical; min-height: 110px; }

.fine{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.divider{
  display:flex;
  align-items:center;
  gap:12px;
  margin: 12px 0;
}
.divider::before,
.divider::after{
  content:"";
  height:1px;
  background: var(--line);
  flex:1;
}
.divider span{
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

/* Trust strip */
.trust{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust__inner{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 16px 0;
}
@media (max-width: 980px){
  .trust__inner{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .trust__inner{ grid-template-columns: 1fr; }
}
.trust__item{
  border: 1px solid rgba(140,148,150,.22);
  border-radius: 14px;
  padding: 12px;
  background: rgba(242,242,242,.65);
}
.trust__k{
  font-size: 12px;
  font-weight: 900;
  color: #111827;
}
.trust__v{
  font-size: 13px;
  font-weight: 700;
  color: #374151;
}

/* Sections */
.section{ padding: 48px 0; }
.section--soft{
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{ margin-bottom: 16px; }
.section__head--row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.section__headActions{ display:flex; gap:10px; flex-wrap:wrap; }

.section__title{
  margin:0 0 6px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.4px;
  font-weight: 900;
}
.section__sub{
  margin:0;
  color: var(--muted);
  font-weight: 600;
}

/* Grids */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .grid3{ grid-template-columns: 1fr; }
}

/* Cards */
.card{
  background: #fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 1px 0 rgba(17,24,39,.04);
}
.card__icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-size: 18px;
  background: rgba(196,22,28,.06);
  border: 1px solid rgba(196,22,28,.14);
  margin-bottom: 10px;
}
.card__title{ margin:0 0 6px; font-weight: 900; }
.card__text{ margin:0 0 12px; color:#374151; font-weight: 600; }
.card__link{ display:inline-block; margin-top:10px; font-weight: 900; color: var(--if-red); }
.list{ margin:0; padding-left: 18px; color:#374151; font-weight: 600; }
.list li{ margin: 6px 0; }

.card--featured{
  border-color: rgba(196,22,28,.18);
  box-shadow: 0 16px 40px rgba(17,24,39,.08);
  position: relative;
}
.card--featured::after{
  content:"Más solicitado";
  position:absolute;
  top: 12px; right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(196,22,28,.10);
  color: var(--if-red);
  border: 1px solid rgba(196,22,28,.18);
}

/* Properties */
.property{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 14px 34px rgba(17,24,39,.08);
}
.property__img{
  height: 190px;
  background-size: cover;
  background-position: center;
  background-color:#e5e7eb;
}
.property__body{ padding: 14px; }
.property__badges{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom: 10px; }
.property__title{ margin:0 0 6px; font-weight: 900; }
.property__meta{ margin:0 0 12px; color: var(--muted); font-weight: 600; }
.property__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.property__price{ font-weight: 900; color:#111827; }

/* Note */
.note{
  margin-top: 16px;
  border: 1px solid rgba(140,148,150,.25);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,.70);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.note__title{ font-weight: 900; }
.note__text{ margin:6px 0 0; color:#374151; font-weight: 600; max-width: 70ch; }

/* Split */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
}
.info-cards{ display:grid; gap:10px; margin-top: 14px; }
.info{
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background:#fff;
}
.info__k{ font-weight: 900; }
.info__v{ color: var(--muted); font-weight: 600; }
.split__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

/* Callout */
.callout{
  border: 1px solid rgba(140,148,150,.28);
  background: rgba(242,242,242,.65);
  border-radius: var(--radius);
  padding: 16px;
}
.callout__title{ margin:0 0 8px; font-weight: 900; color:#111827; }
.callout__text{ margin:0; color:#374151; font-weight: 600; }
.callout__note{ margin:10px 0 12px; font-weight: 900; color: var(--if-red); }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px){
  .steps{ grid-template-columns: 1fr; }
}
.step{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  padding: 14px;
}
.step__n{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(196,22,28,.08);
  color: var(--if-red);
  display:grid;
  place-items:center;
  font-weight: 900;
  margin-bottom: 10px;
}
.step__t{ font-weight: 900; margin-bottom: 4px; }
.step__p{ color: var(--muted); font-weight: 600; }

/* CTA + Form (sobrio) */
.section--cta{
  background:
    radial-gradient(900px 360px at 20% 0%, rgba(17,24,39,.06), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
  border-top: 1px solid var(--line);
}
.cta{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 14px;
}
@media (max-width: 980px){
  .cta{ grid-template-columns: 1fr; }
}
.cta__left{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background:#fff;
  box-shadow: var(--shadow);
}
.cta__title{ margin:0 0 6px; font-weight: 900; }
.cta__sub{ margin:0 0 14px; color:#374151; font-weight: 600; }
.cta__buttons{ display:grid; gap:10px; }

.mini{
  margin-top: 14px;
  border: 1px solid rgba(140,148,150,.25);
  border-radius: 14px;
  padding: 12px;
  background: rgba(242,242,242,.55);
}
.mini__k{ font-weight: 900; font-size: 13px; }
.mini__v{ margin-top: 4px; color:#374151; font-weight: 600; font-size: 13px; }

.form{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background:#fff;
  box-shadow: var(--shadow);
}
.form__row{ display:grid; gap:8px; margin-bottom: 12px; }
.form__fine{ margin: 10px 0 0; color: var(--muted); font-size: 12px; font-weight: 600; }

/* FAQ */
.faq{ display:grid; gap: 10px; }
.faq__item{
  border:1px solid var(--line);
  border-radius: 14px;
  background:#fff;
  padding: 12px 14px;
}
.faq__q{ cursor:pointer; font-weight: 900; }
.faq__a{ margin-top: 10px; color: var(--muted); font-weight: 600; }

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer__inner{
  padding: 18px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.footer__name{ font-weight: 900; }
.footer__desc{ color: var(--muted); font-weight: 600; font-size: 13px; margin-top: 4px; }
.footer__meta{
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.footer__meta .sep{ color:#c7cbd1; font-weight: 900; }
.footer__links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  color:#374151;
  font-weight: 800;
  font-size: 13px;
}
.footer__links a:hover{ color: var(--if-red); }

/* WhatsApp float (puede quedar sólido para conversión) */
.wafloat{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--if-red);
  color:#fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(196,22,28,.22);
}
.wafloat:hover{ background: var(--if-red-dark); }
.wafloat__icon{
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display:grid;
  place-items:center;
  font-size: 12px;
}
.wafloat__txt{ font-size: 13px; }/* End custom CSS */