@font-face {
  font-family: "Century Gothic Local";
  src: local("Century Gothic");
  font-display: swap;
}

:root {
  --orange: #da9e22;
  --black: #1d1c1a;
  --light-gray: #ceccc7;
  --gray: #6b6866;
  --white: #ffffff;
  --page: #f7f6f3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: var(--black);
  background: var(--page);

  font-family:
    "Century Gothic Local",
    "Century Gothic",
    Arial,
    sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

section {
  scroll-margin-top: 90px;
}


/* =====================================================
   TEXTOS
===================================================== */

.eyebrow {
  margin: 0 0 18px;

  color: var(--orange);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  margin: 0;

  font-family:
    "Arial Black",
    Impact,
    sans-serif;

  line-height: 0.96;
  letter-spacing: -0.035em;
}

h2 {
  font-size:
    clamp(
      42px,
      5vw,
      76px
    );
}

h3 {
  font-size:
    clamp(
      25px,
      2.4vw,
      40px
    );

  line-height: 1.05;
}

.section-description {
  max-width: 650px;

  margin: 24px 0 0;

  color: var(--gray);

  font-size: 18px;
  line-height: 1.7;
}


/* =====================================================
   HEADER
===================================================== */

.header {
  position: sticky;
  top: 0;

  z-index: 20;

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

  padding:
    18px
    5vw;

  background:
    rgba(
      247,
      246,
      243,
      0.95
    );

  backdrop-filter:
    blur(12px);

  border-bottom:
    1px solid
    rgba(
      29,
      28,
      26,
      0.08
    );
}

.brand {
  display: flex;
  align-items: center;

  gap: 12px;

  font-weight: 700;

  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;

  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;

  gap: 8px;

  font-size: 13px;
}

.nav a {
  position: relative;

  padding:
    9px
    14px;

  border-radius: 999px;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


/* HOVER */

.nav a:hover {
  color: var(--black);

  background:
    rgba(
      218,
      158,
      34,
      0.14
    );

  transform:
    translateY(-2px);
}


/* SECCIÓN ACTIVA */

.nav a.active {
  color: var(--black);

  background: var(--orange);

  transform:
    translateY(-2px);

  box-shadow:
    0
    7px
    18px
    rgba(
      218,
      158,
      34,
      0.25
    );
}

.menu-toggle {
  display: none;

  padding: 0;

  border: 0;

  background: transparent;

  color: var(--black);

  font-size: 26px;

  cursor: pointer;
}


/* =====================================================
   BOTONES
===================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding:
    15px
    23px;

  background: var(--orange);

  border:
    2px solid
    var(--orange);

  border-radius: 999px;

  color: var(--black);

  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.button:hover {
  transform:
    translateY(-2px);
}

.button-outline {
  background: transparent;

  border-color: var(--black);
}

.button-outline:hover {
  background: var(--black);

  color: var(--white);
}

.button-dark {
  background: var(--black);

  border-color: var(--black);

  color: var(--white);
}


/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  min-height:
    calc(
      100vh
      -
      79px
    );

  display: grid;

  grid-template-columns:
    0.88fr
    1.12fr;

  align-items: center;

  gap: 4vw;

  padding:
    38px
    5vw
    0;

  overflow: hidden;

  background: var(--page);
}


/* TEXTO */

.hero-content {
  max-width: 620px;

  padding:
    55px
    0
    90px;
}

.hero .eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 610px;

  margin: 0;

  font-family:
    "Arial Black",
    Impact,
    sans-serif;

  font-size:
    clamp(
      50px,
      5vw,
      82px
    );

  line-height: 1.02;

  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;

  margin-bottom: 4px;

  font-family:
    "Century Gothic Local",
    "Century Gothic",
    Arial,
    sans-serif;

  font-weight: 400;

  letter-spacing: -0.045em;
}

.hero-line {
  width: 48px;
  height: 2px;

  margin:
    26px
    0;

  background:
    var(--orange);
}

.hero-text {
  max-width: 520px;

  margin:
    0
    0
    34px;

  color: var(--gray);

  font-size:
    clamp(
      16px,
      1.25vw,
      19px
    );

  line-height: 1.7;
}

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}


/* FOTO */

.hero-visual {
  position: relative;

  align-self: stretch;

  min-height: 620px;

  overflow: hidden;

  border-radius:
    95px
    28px
    0
    28px;

  clip-path:
    polygon(
      15% 0,
      100% 0,
      100% 100%,
      0 100%
    );
}

.hero-family {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center center;

  transition:
    transform
    1s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}

.hero:hover
.hero-family {
  transform:
    scale(1.025);
}


/* LOGO F&J ARRIBA A LA DERECHA DE LA FOTO */

.hero-watermark {
  position: absolute;

  top: 28px;
  right: 28px;

  width: 92px;
  height: auto;

  z-index: 3;

  opacity: 0.9;

  object-fit: contain;

  pointer-events: none;

  filter:
    drop-shadow(
      0
      2px
      8px
      rgba(
        0,
        0,
        0,
        0.14
      )
    );
}


