@font-face {
    font-family: "Helvetica";
    src: url(../fonts/Helvetica.ttf);
}

:root {
    --colorPrincipal: #004937;
    --colorTexto: #111;
    --colorBlanco: #fff;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Helvetica';
    font-size: 16px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    width: 96%;
    margin: 0 auto;
}


/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.header .grid-header {
    display: grid;
    grid-template-columns: 1fr 1fr auto 1fr;
    align-items: center;
    grid-column-gap: 2rem;
}

.logo {
    width: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 0.1rem rgba(0, 0, 0, .1))
}

.list-grid-header {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 3.375rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(31, 60, 43, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    width: fit-content;
    height: 62px;
    backdrop-filter: saturate(180%) blur(5px);
}

.list-grid-header li a {
    font-size: .9rem;
    display: block;
    color: var(--colorBlanco);
    letter-spacing: 0.05rem;
    position: relative;
    transition: all .3s;
}

.list-grid-header li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translate(-50%, 3px);
    width: 100%;
    height: 2px;
    opacity: 0;
    visibility: hidden;
    background: var(--colorBlanco);
    transition: all .5s ease;
}

.list-grid-header li a:hover::after {
    transform: translate(-50%, -5px);
    opacity: 1;
    visibility: visible;
}

.list-grid-header li a:hover {
    text-decoration: none;
    color: var(--colorBlanco);
}
.container-list-mobile-idioma{
    display: none;
}
.list-grid-idioma{
    grid-column-gap: 1.2rem;
    padding: 1rem 1.2rem;
}
.img-idioma{
    width: 24px;
    aspect-ratio: 1/1;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
.list-grid-idioma li a::after,
.list-mobile-idioma li a::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: var(--colorBlanco);
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.list-grid-idioma li a:hover::after{
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
}
.list-mobile-idioma li a:hover::after{
    transform: translate(-50%, -48%);
    opacity: 1;
    visibility: visible;
}
.btn-menu {
    background: linear-gradient(90deg, rgba(31, 60, 43, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: saturate(180%) blur(5px);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: 0;
    border: 0;
    border-radius: 6px;
    position: relative;
    margin-left: auto;
    display: none;
    z-index: 999;
}

.btn-img-menu {
    height: 40px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.btn-img-close {
    height: 34px;
    aspect-ratio: 1/1;
    object-fit: contain;
    display: none;
}

.btn-whatsapp {
    font-size: .9rem;
    letter-spacing: 0.05rem;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    color: var(--colorBlanco);
    padding: 1rem 1.4rem;
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(31, 60, 43, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    max-width: 255px;
    height: 62px;
    /* margin-left: auto; */
    backdrop-filter: saturate(180%) blur(5px);
    transition: all .3s;
    border: 5px solid #94872F;
    justify-content: center;
}

.btn-whatsapp img {
    width: 30px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.btn-whatsapp:hover {
    text-decoration: none;
    color: var(--colorBlanco);
    transform: translateY(-5px);
    transition: all .3s;
}
.btn-whatsapp-footer{
    width: fit-content;
}

/* Fin Header */


/* Hero */

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
}

.container-image-hero {
    position: relative;
}

.container-image-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 73, 55, .3);
    z-index: 9;
}

.img-banner {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.btn-arrow-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--colorBlanco);
    font-size: 1rem;
    letter-spacing: 0.05rem;
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    transition: all .3s;
    z-index: 10;
}

.btn-arrow-bottom img {
    height: 30px;
    object-fit: contain;
}

.btn-arrow-bottom:hover {
    text-decoration: none;
    color: var(--colorBlanco);
}

.btn-play {
    width: fit-content;
    height: 62px;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    color: var(--colorBlanco);
    padding: 1rem 1.4rem;
    margin-left: auto;
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(31, 60, 43, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    column-gap: 1rem;
    backdrop-filter: saturate(180%) blur(5px);
    position: absolute;
    bottom: 70px;
    left: 42px;
    z-index: 10;
    transition: all .3s;
    border: 5px solid #94872F;
}

.btn-play img {
    height: 34px;
    object-fit: contain;
}

.btn-play:hover {
    text-decoration: none;
    color: var(--colorBlanco);
    transform: translateY(-5px);
    transition: all .3s;
}

.btn-broshure {
    width: fit-content;
    height: 62px;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    color: var(--colorBlanco);
    padding: 1rem 1.4rem;
    margin-right: auto;
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(31, 60, 43, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    column-gap: 1rem;
    backdrop-filter: saturate(180%) blur(5px);
    position: absolute;
    bottom: 70px;
    right: 42px;
    z-index: 10;
    transition: all .3s;
    border: 5px solid #94872F;
}

.btn-broshure img {
    height: 34px;
    object-fit: contain;
}

.btn-broshure:hover {
    text-decoration: none;
    color: var(--colorBlanco);
    transform: translateY(-5px);
    transition: all .3s;
}
/* Fin Hero */


/* Seccion Info */

.info {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.container-logo {
    text-align: center;
}

.logo-info {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.container-card-info {
    display: block;
    margin-top: 2.5rem;
    color: var(--colorTexto);
    transition: all .3s;
}

.container-card-info:hover {
    text-decoration: none;
}

.card-img {
    overflow: hidden;
    border-radius: 8px;
}

.img-info {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    will-change: transform;
    transition: all 3s;
}

.container-card-info:hover .img-info {
    transform: scale(1.1);
    will-change: transform;
    transition: all 3s;
}

.text-card-info {
    width: 90%;
    margin: 0 auto;
    margin-top: 1.1rem;
    font-size: 1.2rem;
    color: var(--colorTexto);
    text-align: center;
}

.container-card-info:hover .text-card-info {
    text-decoration: none;
    color: var(--colorPrincipal);
}

.fancybox-image {
    border-radius: 8px;
}

.fancybox-button.fancybox-button--thumbs,
.fancybox-button.fancybox-button--play,
.fancybox-button.fancybox-button--zoom {
    display: none;
}

.fancybox-button.fancybox-button--zoom {
    display: none;
}


/* Fin Seccion Info */


/* Mapa con indicadores */

.indicadores {
    padding-bottom: 4rem;
}

.container-indicadores-img,
.container-indicadores {
    position: relative;
}

.img-indicadores {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
}

.ref-indicadores {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    padding: 0 1rem;
    color: var(--colorPrincipal);
    font-weight: 500;
    border-radius: 30px;
    text-align: center;
    line-height: 1.4px;
    overflow: hidden;
    z-index: 10;
    box-shadow: 2px 3px 15px 0 rgb(51 51 51 / 62%);
    cursor: pointer;
    transition: width .4s;
}

.ref-indicadores .ref-ubicacion-text {
    margin-bottom: 0;
    white-space: nowrap;
}

.ref-indicadores .ref-ubicacion-text span {
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.ref-5 span {
    white-space: nowrap;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ref-indicadores:hover {
    width: auto;
    transition: width .4s;
    z-index: 99;
}

.ref-indicadores:hover span {
    opacity: 1;
    visibility: visible;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: all .3s;
}

.ref-1 {
    top: 4%;
    left: 54%;
}

.ref-2 {
    top: 24%;
    left: 58%;
}

.ref-3 {
    top: 47%;
    left: 61%;
}

.ref-4 {
    top: 52%;
    left: 84%;
}

.ref-5 {
    top: 48%;
    left: 73%;
}

.ref-6 {
    top: 17%;
    left: 6%;
}

.ref-7 {
    top: 35%;
    left: 12%;
}

.grid-indicadores {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 2.4rem;
    flex-wrap: wrap;
}

.item-indicadores {
    margin-top: 1.4rem;
}

.item-indicadores p {
    font-size: 1.125rem;
    margin-bottom: 0;
    text-align: center;
}

.slick-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}
.btn-map-indicadores{
   /* display: none; */
   border: 5px solid #94872F;
}

/* Fin Mapa con indicadores */


/* Mapa */

.map {
    position: relative;
}

.img-mapa {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
}


/*fin Mapa */


/* Historia */

.historia {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.text-historia {
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.02rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}


/* Fin Historia */


/* Timeline */

.timeline {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.grid-timeline {
    position: relative;
}

.item-tiemline {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 14%;
    height: 65px;
}

.time-img {
    position: relative;
    display: inline-block;
    height: 70px;
    object-fit: contain;
    background: var(--colorBlanco);
    margin-left: 15%;
    z-index: 1;
}

.time {
    font-size: 1.125rem;
    padding: 1.2rem 1rem;
    display: inline-block;
    background: var(--colorBlanco);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.description-time {
    font-size: .9rem;
    position: absolute;
    left: 190px;
    bottom: -20px;
    white-space: nowrap;
    margin-bottom: 0;
    z-index: 2;
}

.description-time.description-time-top {
    top: -20px;
    bottom: unset;
}

.line-timeline {
    width: 72%;
    height: 10px;
    margin: 0 auto;
    border-top: 2px solid #979797;
    border-bottom: 2px solid #979797;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pos-1 {
    left: calc(100% - -5%);
}

.pos-2 {
    left: calc(100% - -10%);
}

.pos-3 {
    left: calc(100% - -15%);
}

.pos-4 {
    left: calc(100% - -20%);
}

.pos-5 {
    left: calc(100% - -25%);
}

.pos-6 {
    left: 100%;
}

.step-1::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -3px;
    width: 28px;
    height: 25px;
    background-image: url(../images/bottom.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
}

.step-2::after {
    content: '';
    position: absolute;
    top: 5px;
    left: -3px;
    width: 28px;
    height: 25px;
    background-image: url(../images/top.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
}

.step-3::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -3px;
    width: 28px;
    height: 25px;
    background-image: url(../images/bottom.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
}

.step-4::after {
    content: '';
    position: absolute;
    top: 5px;
    left: -3px;
    width: 28px;
    height: 25px;
    background-image: url(../images/top.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
}

.step-5::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -3px;
    width: 28px;
    height: 25px;
    background-image: url(../images/bottom.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
}

.step-end::after {
    content: '';
    position: absolute;
    top: 5px;
    right: -16%;
    width: 28px;
    height: 25px;
    background-image: url(../images/top.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
}


/* Fin Timeline */


/* Edificio */

.edificio {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.img-edificio {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.img-banner-edificios {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    aspect-ratio: 2/1;
}
.container-text-edificio{
    text-align: center;
    margin-top: 1.4rem;
}
.title-edificio{
    text-align: center;
    font-size: 1.4rem;
    color: var(--colorPrincipal);
}

/* Fin Edificio */

.footer {
    background: var(--colorPrincipal);
    padding: 4rem 0;
}

.logo-inmo-footer {
    height: 90px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(209deg) brightness(103%) contrast(101%);
    text-align: center;
    display: block;
    margin: 0 auto;
}

.title-inmo-footer {
    color: var(--colorBlanco);
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem;
    margin-top: 2rem;
    letter-spacing: 0.02rem;
}

.text-inmo-footer {
    color: var(--colorBlanco);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.02rem;
}

.logo-principal-footer {
    height: 90px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(209deg) brightness(103%) contrast(101%);
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-top: -.5rem;
}

.list-social {
    list-style: none;
    padding: 0;
    margin-top: 2.5rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
}

.list-social-desktop {
    display: none;
}

.list-social li a img {
    height: 30px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.title-call {
    font-size: 1rem;
    color: var(--colorBlanco);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.02rem;
    margin-top: 2rem;
}

.btn-whatsapp-footer {
    margin: 0 auto;
    background: linear-gradient(92deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: saturate(180%) blur(5px);
}

.text-footer-end {
    color: var(--colorBlanco);
    font-size: 13px;
    text-align: center;
    width: 95%;
    margin: 0 auto;
    margin-top: 4rem;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '' !important;
}
.swiper-button-prev,
.swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: linear-gradient(92deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.0) 100%);
    backdrop-filter: saturate(180%) blur(5px);

}
.swiper-button-prev img,
.swiper-button-next img{
    width: 16px;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.list-mobile-idioma{
    display: none;
}
@media screen and (max-width:1350px) {

    .list-grid-header{
        column-gap: 1.6rem;
    }
    .list-grid-header li a{
        font-size: .875rem;
        width: max-content;
    }
    .btn-whatsapp{
        font-size: .875rem;
    }
}
@media screen and (max-width:1190px) {
    .btn-whatsapp,
    .list-grid-header li a {
        font-size: .9rem;
    }
    .btn-whatsapp {
        column-gap: .5rem;
        margin-left: auto;
    }
    .list-grid-header {
        column-gap: 2.2rem;
    }
    .header .grid-header{
       grid-template-columns: 1fr 1fr 1fr;
    }
    .item-grid-header-idioma{
        display: none;
    }
}

@media screen and (max-width:990px) {
    .header .grid-header {
        grid-template-columns: 1fr 1fr;
        padding: 1rem 0;
        position: relative;
    }
    .grid-header .item-grid-header .btn-whatsapp {
        display: none;
    }
    .list-mobile-idioma{
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 1.4rem;
        list-style: none;
        padding: 0;
    }
    .container-logo-header {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }
    .list-grid-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--colorPrincipal);
        border-radius: 0;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        transform: translateY(-1000px);
        transition: all .6s;
    }
    .list-grid-header li a {
        font-size: 1.4rem;
    }
    .list-grid-header.active {
        transform: translateX(0);
        transition: all .6s;
    }
    .btn-menu {
        display: flex;
    }
    .btn-menu.change .btn-img-menu {
        display: none;
    }
    .btn-menu.change .btn-img-close {
        display: flex;
    }
    .btn-arrow-bottom,
    .btn-play p span {
        display: none;
    }
    .btn-play {
        column-gap: .5rem;
        height: 44px;
        padding: .8rem;
        right: 15px;
        bottom: 20px;
    }
    .btn-play img {
        width: 24px;
    }
    .btn-broshure {
        column-gap: .5rem;
        height: 44px;
        padding: .8rem;
        left: 15px;
        bottom: 20px;
    }
    .btn-broshure img {
        width: 24px;
    }
    .img-info {
        height: auto;
    }
    .btn-map {
        left: 50%;
        transform: translateX(-50%);
        right: unset;
    }
    .btn-map:hover {
        transform: translate(-50%, -5px);
    }
    .btn-map img {
        width: 16px;
    }
    .text-historia {
        font-size: 1.125rem;
    }
    .timeline {
        display: none;
    }
    .logo-principal-footer {
        margin-top: 1rem;
    }
    .list-social {
        display: none;
    }
    .list-social-desktop {
        display: flex;
    }
    .img-banner-edificios {
        aspect-ratio: 1/1;
    }
    .ref-indicadores{
        width: 30px;
        height: 30px;
        padding: 0 .65rem;
    }
    .goog-te-banner-frame{
        display:none !important;
    }
    .container-list-mobile-idioma{
        display: flex;
    }
}