@font-face {
  font-family: "Wensley";
  src: url(./assets/webfonts/Wensley-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Wensley";
  src: url(./assets/webfonts/Wensley-Light.ttf);
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Wensley";
  src: url(./assets/webfonts/Wensley-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}
:root {
  --font-1: "Wensley", sans-serif;
  --font-2: "Geologica", sans-serif;
  --container-lg: 87%;
  --copete-size: 16px;
  --color-gray1: #ddd8d2;
  --color-gray2: #e7e7e7;
  --color-brown1: #907c59;
  --color-brown2: #ae966d;
  --color-black1: #2c2b28;
}
li {
  list-style: none;
}
/* ALERTA FORM BUTTON */
.swal2-styled {
  background-color: var(--color-brown2);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease;
}
header {
  font-family: var(--font-2);
  & nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem 1rem 2rem !important;
    align-items: flex-start;
    .img-logo-negro {
      display: none;
    }
    & .button-menu {
      margin-top: 18px;
    }
    & a {
      font-family: var(--font-2);
    }
  }
}
header.scroll {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.2);
  & .img-logo-blanco {
    display: none;
  }
  & .img-logo-negro {
    display: block;
  }
  .hamburger-inner {
    background-color: #000;
  }
  .hamburger-inner::before,
  .hamburger-inner::after {
    background-color: #000;
  }
}
.logo {
  width: 60px;
  height: 60px;
}
.menu__container {
  display: none;
}
.menu__container ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu__container li {
  text-transform: uppercase;
}
.menu__container li a {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}
.menu__container li:last-child {
  background-color: var(--color-brown2);
  border: 1px solid var(--color-brown2);
  padding: 7.33px 28.15px;
  border-radius: 12px 0;
  min-width: 163px;
  min-height: 44px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  cursor: pointer;
  transition: all 300ms ease;
}
.menu__container li:last-child:hover {
  background-color: var(--color-black1);
  border: 1px solid var(--color-black1);
}
.menu__container li:last-child a {
  color: white;
  font-weight: 400;
}
.hamburger {
  display: block;
  cursor: pointer;
}
.hamburger-box {
  width: 35px;
  height: 24px;
  position: relative;
}
.hamburger-inner {
  background-color: #ffffff;
  position: absolute;
  width: 100%;
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
  /* transition: all 0.3s ease; */
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  background-color: #ffffff;
  position: absolute;
  width: 100%;
  height: 3px;
  /* transition: all 0.3s ease; */
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
.hamburger.is-active .hamburger-inner {
  transform: translateY(-50%) rotate(45deg);
  background-color: #000;
}
.hamburger.is-active .hamburger-inner::before {
  transform: rotate(90deg);
  top: 0;
  background-color: #000;
}
.hamburger.is-active .hamburger-inner::after {
  transform: rotate(90deg);
  top: 1px;
  background-color: #000;
}
.show-menu {
  background: rgba(255, 255, 255, 1);
  & nav {
    height: 100vh;
    & .img-logo-blanco {
      display: none;
    }
    & .img-logo-negro {
      display: block;
    }
    .menu__container {
      display: flex;
      margin-top: 90px;
      & .button-menu {
        position: absolute;
        right: 0;
        top: 0;
      }
      & ul {
        flex-direction: column;
      }
    }
  }
}
.hidden {
  overflow: hidden;
}
.obra {
  display: flex; /* Habilita el layout flexbox */
  gap: 2rem; /* Establece la separación entre las columnas */
  max-width: 1188px;
  width: 100%;
  margin: 100px auto -180px auto;
}
.obra_col {
  flex: 1; /* Permite que cada columna ocupe el mismo espacio */
  background-color: #DDD8D2;
  padding: 1.5rem 2rem;
  border-radius: 50px 0 50px 0;
  display: flex;
  gap:0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.obra_col h5 {
  letter-spacing: 2px;
  line-height: 140%;
  font-family: var(--font-1);
  font-size: var(--copete-size);
  text-transform: uppercase;
  font-weight: var(--font-1);
}
.obra_col img {
  max-width: 230px;
  height: auto;
}
.obra_col p {
  font-family: var(--font-2);
  color: #000;
  line-height: 140%;
  font-size: 22px;
  font-weight: 250;
  text-transform: uppercase;
}
/* Media query para dispositivos móviles */
@media (max-width: 768px) {
  .obra {
    gap: 1.5rem; /* Establece la separación entre las columnas */
    margin: 3rem auto;
    flex-direction: column; /* Cambia la dirección de los elementos a una columna */
    max-width: 86%;
    width: 100%;
  }
  .obra_col h5 {
    font-size: 14px;
  }
  .obra_col p {
    font-size: 18px;
  }
  .obra_col img {
    max-width: 70%;
  }
}
.hero-section {
  background-repeat: no-repeat;
  background-image: url(./dist/img/vista-aerea-corregido-mob.webp);
  display: flex;
  flex-direction: column;
  background-size: cover;
  height: 381px;
  background-position: center;
  border-radius: 0 0 134px 0;
  & .overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2) 58%,
      rgba(0, 0, 0, 0.7) 100%
      );
      border-radius: 0 0 134px 0;
    }
  }
  .hero-bajada-section {
    .hero-bajada {
      width: 100%;
      max-width: 86%;
      margin-left: auto;
      margin-right: auto;
      margin-top: -72px;
      & h1 {
        color: #fff;
        text-transform: uppercase;
        font-size: 40px;
        font-weight: 300;
        line-height: 100%;
        font-family: var(--font-1);
        & span {
          display: block;
          font-family: var(--font-1);
        }
        & .asuncion {
          color: #000;
          display: block;
        }
      }
      & .content {
        display: flex;
        flex-direction: column;
        margin-top: 22px;
        & p {
          font-family: var(--font-2);
          color: #000;
          line-height: 140%;
          font-size: 18px;
          font-weight: 100;
        }
        & .numbers-wrapper {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          margin-top: 18px;
          & .item-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            & span {
              font-family: var(--font-2);
              font-size: 30px;
              font-weight: 100;
              line-height: normal;
            }
            & p {
              text-transform: uppercase;
              font-family: var(--font-1);
              letter-spacing: 1px;
              font-size: 12px;
              line-height: 140%;
              font-weight: 400;
              color: #000;
            }
          }
        }
      }
    }
  }
  .equipamientos-section {
    background-color: var(--color-brown1);
    border-radius: 75px 0;
    margin-top: 35px;
    padding-top: 30px;
    padding-bottom: 40px;
    & .equipamientos-bajada {
      width: 100%;
      max-width: 86%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      & .copete {
        font-size: 12px;
        text-transform: uppercase;
        color: #fff;
        font-family: var(--font-1);
        margin-bottom: 19px;
        letter-spacing: 2px;
        line-height: 140%;
      }
      & .title-wrapper {
        width: 100%;
        & .title {
          color: #fff;
          font-size: 30px;
          text-transform: uppercase;
          font-weight: 300;
          font-family: var(--font-1);
          line-height: 100%;
        }
      }
      & .text-wrapper {
        flex: 1;
        padding-top: 34px;
        & p {
          font-size: 16px;
          font-family: var(--font-2);
          color: #fff;
          font-weight: 100;
          line-height: 180%;
          margin: 0 auto;
        }
      }
    }
    & .equipamientos-main-content {
      margin-top: 24px;
      & .img-wrapper {
        width: 100%;
        margin: 0 auto;
        height: 270px;
        position: relative;
        & .overlay {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          right: 0;
          border-radius: 100px 0;
          background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 58%,
            rgba(0, 0, 0, 0.7) 100%
            );
          }
          & img {
            border-radius: 100px 0;
          }
        }
        & .equipamientos-items {
          margin: -24px auto 0;
          display: flex;
          flex-direction: column;
          width: 100%;
          max-width: var(--container-lg);
          position: relative;
          & h2 {
            color: #fff;
            font-family: var(--font-1);
            font-size: 30px;
            text-transform: uppercase;
            letter-spacing: -1px;
            line-height: 100%;
            font-weight: 300;
            & span {
              display: block;
              font-family: var(--font-1);
            }
          }
          & .items-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-top: 40px;
            row-gap: 20px;
            column-gap: 12px;
            & .item {
              display: flex;
              flex-direction: column;
              align-items: flex-start;
              gap: 3%;
              & .item-img-wrapper {
                width: 100%;
                height: 100px;
                position: relative;
                overflow: hidden;
                border-radius: 12px 0;
                & img {
                  object-fit: cover;
                }
              }
              & p {
                font-family: var(--font-2);
                color: #fff;
                font-size: 12px;
                font-weight: 100;
                line-height: 120%;
              }
            }
          }
        }
      }
    }
    .amenities-section {
      padding-top: 62px;
      & .amenities-heading-wrapper {
        width: 100%;
        max-width: 86%;
        margin: 0 auto;
        & .title-wrapper {
          display: flex;
          flex-direction: column;
          gap: 21px;
          width: 95%;
          & .copete {
            font-size: 12px;
            font-family: var(--font-1);
            line-height: 140%;
            color: #000;
            letter-spacing: 2px;
            text-transform: uppercase;
          }
          & h2 {
            font-family: var(--font-2);
            color: #000;
            font-size: 24px;
            font-weight: 100;
            line-height: 140%;
          }
        }
        & .items-wrapper {
          display: grid;
          grid-template-columns: 1fr 1fr;
          margin-top: 40px;
          row-gap: 20px;
          width: 100%;
          column-gap: 10px;
          & .item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            & .img-wrapper {
              min-width: 36.2px;
              display: flex;
              justify-content: center;
              & img {
                width: auto;
                height: auto;
              }
            }
            & p {
              color: #000;
              font-family: var(--font-2);
              font-size: 14px;
              font-weight: 200;
              line-height: 120%;
            }
          }
        }
      }
      & .amenities-slider-wrapper {
        height: 270px;
        width: 100%;
        margin-top: 48px;
        & .slider {
          height: 100%;
          width: 100%;
          margin: 0 auto;
          z-index: 100;
          position: relative;
          & .splide__arrows {
            & .splide__arrow {
              background-color: var(--color-brown2);
              width: 50px;
              height: 50px;
              opacity: 1;
              & svg {
                fill: white;
                rotate: 180deg;
              }
            }
            & button.splide__arrow--next {
              right: 0;
              border-radius: 100% 0 0 100%;
            }
            & button.splide__arrow--prev {
              left: 0;
              border-radius: 0 100% 100% 0;
            }
          }
          & .splide__track {
            height: 100%;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
          }
        }
      }
    }
    .tipologias-section {
      margin-top: -170px;
      background-color: var(--color-gray1);
      padding-top: 207px;
      padding-bottom: 50px;
      & .tipologias-heading {
        width: 100%;
        margin: 0 auto;
        max-width: 86%;
        display: flex;
        flex-direction: column;
        gap: 22px;
        & .copete {
          font-size: 12px;
          color: #000;
          text-transform: uppercase;
          letter-spacing: 2px;
          line-height: 140%;
          font-family: var(--font-1);
        }
        & h2 {
          font-family: var(--font-2);
          font-size: 24px;
          font-weight: 100;
          line-height: 140%;
        }
      }
      & .tipologias-planos {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 86%;
        margin-top: 68px;
        margin-left: auto;
        margin-right: auto;
        gap: 35px;
        & .tipologias_mobile_tabs-wrapper {
          display: flex;
          flex-direction: column;
          & .tabs {
            display: flex;
            justify-content: center;
            & .tab-button {
              flex: 1;
              font-size: 14px;
              line-height: 24px;
              text-transform: uppercase;
              font-family: var(--font-2);
              opacity: 0.3;
              padding: 5px;
              color: #000;
              border: none;
              cursor: pointer;
              text-align: center;
              background: transparent;
            }
            & .tab-button.active {
              opacity: 1;
              text-decoration: underline;
              text-underline-offset: 5px;
            }
          }
          & .tab-content {
            text-align: left;
            margin: 10px 0;
            & .department-button {
              padding: 10px 20px;
              margin: 5px;
              background-color: transparent;
              border: 1px solid #ae966d;
              color: #ae966d;
              font-family: var(--font-2);
              cursor: pointer;
              font-size: 14px;
              border-radius: 12px 0;
            }
            & .department-button.active {
              background-color: #ae966d;
              color: #fff;
            }
          }
        }
        & .image-wrapper {
          border: 1px solid #ae966d;
          border-radius: 34px 0px 80px 0px;
          display: flex;
          flex-direction: column-reverse;
          padding: 25px 26px 35px;
          & .img-container {
            padding: 30px;
          }
          & .department-info {
            & .pisos-p {
              color: #000;
              font-family: var(--font-1);
              font-size: 12px;
              font-weight: 400;
              line-height: 140%;
              letter-spacing: 2px;
              text-transform: uppercase;
              margin-bottom: 14px;
            }
            & .caracteristicas-p {
              color: #000;
              font-family: var(--font-2);
              font-size: 24px;
              font-weight: 100;
              line-height: 140%;
              display: inline;
              & span {
                color: #ae966d;
              }
            }
            & .metros-p {
              color: #907c59;
              font-family: var(--font-2);
              font-size: 34px;
              font-weight: 100;
              line-height: normal;
              & sup {
                color: #907c59;
                font-weight: 300;
              }
            }
          }
        }
      }
      & .tipologias_desktop_buttons-wrapper {
        display: none;
      }
      & .planos-wrapper {
        border: 1px solid var(--color-brown2);
        border-radius: 46px 0 61px 0;
        width: 100%;
        position: relative;
        padding-top: 25px;
        padding-bottom: 25px;
        & .copete {
          text-transform: uppercase;
          display: flex;
          color: #000;
          line-height: 140%;
          letter-spacing: 2px;
          font-size: 12px;
          font-family: var(--font-1);
          padding: 0 20px;
          font-weight: 400;
          margin-bottom: 15px;
        }
        & .content {
          height: 100%;
          display: flex;
          flex-direction: column;
          & .description {
            height: 100%;
            padding-left: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            & .comodidades {
              display: flex;
              flex-direction: column;
              gap: 5px;
              & p {
                color: #000;
                font-family: var(--font-2);
                font-size: 24px;
                font-weight: 100;
                line-height: 140%;
              }
            }
            & .metros {
              & p {
                font-family: var(--font-2);
                font-size: 34px;
                font-weight: 100;
                line-height: normal;
                color: var(--color-brown2);
                & sup {
                  color: var(--color-brown2);
                  font-weight: 300;
                  font-size: 14px;
                }
              }
            }
          }
          & .img-wrapper {
            max-width: 565px;
            max-height: 410px;
            margin: 20px 5px 0;
          }
        }
      }
    }
    .ubicacion-section {
      & .content-wrapper {
        background-color: var(--color-gray2);
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        & .map-wrapper {
          width: 100%;
          border-radius: 0 0 70px 0;
          padding: 43px 0 0;
          & div {
            overflow: hidden;
            border-radius: 0 0 70px 0;
          }
          & iframe {
            border-radius: 0 0 70px 0;
            width: 100%;
            border: none;
            margin-top: -70px;
          }
        }
        & .text-wrapper {
          display: flex;
          flex-direction: column;
          width: 100%;
          max-width: 86%;
          margin: 0 auto;
          gap: 25px;
          justify-content: center;
          padding-top: 55px;
          & .heading {
            display: flex;
            flex-direction: column;
            gap: 20px;
            & .copete {
              font-size: 12px;
              text-transform: uppercase;
              font-family: var(--font-1);
              letter-spacing: 2px;
              line-height: 140%;
            }
            & h2 {
              font-family: var(--font-2);
              font-size: 24px;
              font-weight: 100;
              line-height: 140%;
            }
          }
          & .bajada {
            display: flex;
            flex-direction: column;
            gap: 30px;
            & p {
              font-family: var(--font-2);
              font-size: 16px;
              font-weight: 100;
              line-height: 180%;
            }
            & .direccion {
              display: flex;
              align-items: flex-start;
              gap: 10px;
              & img {
                width: 24px;
                height: 24px;
                margin-top: 3px;
              }
              & p {
                font-size: 16px;
                font-weight: 100;
                line-height: 160%;
                letter-spacing: -0.3px;
                font-family: var(--font-2);
              }
            }
          }
        }
      }
    }
    .contacto-section {
      display: grid;
      grid-template-columns: 1fr;
      padding-top: 60px;
      width: 100%;
      margin: 0 auto;
      max-width: 86%;
      padding-bottom: 23px;
      & .text-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        & .copete {
          text-transform: uppercase;
          font-size: 12px;
          font-family: var(--font-1);
          letter-spacing: 2px;
          line-height: 140%;
        }
        & h2 {
          font-size: 24px;
          font-family: var(--font-2);
          font-weight: 100;
          line-height: 140%;
          width: 100%;
        }
      }
      & .form-wrapper {
        padding-top: 20px;
        & form {
          display: flex;
          flex-direction: column;
          & label {
            font-family: var(--font-2);
            font-size: 12px;
            font-weight: 300;
            line-height: normal;
            text-transform: uppercase;
            margin-bottom: 10px;
          }
          & input,
          textarea {
            border-radius: 12px 0;
            border: 1px solid var(--color-brown2);
            margin-bottom: 15px;
            min-height: 40px;
            padding: 5px 10px;
          }
          & textarea {
            min-height: 130px;
          }
          & button {
            background-color: var(--color-brown2);
            border: 1px solid var(--color-brown2);
            border-radius: 12px 0;
            color: #fff;
            font-size: 14px;
            text-transform: uppercase;
            line-height: 24px;
            font-family: var(--font-2);
            height: 44px;
            width: 205px;
            margin-top: 20px;
            cursor: pointer;
            transition: all 300ms ease;
            &:hover {
              background-color: transparent;
              color: var(--color-brown2);
            }
          }
        }
      }
    }
    .banner-companies-section {
      background-color: var(--color-black1);
      border-radius: 0 70px 0 0;
      width: 100%;
      & .items-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding-top: 66px;
        padding-bottom: 300px;
        row-gap: 35px;
        & .item {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-transform: uppercase;
          color: #fff;
          font-size: 11px;
          font-family: var(--font-2);
          margin: 0 auto;
          gap: 10px;
          & p {
            font-family: Helvetica, sans-serif;
            font-size: 11px;
            line-height: 120%;
          }
        }
        & .item1 {
          max-width: 244px;
          gap: 15px;
        }
        & .item2 {
          max-width: 149px;
          gap: 16px;
        }
        & .item3 {
          max-width: 127px;
          gap: 6px;
        }
        & .item4 {
          max-width: 80px;
          gap: 20px;
        }
      }
    }
    footer {
      background-color: #000;
      border-radius: 0 70px 0 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: -185px;
      & .logo-wrapper {
        max-width: 171px;
        border-radius: 85.5px 85.5px 24px 24px;
        width: 100%;
        margin-top: -96px;
        background-color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 35px;
        gap: 40px;
        margin-bottom: 47px;
        & .magna-logo {
          width: 111px;
          height: 112.5px;
        }
        & .social-media-wrapper {
          max-width: 171px;
          display: flex;
          & a {
            display: flex;
            width: 48px;
            height: 48px;
            justify-content: center;
            & .facebook {
              width: 14px;
              height: 24px;
            }
            & .instagram {
              width: 24px;
              height: 24px;
            }
          }
        }
      }
    }
    @media (min-width: 489px) {
      .equipamientos-section {
        & .equipamientos-main-content {
          & .equipamientos-items {
            & .items-wrapper {
              grid-template-columns: 1fr 1fr 1fr;
              column-gap: 4%;
            }
          }
        }
      }
    }
    @media (min-width: 1024px) {
      .hamburger {
        display: none;
      }
      .logo {
        width: 102px;
        height: 103.5px;
      }
      .menu__container {
        display: flex;
      }
      .menu__container ul {
        display: flex;
        align-items: center;
        gap: 56px;
      }
      .menu__container li a {
        font-size: 14px;
      }
      header.scroll {
        & nav {
          & .menu__container {
            & ul {
              & li {
                & a {
                  color: #000;
                  font-size: 14px;
                  font-weight: 300;
                  line-height: 24px;
                  transition: all 300ms ease;
                  &:hover {
                    color: var(--color-brown2);
                  }
                }
              }
            }
          }
        }
      }
      header {
        & nav {
          display: flex;
          align-items: center;
          padding-top: 28px;
          padding-left: 5.4rem !important;
          padding-right: 5.4rem !important;
          justify-content: space-between;
          & .logo {
            width: 102px;
            height: 103.5px;
          }
          & .menu__container {
            & ul {
              display: flex;
              align-items: center;
              gap: 28px;
              & li {
                text-transform: uppercase;
                & a {
                  color: #fff;
                  font-size: 14px;
                  font-weight: 300;
                  line-height: 24px;
                  transition: all 300ms ease;
                  &:hover {
                    color: #000;
                  }
                }
              }
              & li:last-child {
                background-color: var(--color-brown2);
                border: 1px solid var(--color-brown2);
                padding: 7.33px 28.15px;
                border-radius: 12px 0;
                min-width: 163px;
                min-height: 44px;
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-left: 0;
                cursor: pointer;
                transition: all 300ms ease;
                &:hover {
                  background-color: var(--color-black1);
                  border: 1px solid var(--color-black1);
                }
                & a {
                  color: white;
                  font-weight: 400;
                }
              }
            }
          }
        }
      }
      .hero-section {
        background-image: url(./dist/img/vista-aerea-corregido-rec.webp);
        height: 85dvh;
      }
      .hero-bajada-section {
        & .hero-bajada {
          max-width: var(--container-lg);
          margin: -51px auto 0 auto;
          & h1 {
            font-size: 64px;
            font-weight: 300;
            line-height: 100%;
            & span {
              display: inline;
            }
          }
          & .content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-top: 61px;
            & p {
              font-size: 24px;
            }
            & .numbers-wrapper {
              justify-content: flex-end;
              gap: 5%;
              height: max-content;
              & .item-wrapper {
                & span {
                  font-size: 60px;
                }
                & p {
                  font-size: 16px;
                }
              }
              & .divider {
                height: auto;
                width: 1px;
                background-color: var(--color-gray1);
              }
            }
          }
        }
      }
      .equipamientos-section {
        background-color: var(--color-brown1);
        border-radius: 100px 0;
        margin-top: 138px;
        padding-top: 138px;
        padding-bottom: 80px;
        & .equipamientos-bajada {
          width: 100%;
          max-width: var(--container-lg);
          margin: 0 auto 40px;
          display: flex;
          flex-direction: column;
          & .copete {
            font-size: var(--copete-size);
            text-transform: uppercase;
            color: #fff;
            font-weight: var(--font-1);
            margin-bottom: 19px;
          }
          & .content-wrapper {
            display: flex;
            & .title-wrapper {
              width: 40%;
              & .title {
                color: #fff;
                font-size: 48px;
                text-transform: uppercase;
                font-weight: 300;
                font-family: var(--font-1);
                line-height: 100%;
              }
            }
            & .text-wrapper {
              flex: 1;
              padding-top: 0;
              & p {
                font-size: 18px;
                font-family: var(--font-2);
                color: #fff;
                line-height: 180%;
                width: 80%;
                margin: 0 auto;
                padding-left: 9%;
              }
            }
          }
        }
        & .equipamientos-main-content {
          & .img-wrapper {
            width: 100%;
            margin: 0 auto;
            max-width: 95%;
            height: 564px;
            & img {
              border-radius: 100px 0;
            }
          }
          & .equipamientos-items {
            margin: -39px auto 0;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: var(--container-lg);
            & h2 {
              color: #fff;
              font-family: var(--font-1);
              font-size: 48px;
              text-transform: uppercase;
              line-height: 100%;
              font-weight: 300;
              & span {
                display: block;
              }
            }
            & .items-wrapper {
              display: grid;
              grid-template-columns: 1fr 1fr;
              margin-top: 40px;
              row-gap: 14px;
              & .item {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 10px;
                & .item-img-wrapper {
                  width: 110px;
                  height: 100%;
                  position: relative;
                  overflow: hidden;
                  border-radius: 12px 0 12px 0;
                }
                & img {
                  width: 101px;
                  height: 101px;
                }
                & p {
                  font-family: var(--font-2);
                  color: #fff;
                  font-size: 18px;
                  line-height: 180%;
                  width: 55%;
                }
              }
            }
          }
        }
      }
      .amenities-section {
        padding-top: 62px;
        & .amenities-heading-wrapper {
          width: 100%;
          max-width: var(--container-lg);
          margin: 0 auto;
          & .title-wrapper {
            display: flex;
            flex-direction: column;
            gap: 21px;
            width: 73%;
            & .copete {
              font-size: var(--copete-size);
              font-family: var(--font-1);
              line-height: 140%;
              color: #000;
              letter-spacing: 2px;
              text-transform: uppercase;
            }
            & h2 {
              font-family: var(--font-2);
              color: #000;
              font-size: 36px;
              font-weight: 100;
              line-height: 140%;
            }
          }
          & .items-wrapper {
            display: grid;
            grid-template-columns: auto auto auto;
            margin-top: 40px;
            row-gap: 20px;
            width: 90%;
            & .item {
              display: flex;
              gap: 22px;
              align-items: center;
              & p {
                color: #000;
                font-family: var(--font-2);
                font-size: 18px;
                font-weight: 200;
                line-height: 240%;
              }
            }
          }
        }
        & .amenities-slider-wrapper {
          height: 620px;
          width: 100%;
          margin-top: 48px;
          & .slider {
            /* background-color: #000; */
            height: 100%;
            width: 100%;
            margin: 0 auto;
            z-index: 100;
            position: relative;
            & .splide__arrows {
              & .splide__arrow {
                background-color: var(--color-brown2);
                width: 50px;
                height: 50px;
                opacity: 1;
              }
              & button.splide__arrow--next {
                right: 0;
                border-radius: 100% 0 0 100%;
              }
              & button.splide__arrow--prev {
                left: 0;
                border-radius: 0 100% 100% 0;
              }
            }
            & .splide__track {
              height: 100%;
              width: 100%;
              max-width: 97%;
              margin: 0 auto;
              & .splide__list {
                & .splide__slide {
                  /* background-color: red; */
                }
              }
            }
          }
        }
      }
      .tipologias-section {
        margin-top: -309px;
        background-color: var(--color-gray1);
        padding-top: 403px;
        padding-bottom: 50px;
        & .tipologias-heading {
          width: 100%;
          margin: 0 auto;
          max-width: var(--container-lg);
          display: flex;
          flex-direction: column;
          gap: 22px;
          & .copete {
            font-size: var(--copete-size);
            color: #000;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 140%;
            font-family: var(--font-1);
          }
          & h2 {
            font-family: var(--font-2);
            font-size: 36px;
            font-weight: 100;
            line-height: 140%;
            width: 75%;
          }
        }
        & .tipologias-planos {
          flex-direction: row;
          width: 100%;
          max-width: 90%;
          margin-left: auto;
          gap: 35px;
          margin-top: 68px;
          margin-right: 39px;
          & .tipologias_mobile_tabs-wrapper {
            display: none;
          }
          & .tipologias_desktop_buttons-wrapper {
            width: 20%;
            min-width: 20%;
            display: flex;
            flex-direction: column;
            gap: 14px;
            & .category {
              & .category-title {
                color: #000;
                font-family: var(--font-2);
                font-size: 16px;
                font-weight: 500;
                line-height: 240%;
                text-transform: uppercase;
              }
              & .buttons-wrapper {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                & .department-button {
                  border: 1px solid var(--color-brown2);
                  border-radius: 12px 0;
                  color: var(--color-brown2);
                  background-color: transparent;
                  height: 45px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  font-size: 14px;
                  cursor: pointer;
                  &:hover {
                    background-color: var(--color-brown2);
                    color: #fff;
                  }
                }
                & .department-button.active {
                  background-color: #ae966d;
                  color: #fff;
                }
              }
            }
          }
          & .image-wrapper {
            flex-direction: row-reverse;
            flex: 1;
            justify-content: space-between;
            position: relative;
            max-height: 460px;
            padding-right: 195px;
            & .img-container {
              width: 48%;
            }
            & img {
              width: 100%;
            }
            & .department-info {
              display: flex;
              flex-direction: column;
              width: 35%;
              padding-top: 25px;
              padding-left: 20px;
              & .pisos-p {
                font-size: 16px;
                position: absolute;
                top: -11px;
                left: 34px;
                background-color: var(--color-gray1);
                padding: 0 12px;
              }
              & .caracteristicas-p {
                font-size: 32px;
                & span {
                  display: none;
                }
              }
              & .metros-p {
                margin-top: auto;
                font-size: 60px;
              }
            }
          }
        }
      }
      .ubicacion-section {
        padding-top: 90px;
        & .content-wrapper {
          border-radius: 100px 0;
          background-color: var(--color-gray2);
          display: flex;
          width: 100%;
          max-width: 94%;
          margin: 0 auto;
          flex-direction: row;
          & .map-wrapper {
            width: 55%;
            border-radius: 70px 0;
            padding: 50px;
            & div {
              border-radius: 70px 0;
            }
            & iframe {
              border-radius: 70px 0;
            }
          }
          & .text-wrapper {
            flex: 1;
            padding: 43px 43px 43px 0;
            display: flex;
            flex-direction: column;
            gap: 25px;
            justify-content: center;
            & .heading {
              display: flex;
              flex-direction: column;
              gap: 20px;
              & .copete {
                font-size: var(--copete-size);
                text-transform: uppercase;
                font-family: var(--font-1);
                letter-spacing: 2px;
                line-height: 140%;
              }
              & h2 {
                font-family: var(--font-2);
                font-size: 32px;
                font-weight: 100;
                line-height: 140%;
              }
            }
            & .bajada {
              display: flex;
              flex-direction: column;
              gap: 30px;
              & p {
                font-family: var(--font-2);
                font-size: 18px;
                font-weight: 100;
                line-height: 180%;
              }
              & .direccion {
                display: flex;
                align-items: flex-start;
                gap: 10px;
                & img {
                  width: 24px;
                  height: 24px;
                  margin-top: 3px;
                }
              }
            }
          }
        }
      }
      .contacto-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-top: 90px;
        width: 100%;
        margin: 0 auto;
        max-width: var(--container-lg);
        padding-bottom: 108px;
        & .text-wrapper {
          display: flex;
          flex-direction: column;
          gap: 20px;
          & .copete {
            text-transform: uppercase;
            font-size: var(--copete-size);
            font-family: var(--font-1);
            letter-spacing: 2px;
            line-height: 140%;
          }
          & h2 {
            font-size: 36px;
            font-family: var(--font-2);
            font-weight: 100;
            line-height: 140%;
            width: 100%;
            max-width: 88%;
          }
        }
        & .form-wrapper {
          padding-left: 12%;
          padding-top: 54px;
          & form {
            display: flex;
            flex-direction: column;
            & label {
              font-family: var(--font-2);
              font-size: 12px;
              font-weight: 300;
              line-height: normal;
              text-transform: uppercase;
              margin-bottom: 10px;
            }
            & input,
            textarea {
              border-radius: 12px 0;
              border: 1px solid var(--color-brown2);
              margin-bottom: 15px;
              min-height: 40px;
              padding: 5px 10px;
            }
            & textarea {
              min-height: 130px;
            }
            & button {
              background-color: var(--color-brown2);
              border: 1px solid var(--color-brown2);
              border-radius: 12px 0;
              color: #fff;
              font-size: 14px;
              text-transform: uppercase;
              line-height: 24px;
              font-family: var(--font-2);
              height: 44px;
              width: 205px;
              margin-top: 20px;
              cursor: pointer;
              transition: all 300ms ease;
              &:hover {
                background-color: transparent;
                color: var(--color-brown2);
              }
            }
          }
        }
      }
      .banner-companies-section {
        background-color: var(--color-black1);
        border-radius: 0 200px 0 0;
        width: 100%;
        & .items-wrapper {
          /* display: grid; */
          display: flex;
          /* grid-template-columns: repeat(4, 1fr); */
          /* width: 100%; */
          max-width: 100%;
          /* margin: 0 auto 0 2%; */
          margin-top: 0;
          margin-bottom: 0;
          margin-left: 0;
          margin-right: 0;
          padding-top: 60px;
          padding-bottom: 300px;
          /* padding-left: 101px;
          padding-right: 128px; */
          padding-left: 7.4%;
          padding-right: 9.4%;
          & .item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-transform: uppercase;
            color: #fff;
            font-size: 12px;
            font-family: var(--font-2);
            margin: 0 auto;
            gap: 20px;
            & p {
              font-size: 12px;
            }
          }
          & .item1 {
            max-width: 244px;
            gap: 30px;
          }
          & .item2 {
            max-width: 177px;
            gap: 34px;
          }
          & .item3 {
            max-width: 144px;
            gap: 14px;
          }
          & .item4 {
            max-width: 91px;
            gap: 30px;
          }
        }
      }
      footer {
        background-color: #000;
        border-radius: 0 200px 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -185px;
        & .logo-wrapper {
          max-width: 171px;
          border-radius: 85.5px 85.5px 24px 24px;
          width: 100%;
          margin-top: -96px;
          background-color: #000;
          display: flex;
          flex-direction: column;
          align-items: center;
          padding-top: 35px;
          gap: 40px;
          margin-bottom: 47px;
          & .magna-logo {
            width: 111px;
            height: 112.5px;
          }
          & .social-media-wrapper {
            max-width: 171px;
            display: flex;
            & a {
              display: flex;
              width: 48px;
              height: 48px;
              justify-content: center;
              & .facebook {
                width: 14px;
                height: 24px;
              }
              & .instagram {
                width: 24px;
                height: 24px;
              }
            }
          }
        }
      }
    }
    @media (min-width: 1367px) {
      /* header {
      & nav {
      & .menu__container {
      & ul {
      & li:last-child { */
      header {
        & nav {
          & .menu__container {
            & ul {
              gap: 56px;
              & li:last-child {
                margin-left: 56px;
              }
            }
          }
        }
      }
      .hero-bajada-section {
        .hero-bajada {
          max-width: 1188px;
        }
      }
      .equipamientos-section {
        & .equipamientos-bajada {
          max-width: 1188px;
        }
        & .equipamientos-main-content {
          & .img-wrapper {
            max-width: 1297.69px;
          }
          & .equipamientos-items {
            max-width: 1188px;
          }
        }
      }
      .amenities-section {
        & .amenities-heading-wrapper {
          max-width: 1188px;
        }
        & .amenities-slider-wrapper {
          & .slider {
            max-width: 1325px;
            & .splide__track {
              max-width: 100%;
              & .splide__arrows {
                & button.splide__arrow--prev {
                }
              }
            }
          }
        }
      }
      .tipologias-section {
        & .tipologias-heading {
          max-width: 1188px;
        }
        & .tipologias-planos {
          max-width: 1188px;
          margin-left: auto;
          margin-right: auto;
        }
      }
      .ubicacion-section {
        & .content-wrapper {
          max-width: 1284px;
        }
      }
      .contacto-section {
        max-width: 1188px;
      }
      .banner-companies-section {
        & .items-wrapper {
          max-width: 1415px;
          padding-left: 0;
          padding-right: 0;
          margin: 0 auto;
        }
      }
    }
    /* ----------------------------------------------
    * Generated by Animista on 2023-10-10 13:51:25
    * Licensed under FreeBSD License.
    * See http://animista.net/license for more info.
    * w: http://animista.net, t: @cssanimista
    * ---------------------------------------------- */
    /**
    * ----------------------------------------
    * animation fade-in-top
    * ----------------------------------------
    */
    .fade-in-top {
      -webkit-animation: fade-in-top 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
      animation: fade-in-top 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    }
    @-webkit-keyframes fade-in-top {
      0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0;
      }
      100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
      }
    }
    @keyframes fade-in-top {
      0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0;
      }
      100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
      }
    }