/* =====================================================
   BENEFICIOS
===================================================== */

.benefits {
  position: relative;

  z-index: 3;

  width: 88%;
  max-width: 1450px;

  margin:
    -40px
    auto
    0;

  padding:
    30px
    35px;

  display: grid;

  grid-template-columns:
    repeat(
      5,
      1fr
    );

  background:
    var(--white);

  border-radius: 24px;

  box-shadow:
    0
    20px
    60px
    rgba(
      29,
      28,
      26,
      0.12
    );
}

.benefit {
  min-width: 0;

  padding:
    10px
    26px
    18px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border-right:
    1px solid
    rgba(
      29,
      28,
      26,
      0.1
    );
}

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

.benefit-icon {
  width: 100%;
  height: 82px;

  margin-bottom: 14px;

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

.benefit-icon img {
  width: auto;
  height: auto;

  max-width: 72px;
  max-height: 72px;

  object-fit: contain;
}

.benefit h3 {
  min-height: 46px;

  margin:
    0
    0
    14px;

  font-size: 18px;
  line-height: 1.25;
}

.benefit p {
  margin: 0;

  color: var(--gray);

  font-size: 13px;
  line-height: 1.65;
}


/* =====================================================
   DESARROLLOS
===================================================== */

.section {
  padding:
    130px
    7vw
    110px;

  background:
    var(--white);
}

.section-heading {
  margin-bottom: 50px;
}

.project-grid-real {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      1fr
    );

  gap: 24px;
}

.real-project-card {
  min-height: 560px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background:
    var(--page);

  border:
    1px solid
    rgba(
      29,
      28,
      26,
      0.08
    );

  border-radius: 26px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.real-project-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    0
    18px
    45px
    rgba(
      29,
      28,
      26,
      0.1
    );
}

.project-image {
  width: 100%;
  height: 250px;

  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform
    0.45s
    ease;
}

.real-project-card:hover
.project-image img {
  transform:
    scale(1.04);
}

.real-project-content {
  flex: 1;

  padding: 28px;

  display: flex;
  flex-direction: column;
}

.project-badge {
  align-self: flex-start;

  margin-bottom: 22px;

  padding:
    8px
    12px;

  background:
    var(--orange);

  border-radius: 999px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.1em;
}

.project-badge-dark {
  background:
    var(--gray);

  color:
    var(--white);
}

.real-project-content h3 {
  font-size: 31px;
}

.project-location {
  margin:
    12px
    0
    22px;

  color:
    var(--gray);

  line-height: 1.5;
}

.project-data {
  display: flex;
  flex-direction: column;

  gap: 12px;

  padding:
    20px
    0;

  border-top:
    1px solid
    rgba(
      29,
      28,
      26,
      0.1
    );

  border-bottom:
    1px solid
    rgba(
      29,
      28,
      26,
      0.1
    );

  font-size: 14px;
}

.project-link {
  align-self: flex-start;

  margin-top: auto;

  padding:
    25px
    0
    4px;

  border-bottom:
    1px solid
    var(--black);

  font-size: 14px;
  font-weight: 700;
}

.real-project-card-dark {
  background:
    var(--black);

  color:
    var(--white);
}

.real-project-card-dark
.project-location,
.real-project-card-dark
.project-data {
  color:
    var(--light-gray);
}

.real-project-card-dark
.project-data {
  border-color:
    rgba(
      255,
      255,
      255,
      0.15
    );
}

.project-link-light {
  border-color:
    var(--white);
}

/* =====================================================
   PROPIEDADES EN VENTA
===================================================== */

.properties {
  padding:
    95px
    0
    105px;

  overflow: hidden;

  background:
    var(--black);

  color:
    var(--white);
}


/* =====================================================
   ENCABEZADO
===================================================== */

.properties-heading {
  padding:
    0
    7vw;

  margin-bottom: 42px;
}

.properties-heading-row {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 35px;
}

.properties-heading h2 {
  max-width: 700px;

  color:
    var(--white);

  font-size:
    clamp(
      42px,
      4.3vw,
      64px
    );

  line-height: 1;
}

.properties-heading-row p {
  max-width: 560px;

  margin:
    20px
    0
    0;

  color:
    var(--light-gray);

  font-size: 15px;

  line-height: 1.65;
}


/* =====================================================
   FLECHAS
===================================================== */

.properties-arrows {
  display: flex;

  gap: 10px;
}

.property-arrow {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.35
    );

  border-radius: 50%;

  background:
    transparent;

  color:
    var(--white);

  font-size: 20px;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.property-arrow:hover {
  transform:
    translateY(-2px);

  background:
    var(--orange);

  border-color:
    var(--orange);

  color:
    var(--black);
}


/* =====================================================
   CARRUSEL
===================================================== */

.properties-carousel {
  position: relative;

  width: 100%;

  overflow: hidden;

  cursor: grab;
}

.properties-carousel:active {
  cursor: grabbing;
}

.properties-track {
  display: flex;

  gap: 22px;

  padding:
    10px
    27vw
    26px;

  transition:
    transform
    0.7s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );

  will-change:
    transform;
}


/* =====================================================
   TARJETAS
===================================================== */

.property-card {
  flex:
    0
    0
    46vw;

  max-width: 700px;

  overflow: hidden;

  background:
    var(--page);

  border-radius: 24px;

  color:
    var(--black);

  opacity: 0.42;

  transform:
    scale(0.92);

  cursor: pointer;

  transition:
    opacity 0.55s ease,
    transform 0.55s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    ),
    box-shadow 0.4s ease;
}

.property-card.active {
  opacity: 1;

  transform:
    scale(1);

  box-shadow:
    0
    24px
    60px
    rgba(
      0,
      0,
      0,
      0.28
    );
}

.property-card:hover {
  box-shadow:
    0
    22px
    50px
    rgba(
      0,
      0,
      0,
      0.24
    );
}


/* =====================================================
   FOTO
===================================================== */

.property-photo {
  position: relative;

  height: 340px;

  overflow: hidden;

  background:
    #e7e5df;
}

.property-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform
    0.65s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}

.property-card:hover
.property-photo img {
  transform:
    scale(1.025);
}


/* =====================================================
   BADGE
===================================================== */

.property-status {
  position: absolute;

  top: 18px;
  left: 18px;

  padding:
    7px
    11px;

  background:
    var(--orange);

  border-radius: 999px;

  color:
    var(--black);

  font-size: 9px;
  font-weight: 700;

  letter-spacing:
    0.11em;
}


/* =====================================================
   INFORMACIÓN
===================================================== */

.property-summary {
  padding:
    22px
    24px
    24px;
}

.property-title-row {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;
}

.property-location {
  margin:
    0
    0
    8px;

  color:
    var(--gray);

  font-size: 11px;

  letter-spacing:
    0.04em;
}

.property-card h3 {
  font-size:
    clamp(
      24px,
      2.1vw,
      34px
    );

  line-height: 1.05;
}

.property-open {
  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border:
    1px solid
    rgba(
      29,
      28,
      26,
      0.2
    );

  border-radius: 50%;

  font-size: 19px;
}

.property-price {
  display: block;

  margin-top: 16px;

  color:
    var(--orange);

  font-family:
    "Arial Black",
    Impact,
    sans-serif;

  font-size:
    clamp(
      22px,
      2vw,
      30px
    );

  line-height: 1;
}

.property-features {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 16px;
}

.property-features span {
  padding:
    7px
    11px;

  background:
    rgba(
      29,
      28,
      26,
      0.06
    );

  border-radius: 999px;

  color:
    var(--gray);

  font-size: 11px;
}


/* =====================================================
   MODAL
===================================================== */

.property-modal {
  position: fixed;

  inset: 0;

  z-index: 100000;

  display: flex;

  align-items: center;
  justify-content: center;

  padding:
    30px;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.property-modal.open {
  opacity: 1;

  visibility: visible;
}

.property-modal-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(
      0,
      0,
      0,
      0.78
    );

  backdrop-filter:
    blur(8px);
}

.property-modal-panel {
  position: relative;

  z-index: 2;

  width:
    min(
      1080px,
      100%
    );

  max-height:
    calc(
      100vh
      -
      60px
    );

  overflow-y: auto;

  background:
    var(--page);

  border-radius: 26px;

  transform:
    translateY(30px)
    scale(0.97);

  transition:
    transform
    0.45s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}

.property-modal.open
.property-modal-panel {
  transform:
    translateY(0)
    scale(1);
}

.property-modal-close {
  position: absolute;

  top: 16px;
  right: 16px;

  z-index: 5;

  width: 42px;
  height: 42px;

  border: 0;

  border-radius: 50%;

  background:
    var(--white);

  color:
    var(--black);

  font-size: 26px;

  cursor: pointer;

  box-shadow:
    0
    6px
    18px
    rgba(
      0,
      0,
      0,
      0.12
    );
}

.property-modal-grid {
  display: grid;

  grid-template-columns:
    1.05fr
    0.95fr;

  min-height: 590px;
}

.property-modal-image {
  overflow: hidden;

  min-height: 590px;
}

.property-modal-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.property-modal-content {
  padding:
    52px
    45px;
}

.property-modal-location {
  margin:
    0
    0
    13px;

  color:
    var(--orange);

  font-size: 10px;
  font-weight: 700;

  letter-spacing:
    0.13em;
}

.property-modal-content h2 {
  font-size:
    clamp(
      34px,
      3.7vw,
      54px
    );
}

.property-modal-price {
  display: block;

  margin-top: 20px;

  color:
    var(--orange);

  font-family:
    "Arial Black",
    Impact,
    sans-serif;

  font-size: 26px;
}

.property-modal-features {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 20px;
}

.property-modal-features span {
  padding:
    8px
    11px;

  background:
    rgba(
      29,
      28,
      26,
      0.07
    );

  border-radius: 999px;

  color:
    var(--gray);

  font-size: 11px;
}

.property-modal-line {
  width: 46px;
  height: 2px;

  margin:
    28px
    0;

  background:
    var(--orange);
}

.property-modal-description {
  color:
    var(--gray);

  font-size: 14px;

  line-height: 1.75;
}

.property-modal-details {
  margin:
    26px
    0;

  display: grid;

  grid-template-columns:
    1fr
    1fr;
}

.property-detail {
  padding:
    11px
    0;

  border-bottom:
    1px solid
    rgba(
      29,
      28,
      26,
      0.1
    );
}

.property-detail span {
  display: block;

  margin-bottom:
    4px;

  color:
    var(--gray);

  font-size: 9px;

  letter-spacing:
    0.1em;

  text-transform:
    uppercase;
}

.property-detail strong {
  font-size: 13px;
}


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

@media (max-width: 1100px) {

  .properties-track {
    padding:
      10px
      22vw
      25px;
  }

  .property-card {
    flex-basis:
      56vw;

    max-width:
      650px;
  }

}


@media (max-width: 900px) {

  .properties-heading-row {
    align-items:
      flex-start;

    flex-direction:
      column;
  }

  .properties-track {
    padding:
      10px
      11vw
      25px;
  }

  .property-card {
    flex-basis:
      76vw;
  }

  .property-photo {
    height: 360px;
  }

  .property-modal-grid {
    grid-template-columns:
      1fr;
  }

  .property-modal-image {
    min-height: 380px;
    height: 380px;
  }

}


@media (max-width: 600px) {

  .properties {
    padding:
      70px
      0
      80px;
  }

  .properties-heading {
    padding:
      0
      5vw;

    margin-bottom:
      32px;
  }

  .properties-heading h2 {
    font-size:
      clamp(
        38px,
        11vw,
        52px
      );
  }

  .properties-heading-row p {
    font-size: 14px;
  }

  .properties-track {
    padding:
      5px
      7vw
      20px;

    gap: 16px;
  }

  .property-card {
    flex-basis:
      86vw;

    border-radius:
      20px;
  }

  .property-photo {
    height: 290px;
  }

  .property-summary {
    padding:
      19px
      20px
      21px;
  }

  .property-card h3 {
    font-size:
      clamp(
        23px,
        7vw,
        30px
      );
  }

  .property-price {
    font-size:
      24px;
  }

  .properties-arrows {
    display: none;
  }

  .property-modal {
    padding: 12px;
  }

  .property-modal-panel {
    max-height:
      calc(
        100vh
        -
        24px
      );

    border-radius: 18px;
  }

  .property-modal-image {
    min-height: 280px;
    height: 280px;
  }

  .property-modal-content {
    padding:
      32px
      22px;
  }

  .property-modal-details {
    grid-template-columns:
      1fr;
  }

}

/* =====================================================
   LOTES
===================================================== */

.lots {
  padding:
    120px
    7vw;

  background:
    var(--page);
}

.lots-heading {
  max-width: 900px;

  margin-bottom: 50px;
}

.lots-heading > p:last-child {
  max-width: 600px;

  color:
    var(--gray);

  font-size: 18px;
  line-height: 1.7;
}

.lots-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 24px;
}

.lot-card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  background:
    var(--white);

  border:
    1px solid
    rgba(
      29,
      28,
      26,
      0.08
    );

  border-radius: 26px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lot-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    0
    18px
    45px
    rgba(
      29,
      28,
      26,
      0.1
    );
}

.lot-card-orange {
  background:
    var(--orange);
}

.lot-image {
  width: 100%;
  height: 300px;

  overflow: hidden;
}

.lot-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform
    0.45s
    ease;
}

.lot-card:hover
.lot-image img {
  transform:
    scale(1.04);
}

.lot-content {
  flex: 1;

  padding:
    34px
    38px
    38px;

  display: flex;
  flex-direction: column;
}

.lot-top {
  margin-bottom: 45px;

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

.lot-status {
  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.lot-arrow {
  font-size: 28px;
}

.lot-card h3 {
  margin: 0;

  font-size:
    clamp(
      30px,
      3vw,
      46px
    );
}

.lot-card p {
  max-width: 500px;

  margin:
    18px
    0
    24px;

  color:
    var(--gray);

  line-height: 1.6;
}

.lot-card-orange p {
  color:
    var(--black);
}

.lot-card a {
  align-self: flex-start;

  margin-top: auto;

  padding-bottom: 5px;

  border-bottom:
    1px solid
    var(--black);

  font-size: 14px;
  font-weight: 700;
}


/* =====================================================
   SERVICIOS
===================================================== */

.services {
  padding:
    100px
    5vw
    110px;

  background:
    var(--white);
}

.services-heading {
  max-width: 850px;

  margin:
    0
    auto
    55px;

  text-align: center;
}

.services-heading .eyebrow {
  margin-bottom: 12px;
}

.heading-line {
  width: 50px;
  height: 3px;

  margin:
    22px
    auto;

  background:
    var(--orange);
}

.services-intro {
  max-width: 650px;

  margin:
    0
    auto;

  color:
    var(--gray);

  font-size: 18px;
  line-height: 1.7;
}

.services-grid {
  max-width: 1500px;

  margin:
    0
    auto;

  display: grid;

  grid-template-columns:
    repeat(
      5,
      1fr
    );

  gap: 18px;
}

.service-card {
  overflow: hidden;

  background:
    var(--white);

  border:
    1px solid
    rgba(
      29,
      28,
      26,
      0.08
    );

  border-radius: 22px;

  box-shadow:
    0
    12px
    35px
    rgba(
      29,
      28,
      26,
      0.07
    );

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    0
    20px
    45px
    rgba(
      29,
      28,
      26,
      0.13
    );
}

.service-image {
  height: 310px;

  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform
    0.45s
    ease;
}

.service-card:hover
.service-image img {
  transform:
    scale(1.04);
}

.service-content {
  padding:
    30px
    22px
    32px;

  text-align: center;
}

.service-content h3 {
  min-height: 58px;

  margin: 0;

  color:
    var(--black);

  font-size: 21px;
  line-height: 1.25;

  text-transform:
    uppercase;
}

.service-line {
  width: 34px;
  height: 2px;

  margin:
    14px
    auto
    17px;

  background:
    var(--orange);
}

.service-content p {
  margin: 0;

  color:
    var(--gray);

  font-size: 14px;
  line-height: 1.7;
}


/* =====================================================
   ESTADÍSTICAS
===================================================== */

.stats {
  padding:
    50px
    7vw;

  display: grid;

  grid-template-columns:
    repeat(
      4,
      1fr
    );

  background:
    var(--black);

  color:
    var(--white);
}

.stat-item {
  padding:
    20px
    40px;

  display: flex;
  flex-direction: column;

  border-right:
    1px solid
    rgba(
      255,
      255,
      255,
      0.15
    );
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  color:
    var(--orange);

  font-family:
    "Arial Black",
    Impact,
    sans-serif;

  font-size:
    clamp(
      42px,
      5vw,
      72px
    );

  line-height: 1;
}

.stat-item span {
  margin-top: 8px;

  color:
    var(--light-gray);

  font-size: 11px;

  letter-spacing: 0.12em;

  text-transform:
    uppercase;
}


/* =====================================================
   FINANCIACIÓN
===================================================== */

.financing {
  padding:
    120px
    7vw;

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 8vw;

  align-items: center;

  background:
    var(--orange);
}

.financing .eyebrow {
  color:
    var(--black);
}

.financing-title h2 {
  max-width: 620px;
}

.financing-intro {
  max-width: 600px;

  margin:
    0
    0
    30px;

  font-size: 20px;
  line-height: 1.7;
}

.financing-list {
  margin:
    0
    0
    35px;

  padding: 0;

  list-style: none;
}

.financing-list li {
  position: relative;

  padding:
    14px
    0
    14px
    32px;

  border-bottom:
    1px solid
    rgba(
      29,
      28,
      26,
      0.2
    );

  line-height: 1.5;
}

.financing-list li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 14px;

  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    var(--black);

  border-radius: 50%;

  color:
    var(--orange);

  font-size: 12px;
  font-weight: 700;
}


/* =====================================================
   NOSOTROS
===================================================== */

.about {
  padding:
    120px
    7vw;

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 8vw;

  background:
    var(--black);

  color:
    var(--white);
}

.about-copy {
  color:
    var(--light-gray);

  font-size: 19px;
  line-height: 1.8;
}


/* =====================================================
   CONTACTO
===================================================== */

.contact {
  position: relative;

  padding:
    70px
    5vw
    90px;

  overflow: hidden;

  background: var(--orange);
}


/* ENCABEZADO */

.contact-header {
  max-width: 720px;

  margin-bottom: 45px;
}

.contact .eyebrow {
  margin-bottom: 18px;

  color: var(--black);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.contact-header h2 {
  max-width: 680px;

  margin: 0;

  color: var(--black);

  font-family:
    "Arial Black",
    Impact,
    sans-serif;

  font-size:
    clamp(
      42px,
      4.5vw,
      68px
    );

  line-height: 1;

  letter-spacing: -0.045em;
}

.contact-title-line {
  width: 52px;
  height: 2px;

  margin:
    26px
    0
    22px;

  background: var(--black);
}

.contact-intro {
  max-width: 460px;

  margin: 0;

  color:
    rgba(
      29,
      28,
      26,
      0.82
    );

  font-size: 16px;

  line-height: 1.65;
}


/* GRID PRINCIPAL */

.contact-grid {
  display: grid;

  grid-template-columns:
    0.78fr
    1.22fr;

  gap: 65px;

  align-items: center;
}


/* INFORMACIÓN */

.contact-info {
  max-width: 520px;
}

.contact-detail {
  display: grid;

  grid-template-columns:
    58px
    1fr;

  gap: 20px;

  align-items: center;
}

.contact-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: var(--black);

  border-radius: 50%;
}

.contact-icon svg {
  width: 23px;
  height: 23px;

  display: block;

  fill: none;

  stroke: var(--orange);

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-content {
  min-width: 0;
}

.contact-label {
  display: block;

  margin-bottom: 7px;

  color: var(--black);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.17em;
}

.contact-detail-content p {
  margin: 0;

  color: var(--black);

  font-size: 15px;

  line-height: 1.6;
}

.contact-phone {
  display: inline-block;

  color: var(--black);

  font-size: 17px;

  font-weight: 700;
}

.contact-divider {
  width: 100%;
  height: 1px;

  margin:
    24px
    0;

  background:
    rgba(
      29,
      28,
      26,
      0.18
    );
}


/* BOTONES */

.contact-buttons {
  margin-top: 32px;

  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.contact-button {
  min-height: 48px;

  padding:
    0
    23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  border:
    2px solid
    var(--black);

  border-radius: 999px;

  color: var(--black);

  font-size: 13px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.contact-button svg {
  width: 17px;
  height: 17px;

  flex-shrink: 0;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-button:hover {
  transform: translateY(-2px);

  background: var(--black);

  color: var(--white);
}

.contact-button-dark {
  background: var(--black);

  color: var(--white);
}

.contact-button-dark:hover {
  background: transparent;

  color: var(--black);
}


/* REDES */

.social-links {
  margin-top: 30px;

  display: flex;

  flex-wrap: wrap;

  gap: 25px;
}

.social-links a {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  padding-bottom: 4px;

  border-bottom:
    1px solid
    var(--black);

  color: var(--black);

  font-size: 13px;
  font-weight: 700;

  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 0.6;
}

.social-links svg {
  width: 18px;
  height: 18px;

  display: block;

  flex-shrink: 0;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:last-child svg {
  fill: currentColor;

  stroke: none;
}


/* MAPA */

.contact-map-wrap {
  position: relative;

  min-width: 0;
}

.contact-map {
  position: relative;

  width: 100%;

  min-height: 430px;

  overflow: hidden;

  background: var(--white);

  border-radius: 26px;

  box-shadow:
    0
    20px
    55px
    rgba(
      29,
      28,
      26,
      0.16
    );
}

.contact-map iframe {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 430px;

  border: 0;
}


/* TARJETA F&J SOBRE EL MAPA */

.map-label {
  position: absolute;

  left: 26px;
  bottom: 26px;

  z-index: 3;

  width:
    min(
      290px,
      calc(100% - 52px)
    );

  padding:
    15px
    17px;

  display: flex;

  flex-direction: column;

  gap: 4px;

  background:
    rgba(
      29,
      28,
      26,
      0.94
    );

  border-radius: 12px;

  color: var(--white);

  box-shadow:
    0
    10px
    30px
    rgba(
      0,
      0,
      0,
      0.18
    );

  pointer-events: none;
}

.map-label strong {
  margin-bottom: 3px;

  font-size: 12px;

  line-height: 1.35;
}

.map-label span {
  color:
    rgba(
      255,
      255,
      255,
      0.72
    );

  font-size: 10px;

  line-height: 1.4;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
  padding:
    55px
    7vw
    35px;

  display: grid;

  grid-template-columns:
    1.4fr
    0.6fr
    0.6fr;

  gap: 60px;

  align-items: start;

  background:
    var(--black);

  color:
    var(--light-gray);

  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;

  gap: 18px;
}

.footer-brand img {
  width: 48px;
  height: 48px;

  object-fit: contain;
}

.footer-brand strong {
  display: block;

  margin-bottom: 10px;

  color:
    var(--white);

  font-size: 15px;
}

.footer-brand p {
  margin: 0;

  line-height: 1.6;
}

.footer-nav,
.footer-links {
  display: flex;
  flex-direction: column;

  gap: 11px;
}

.footer-nav span,
.footer-links span {
  margin-bottom: 8px;

  color:
    var(--orange);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.footer-nav a,
.footer-links a {
  color:
    var(--white);

  transition:
    color
    0.2s
    ease;
}

.footer-nav a:hover,
.footer-links a:hover {
  color:
    var(--orange);
}

.footer-copy {
  grid-column:
    1 / -1;

  margin: 0;

  padding-top: 30px;

  border-top:
    1px solid
    rgba(
      255,
      255,
      255,
      0.12
    );
}


/* =====================================================
   INTRO
===================================================== */

.site-loader {
  position: fixed;
  inset: 0;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    var(--black);

  clip-path:
    inset(
      0
      0
      0
      0
    );

  transition:
    clip-path
    1.05s
    cubic-bezier(
      0.76,
      0,
      0.24,
      1
    );
}

.site-loader.loader-exit {
  clip-path:
    inset(
      0
      0
      100%
      0
    );
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transform:
    translateY(-10px);
}

.loader-symbol {
  position: relative;

  width: 125px;
  height: 125px;

  margin-bottom: 26px;
}

.logo-piece {
  position: absolute;
  inset: 0;

  opacity: 0;
}

.logo-piece img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.logo-piece-1 {
  clip-path:
    polygon(
      0 0,
      100% 0,
      100% 37%,
      0 37%
    );

  transform:
    translateY(-25px);

  animation:
    logoPieceOne
    0.85s
    0.15s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    )
    forwards;
}

.logo-piece-2 {
  clip-path:
    polygon(
      0 30%,
      100% 30%,
      100% 72%,
      0 72%
    );

  transform:
    translateX(-30px);

  animation:
    logoPieceTwo
    0.85s
    0.38s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    )
    forwards;
}

.logo-piece-3 {
  clip-path:
    polygon(
      0 65%,
      100% 65%,
      100% 100%,
      0 100%
    );

  transform:
    translateY(25px);

  animation:
    logoPieceThree
    0.85s
    0.6s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    )
    forwards;
}

.loader-name {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 5px;

  overflow: hidden;

  color:
    var(--white);
}

.loader-letter {
  display: inline-block;

  opacity: 0;

  transform:
    translateY(35px);

  font-family:
    "Arial Black",
    Impact,
    sans-serif;

  font-size: 38px;

  line-height: 1;

  animation:
    loaderLetterIn
    0.8s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    )
    forwards;
}

.loader-letter:nth-child(1) {
  animation-delay: 0.85s;
}

.loader-letter:nth-child(2) {
  animation-delay: 0.97s;
}

.loader-letter:nth-child(3) {
  animation-delay: 1.09s;
}

.loader-subtitle {
  margin-top: 13px;

  color:
    rgba(
      255,
      255,
      255,
      0.7
    );

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.34em;

  opacity: 0;

  transform:
    translateY(15px);

  animation:
    loaderSubtitleIn
    0.9s
    1.35s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    )
    forwards;
}

.loader-progress {
  position: absolute;

  left: 50%;
  bottom: 55px;

  width: 130px;
  height: 1px;

  overflow: hidden;

  transform:
    translateX(-50%);

  background:
    rgba(
      255,
      255,
      255,
      0.16
    );
}

.loader-progress-bar {
  width: 0;
  height: 100%;

  background:
    var(--orange);

  animation:
    loaderProgress
    3.6s
    0.15s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    )
    forwards;
}


/* =====================================================
   ANIMACIONES AL SCROLL
===================================================== */

.reveal {
  opacity: 0;

  transform:
    translateY(30px);

  transition:
    opacity
    0.75s
    ease,
    transform
    0.75s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}

.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}

.real-project-card.reveal,
.lot-card.reveal,
.service-card.reveal,
.benefit.reveal {
  transform:
    translateY(28px)
    scale(0.985);
}

.real-project-card.reveal.visible,
.lot-card.reveal.visible,
.service-card.reveal.visible,
.benefit.reveal.visible {
  transform:
    translateY(0)
    scale(1);
}


/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes logoPieceOne {

  from {
    opacity: 0;

    transform:
      translateY(-25px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }
}

@keyframes logoPieceTwo {

  from {
    opacity: 0;

    transform:
      translateX(-30px);
  }

  to {
    opacity: 1;

    transform:
      translateX(0);
  }
}

@keyframes logoPieceThree {

  from {
    opacity: 0;

    transform:
      translateY(25px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }
}

@keyframes loaderLetterIn {

  from {
    opacity: 0;

    transform:
      translateY(35px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }
}

@keyframes loaderSubtitleIn {

  from {
    opacity: 0;

    transform:
      translateY(15px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }
}

@keyframes loaderProgress {

  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


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

@media (max-width: 1100px) {

  .nav {
    gap: 5px;

    font-size: 12px;
  }

  .nav a {
    padding:
      8px
      10px;
  }

  .benefits {
    grid-template-columns:
      repeat(
        3,
        1fr
      );
  }

  .project-grid-real {
    grid-template-columns:
      1fr
      1fr;
  }

  .services-grid {
    grid-template-columns:
      repeat(
        2,
        1fr
      );
  }
}


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

@media (max-width: 820px) {

  .menu-toggle {
    display: block;
  }

  .brand span {
    font-size: 13px;
  }

  .nav {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: none;

    padding:
      24px
      5vw;

    flex-direction: column;
    align-items: flex-start;

    background:
      var(--page);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;

    padding:
      11px
      14px;
  }

  .nav a:hover,
  .nav a.active {
    transform: none;
  }


  .hero {
    grid-template-columns:
      1fr;

    gap: 30px;

    min-height: auto;

    padding:
      40px
      5vw
      0;
  }

  .hero-content {
    max-width: 100%;

    padding:
      40px
      0
      10px;
  }

  .hero h1 {
    max-width: 650px;
  }

  .hero-visual {
    min-height: 480px;

    border-radius:
      40px
      40px
      0
      0;

    clip-path: none;
  }

  .hero-watermark {
    top: 18px;
    right: 18px;

    width: 70px;

    opacity: 0.9;
  }


  .benefits {
    width:
      calc(
        100%
        -
        10vw
      );

    margin:
      40px
      auto
      70px;

    grid-template-columns:
      1fr;
  }


  .project-grid-real,
  .lots-grid,
  .financing,
  .about,
  .contact-grid {
    grid-template-columns:
      1fr;
  }


  .stats {
    grid-template-columns:
      1fr
      1fr;
  }


  .footer {
    grid-template-columns:
      1fr;
  }
}


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

@media (max-width: 650px) {

  .contact {
    padding:
      55px
      5vw
      70px;
  }

  .contact-header {
    margin-bottom: 38px;
  }

  .contact-header h2 {
    font-size:
      clamp(
        38px,
        11vw,
        52px
      );
  }

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

  .contact-detail {
    grid-template-columns:
      50px
      1fr;

    gap: 15px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-detail-content p {
    font-size: 14px;
  }

  .contact-phone {
    font-size: 16px;
  }

  .contact-buttons {
    flex-direction: column;

    align-items: flex-start;
  }

  .contact-map {
    min-height: 350px;

    border-radius: 20px;
  }

  .contact-map iframe {
    min-height: 350px;
  }

  .map-label {
    left: 16px;
    bottom: 16px;

    width:
      calc(
        100%
        -
        32px
      );
  }


  .services-grid {
    grid-template-columns:
      1fr;
  }

  .service-image {
    height: 330px;
  }

  .loader-symbol {
    width: 95px;
    height: 95px;
  }

  .loader-letter {
    font-size: 31px;
  }
}


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

@media (max-width: 520px) {

  h2 {
    font-size:
      clamp(
        38px,
        12vw,
        55px
      );
  }

  .hero h1 {
    font-size:
      clamp(
        42px,
        12vw,
        60px
      );
  }

  .hero-buttons {
    flex-direction:
      column;

    align-items:
      flex-start;
  }

  .stats {
    grid-template-columns:
      1fr;
  }

  .contact-buttons {
    flex-direction:
      column;

    align-items:
      flex-start;
  }
}


/* =====================================================
   ACCESIBILIDAD
===================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;

    transform:
      none !important;
  }
}
/* =====================================================
   AJUSTE HERO SOLO PARA CELULAR
   No modifica desktop ni el resto de la web
===================================================== */

@media (max-width: 650px) {

  .hero {
    gap: 0;

    padding:
      24px
      5vw
      0;
  }

  .hero-content {
    padding:
      20px
      0
      28px;
  }

  .hero h1 {
    font-size:
      clamp(
        40px,
        10.5vw,
        50px
      );

    line-height: 0.98;
  }

  .hero-line {
    margin:
      24px
      0;
  }

  .hero-text {
    margin-bottom: 26px;

    font-size: 15px;

    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: row;

    align-items: center;

    gap: 10px;
  }

  .hero-buttons .button {
    padding:
      13px
      18px;

    font-size: 12px;
  }

  .hero-visual {
    width: 100%;

    height: 270px;
    min-height: 270px;

    align-self: auto;

    overflow: hidden;

    border-radius:
      28px
      28px
      0
      0;

    clip-path: none;
  }

  .hero-family {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
      center 55%;
  }

  .hero-watermark {
    top: 16px;
    right: 16px;

    width: 58px;
  }
}


/* =====================================================
   AJUSTE EXTRA PARA CELULARES CHICOS
===================================================== */

@media (max-width: 520px) {

  .hero {
    padding-top: 18px;
  }

  .hero-content {
    padding:
      14px
      0
      24px;
  }

  .hero h1 {
    font-size:
      clamp(
        38px,
        10.5vw,
        46px
      );

    line-height: 0.98;
  }

  .hero-buttons {
    flex-direction: row;

    flex-wrap: wrap;

    align-items: center;

    gap: 9px;
  }

  .hero-buttons .button {
    padding:
      12px
      15px;

    font-size: 11px;
  }

  .hero-visual {
    height: 235px;
    min-height: 235px;

    border-radius:
      24px
      24px
      0
      0;
  }

  .hero-watermark {
    top: 14px;
    right: 14px;

    width: 52px;
  }
}


/* =====================================================
   CELULARES MUY ANGOSTOS
===================================================== */

@media (max-width: 380px) {

  .hero h1 {
    font-size: 37px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: flex-start;
  }

  .hero-visual {
    height: 215px;
    min-height: 215px;
  }
}