@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
    --main: #023629;
    --secondary: #C8D400;
	--contrast: #E28412;
	--light: #FFF3D8;
    --light-40: #FFFAEF;
	--white: #FFFFFF;

    --color-link: #023629;
    --color-link-hover: var(--secondary);
}

body {
    font-family: "Montserrat", sans-serif;
	color: var(--main);
	background-color: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden !important;
	position: relative;
    font-size: 14px;
}

p {
   	font-size: 15px;
    font-weight: 400;
    line-height: 220%; /* 22.4px */
    letter-spacing: -0.2px;
}

.dark-section{
    background-color: var(--main) !important;
    color: var(--white);
}

.light-section{
    background-color: var(--light-40) !important;
    color: var(--main);
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	cursor: pointer;
}

a:hover {
	color: inherit;
	outline: none;
}

::-webkit-scrollbar {
    display: none !important;
}

/* Utilities Estandar */
.std-p{
	padding-top: 120px;
	padding-bottom: 120px;
}

.std-mg{
	margin-bottom: 25px;
}

.special-padding{
    padding-right: 10%;
}

.special-height{
    height: 250px;
}

.img-fluid{
	width: 100%;
}

/* Text Styles */
.text-alt-color{
	color: var(--contrast);
}

.text-secondary-color{
	color: var(--secondary);
}

.display-1{
	font-size: 128px;
    font-weight: 100;
    line-height: 90%; /* 115.2px */
    letter-spacing: -6.4px;
}

.display-2{
	font-size: 96px;
    font-weight: 100;
    line-height: 92%; /* 88.32px */
    letter-spacing: -3.84px;
}

.display-3{
	font-size: 64px;
    font-weight: 500;
    line-height: 90%; /* 57.6px */
    letter-spacing: -1.28px;
}

.h1{
	font-size: 48px;
    font-weight: 700;
    line-height: 94%; /* 45.12px */
    letter-spacing: -2.88px;
}

.h2{
	font-size: 40px;
    font-weight: 700;
    line-height: 100%; /* 40px */
    letter-spacing: -2px;
}

.h3{
	font-size: 33px;
    font-weight: 300;
    line-height: 100%; /* 33px */
}

.h4{
	font-size: 27px;
    font-weight: 300;
    line-height: 100%; /* 27px */
}

.h5{
	font-size: 23px;
    font-weight: 600;
    line-height: 100%; /* 23px */
}

.h6{
	font-size: 18px;
    font-weight: 700;
    line-height: 100%; /* 18px */
}

.title-p{
	font-size: 18px;
}

.p{
	font-size: 15px;
    font-weight: 400;
    line-height: 220%; /* 22.4px */
    letter-spacing: -0.2px;
}

.wide{
    font-size: 13px;
    text-transform: uppercase;
    line-height: 100%; /* 13px */
    letter-spacing: 3px !important;
    font-weight: 700;
}

.small{
	font-size: 13px;
    font-weight: 700;
    line-height: 100%; /* 13px */
    letter-spacing: -0.65px;
}

.small-help-text{
	font-size: 11px;
	opacity: .8;
    font-weight: 400;
    line-height: 146%; /* 16.06px */
    letter-spacing: 0.55px;
}

/* Button Styles */
.btn{
    width: 180px;
    height: 180px;
    border-radius: 100%;
    display: inline-block;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    line-height: 140%; /* 18px */
    font-size: 15px;
    text-transform: uppercase;
    padding: 45px 20px;
    position: relative;
}

.btn i{
    display: block;
    font-size: 2em;
    margin-bottom: 10px;
}

.btn span{
    position: relative;
    z-index: 2;
}

.btn-primary{
    background-color: var(--contrast);
    color: var(--white);
    position: relative;
}

.btn-primary:hover{
    background-color: var(--secondary);
    color: var(--main);
}

/* Crear el anillo de puntos separado */
.btn::before, .price-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px; 
    height: 210px;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background: transparent;
    border: 4px dashed var(--contrast);
    z-index: 0;
    animation: rotateDots 20s linear infinite;
    pointer-events: none;
    transition: .2s ease-in-out all;
}

.price-bubble::before {
    width: 140px; 
    height: 140px;
    border-width: 4px;
}

.btn:hover::before {
    border-color: var(--secondary);
}

/* Asegurar que el contenido del botón esté por encima */
.btn span, .btn i {
    position: relative;
    z-index: 2;
}

@keyframes rotateDots {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive para el efecto */
@media only screen and (max-width: 768px) {
    .btn::before,
    .price-bubble::before {
        width: 200px;
        height: 200px;
        border-width: 4px;
    }
}

.btn-secondary{
    background-color: var(--secondary);
    color: var(--white);
    position: relative;
}

.btn-secondary:hover{
    background-color: var(--contrast);
}

.btn-secondary::before {
    border: 4px dashed var(--secondary) !important;
}

.btn-secondary:hover::before {
    border-color: var(--contrast) !important;
}

.btn-custom {
    background: linear-gradient(to right, rgba(0,81,37,1) 0%, rgba(12,98,75,1) 50%, rgba(200,212,0,1) 100%);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    width: auto;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-custom:hover {
    background: linear-gradient(to right, rgba(0,81,37,0.9) 0%, rgba(12,98,75,0.9) 50%, rgba(200,212,0,0.9) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-custom::before {
    display: none;
}

.btn-custom:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(226, 132, 18, 0.3);
}


.logo{
	background: url("../img/main-logo.png");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 170px;
	height: 170px;
	position: relative;
	display: inline-block;
	top: 20px;
	margin-bottom: 0px;
}

.footer-logo{
	background: url("../img/footer-logo.png");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	height: 170px;
	position: relative;
	display: inline-block;
	top: 0px;
	margin-bottom: 0px;
}

.hide-text {
	text-indent: 110%;
	white-space: nowrap;
	overflow: hidden;
}

.main-nav{
    height: 130px;
    color: var(--white);
}

.main-nav .primary-nav{
    padding: 30px 0px;
    margin-top: 20px;
}

.primary-nav a{
    padding: 3px 15px;
    border-radius: 40px;
    background-color: transparent;
    display: block;
    font-weight: 500;
    transition: .2s ease-in-out all;
}

.primary-nav a:hover{
    background-color: var(--secondary);
    color: var(--main);
}

/*
.main-nav .secondary-nav{
}
*/

.btn-location{
    padding: 8px 25px;
    color: var(--main);
    border-radius: 40px;
    background-color: var(--secondary);
    box-shadow: 0px 4px 13.8px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .2s ease-in-out all;
}

.btn-location:hover{
    background-color: var(--main);
    color: var(--white);
}

.btn-location:focus{
    background-color: var(--main) !important;
}

.collapse-wrap{
    position: absolute;
    right: 0px;
    width: 450px;
    top: 60px;
    border-radius: 20px;
    overflow: hidden;
}

.collapse-wrap .btn-primary{
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: -80px;
}

nav{
    position: absolute;
    top: 60px;
    left: 0px;
    width: 100%;
    z-index: 10;
}

/* ======================================
   Modal Coming Soon (bloquea scroll)
   ====================================== */
.modal-comingsoon .modal-dialog {
    max-width: 960px;
}

.modal-comingsoon .modal-content {
    border: none;
    border-radius: 20px;
    overflow: visible; /* permitir que el logo salga por arriba */
    background: #000;
}

.modal-comingsoon .modal-body { padding: 0; }

.modal-comingsoon .modal-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden; /* que el video respete el borde redondeado */
    border-radius: 20px;
}

.modal-comingsoon .modal-hero .bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-comingsoon .modal-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,.75) 100%);
}

.modal-comingsoon .modal-hero .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
    z-index: 2;
}

.modal-comingsoon .modal-hero .hero-content h4 {
    font-weight: bold;
}

/* Botón rectangular dentro del modal (no circular) */
.modal-comingsoon .btn {
    width: auto;
    height: auto;
    padding: 12px 22px;
    border-radius: .5rem;
}
.modal-comingsoon .btn i { display: inline-block; margin: 0 8px 0 0; font-size: 1.25em; }
.modal-comingsoon .btn::before { display: none; }

/* Esfera del logo flotante sobresaliendo del modal */
.modal-comingsoon .modal-logo-float {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 0; /* contenedor solo para posicionamiento */
    z-index: 3;
    pointer-events: none; /* que no interfiera con clics del modal */
}

/* Ajustes del bloque guiar dentro del modal para que no muestre la barra */
.modal-comingsoon .guiar-btn {
    background: transparent;
    box-shadow: none;
    height: auto;
    margin: 0;
    width: auto;
}
.modal-comingsoon .guiar-btn .guiar {
    pointer-events: auto; /* permitir clic al link */
}

@media (max-width: 576px) {
    .modal-comingsoon .modal-dialog { margin: 1rem; }
    .modal-comingsoon .modal-hero { min-height: 360px; }
}

.modal-backdrop{
    opacity: .8 !important;
}

/* General Styles */
.card{
    border: none;
}

/* Page Start */
.page-start{
    padding-top: 60px;
    padding-bottom: 0px;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    perspective: 1000px;
}

.page-start .separator{
    background: url("../img/separator.svg");
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -1px;
    left: -10px;
    height: 20vw;
    min-height: 120px;
    max-height: 250px;
    width: 101% !important;
    z-index: 10;
    transition: transform 0.1s ease-out;
}

.page-start .sky{
    background: url("../img/page-start/sky.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 110vh;
    width: 110%;
    position: absolute;
    top: -20px;
    left: -30px;
    z-index: 1;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.page-start .building{
    background: url("../img/page-start/building.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 102%;
    position: absolute;
    top: 0%;
    left: -10px;
    z-index: 3;
    margin-top: 5%;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.page-start .gradient-container{
    z-index: 2;
    position: relative;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.page-start .stats-container{
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 4;
    width: 100%;
    text-align: center;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.page-start .social-container{
    position: absolute;
    bottom: 52%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 99;
    width: 100%;
    text-align: center;
}

.page-start .social-links a i{
    color: var(--white);
    font-size: 60px;
}

.social-links .wide{
    color: var(--white) !important;
}

.page-start .h2{
    font-size: 35px;
}

/* Cursor personalizado para el efecto parallax */
/*
.page-start::before {
    content: '';
    position: fixed;
    top: var(--cursor-y, -100px);
    left: var(--cursor-x, -100px);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(200, 212, 0, 0.8) 0%, rgba(200, 212, 0, 0.4) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
    box-shadow: 
        0 0 20px rgba(200, 212, 0, 0.5),
        0 0 40px rgba(200, 212, 0, 0.2);
    opacity: 0;
}
*/  

.parallax-active .page-start::before {
    opacity: 1;
}

/* Mejoras adicionales para el efecto 3D */
.page-start .gradient-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Responsive para el efecto parallax */
@media only screen and (max-width: 768px) {
    .page-start {
        cursor: auto;
    }
    
    .page-start::before {
        display: none;
    }
    
    /* Desactivar parallax en móviles para mejor performance */
    .page-start .sky,
    .page-start .building,
    .page-start .gradient-container,
    .page-start .stats-container {
        transition: none !important;
    }
}

.gradient-card{
    height: 100vh;
    color: var(--white);
    padding: 70px 60px 120px 60px;
    border-radius: 40px;
    background: linear-gradient(to bottom,  rgba(0,81,37,1) 0%,rgba(12,98,75,1) 50%,rgba(200,212,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.gradient-card .price-bubble{
    position: absolute;
    top: 10%;
    right: -60px;
    height: 120px;
    width: 120px;
    background: var(--contrast);
    border-radius: 100%;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
}

.price-bubble .h5{
    font-size: 18px;
    font-weight: 700;
}

/* Stats Cards */
.stats-card{
    position: relative;
    margin-bottom: 30px;
}

.stats-card .stats-card-header{
    font-size: 13px;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: 3px !important;
    font-weight: 700;
    margin-bottom: 0px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 15px 0px;
    border-radius: 10px 10px 0px 0px;
}

.bg-contrast{
    background-color: var(--contrast) !important;
}

.bg-green{
    background-color: #7FA52C !important;
}


.stats-card .stats-card-body{
    background-color: rgba(255, 243, 216, 0.8);
    border: 2px solid var(--white);
    border-top: none;
    color: var(--main);
    border-radius: 0px 0px 20px 20px;
    padding: 30px 20px;
}

/* Detalle de la imagen */

section .container{
    position: relative;
    z-index: 2;
}

.detail-image{
    position: absolute;
    right: 0px;
    width: 600px;
    height: 600px;
    background: url(../img/detail.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

/* Video */
.video-section{
    position: relative;
    padding-top: 40px;
    padding-bottom: 20px;
}

.video-section .decor-background{
    background-color: var(--main);
    height: 50%;
    width: 100%;
    display: block;
    position: absolute;
    z-index: -1;
    top: 0px;
}

.video-placeholder{
    padding: 200px 0px;
    background: url(../img/video-placeholder.jpg);
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.video-section .video-placeholder video{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-placeholder .overlay{
    background: linear-gradient(135deg,  rgba(200,212,0,1) 0%,rgba(12,98,75,1) 50%,rgba(12,98,75,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .5;
}

.video-placeholder .btn{
    position: relative;
    z-index: 2;
}

/* CTA Section */
.stylish-list li{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.stylish-list i{
    color: var(--secondary);
    margin-right: 15px;
    font-size: 1.3em;
}

.cta-image-wrapper{
    position: relative;
    z-index: 2;
    height: 100vh;
}

.cta-image-wrapper img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: auto !important;
    width: 100% !important;
}

.cta-image-wrapper .guiar-circle{
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 100%;
    box-shadow: 0px 0px 20px rgba(0,0,0,.3);
}

.guiar-circle img{
    width: 70% !important;
}

.stats-card-right{
    position: absolute;
    width: 35%;
    top: 30px;
    right: 0px;
    z-index: 4;
    transform: scale(.8);
}

.stats-card-bottom{
    position: absolute;
    width: 35%;
    bottom: 30px;
    left: 00px;
    transform: translateX(-50%);
    z-index: 4;
    transform: scale(.8);
}

/* Tour Section */
.tour-section{
    padding: 60px 0px;
    position: relative;
    color: var(--white);
    margin: 120px 0px;
    background: url(../img/bg-placeholder.png);
}

.tour-section .btn{
    position: absolute;
    top: 50%;
}

.tour-section .overlay{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--main);
    opacity: 0;
    z-index: 1;
}

.tour-section .container{
    z-index: 2;
    position: relative;
}


/* Modelo Section */
.model-section{
    position: relative;
}

.model-section .light-bg-decorator{
    background-color: var(--light-40);
    height: 55%;
    width: 100%;
    display: block;
    position: absolute;
    z-index: -1;
    bottom: 0px;
}

.model-carousel{
	z-index: 2;
}

.model-carousel .item{
    position: relative;
    height: 620px;
    border-radius: 30px;
    overflow: hidden;
}

.item video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 100% !important;
    width: auto !important;
    z-index: 1;
}

.model-carousel-content{
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 2;
    text-align: right;
    color: var(--light);
}

.model-carousel .owl-nav{
    position: absolute;
    right: 50px;
    bottom: 50px;
    margin: 0px;
}

/* Plano */
.tab-content{
    position: relative;
    z-index: 2;
    background-color: var(--light);
    padding: 60px 50px;
    min-height: 420px;
    color: var(--main);
    border-radius: 0px 20px 20px 20px;
}

.nav-tabs{
    border-bottom: none;
    background-color: transparent;
    justify-content: start;
    gap: 15px;
}

.nav-tabs .nav-link{
    border: none;
    background-color: transparent;
    color: var(--main);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 40px;
    border-radius: 20px 20px 0px 0px;
    transition: .2s ease-in-out all;
}

.nav-tabs .nav-link.active{
    background-color: var(--light);
    color: var(--main);
}

/* Amenidades */
.amenities-carousel{
	z-index: 2;
}

.amenities-section{
    position: relative;
    overflow: hidden;
}

.amenities-section .decor-background{
    background-color: var(--main);
    height: 50%;
    width: 100%;
    display: block;
    position: absolute;
    z-index: -1;
    top: 0px;
}

.amenities-carousel .owl-stage-outer{
	overflow: initial !important;
}

.owl-nav{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 50px 0px;
}

.owl-prev,
.owl-next{
	width: 45px;
	height: 45px;
	background-color: var(--secondary) !important;
	color: var(--white) !important;
	display: block;
	border-radius: 100%;
	z-index: 2;
}

.owl-prev span,
.owl-next span{
	font-size: 30px;
    line-height: 20px;
}

.owl-dot{
    background-color: transparent !important;
    border: 2px solid var(--white) !important;
    height: 10px;
    width: 10px;
    margin-right: 6px;
    border-radius: 100%;
}

.owl-dot.active{
    background-color: var(--secondary) !important;
}

.amenities-carousel .item{
    position: relative;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
}

.item .overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 100%;
    width: 100%;
    background-color: var(--grey);
    opacity: .2;
    z-index: 2;
}

.item img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 100% !important;
    width: auto !important;
    z-index: 1;
}

.amenities-carousel .item .h5{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    text-align: center;
    color: var(--white);
    z-index: 3;
}

/* Financiamiento */
.financing-form{
    position: relative;
    background: url(../img/form-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px;
    border-radius: 20px;
    padding-bottom: 0px;
}

.financing-form .btn-submit{
    position: absolute;
    right: 6%;
    top: -150px;
}

.financing-form small{
    color: var(--contrast);
}

.form-control{
    border: 2px solid var(--white);
    border-radius: 32px;
    background-color: transparent;
    padding: 20px;
    color: var(--white);
}

.form-group{
    position: relative;
}

.form-group label{
    background-color: var(--secondary);
    color: var(--main);
    border-radius: 40px;
    padding: 3px 15px;
    position: absolute;
    top: -12px;
    left: 30px;
    font-weight: 700;
    font-size: .8em;
}


/* ------------------ */
/* ------------------ */
/* ----- FOOTER ----- */
/* ------------------ */
/* ------------------ */
.pre-footer{
    border-radius: 60px 60px 0px 0px;
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.pre-footer .separator{
    background: url("../img/separator-2-mirrored.svg");
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -9vw;
    left: -10px;
    height: 20vw;
    min-height: 120px;
    max-height: 250px;
    width: 101% !important;
    z-index: 1;
    transition: transform 0.1s ease-out;
}



footer{
    background-color: var(--main);
    color: var(--white);
}

footer a{
    color: var(--white) !important;
}

footer .card{
    color: var(--main);
}

footer .card-terms{
    position: absolute;
    z-index: 10;
    bottom: 0px;
    padding: 40px 50px;
    border-radius: 20px;
}

.card-terms h5{
    margin-bottom: 30px;
}

.card-terms p{
    margin-bottom: 30px;
    display: flex;
    align-items: start;
    gap: 15px;
    flex-grow: 1;
    font-size: 12px;
}

.card-terms .counter{
    width: 20px;
    height: 20px;
    border-radius: 100%;
    line-height: 19px;
    position: relative;
    padding-left: 1px;
    background-color: var(--secondary);
    color: var(--main);
    display: block;
    text-align: center;
    flex-shrink: 0;
    font-size: .8em;
    font-weight: bold;
}

footer hr{
    margin: 0px;
}

.post-footer{
    padding-top: 65px;
    position: relative;
}

.footer-image-wrapper{
    position: relative;
    height: 110vh;
    background: url("../img/footer-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.footer-image-wrapper .separator{
    background: url("../img/separator-2.svg");
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -1px;
    left: -10px;
    height: 20vw;
    min-height: 120px;
    max-height: 250px;
    width: 101% !important;
    z-index: 1;
    transition: transform 0.1s ease-out;
}


.footer-menu{
    padding: 30px 0px;
    margin-top: 30px;
}

.footer-menu .social-links a i{
    color: var(--white);
    font-size: 30px;
    transition: .2s ease-in-out all;
}

.footer-copyright{
    padding: 30px 0px;
}

/* Legal */
.legal-section{
    padding-top: 260px;
    padding-bottom: 120px;
}

/* Forcefull actiosns */
.height-img{
    width: auto !important;
    height: 100% !important;
}

.width-img{
    width: 100% !important;
    height: auto !important;
}


/* ------------------ */
/* ------------------ */
/* SIDEBAR RESPONSIVO */
/* ------------------ */
/* ------------------ */
.responsive-nav {
    width: 100%;
    z-index: 1999;
    position: absolute;
    top: 55px;
    left: 0px;
    height: 180px;
    background: transparent;
    display: none;
}

.responsive-nav .btn-menu {
    width: 50px;
    height: 50px;
    display: block;
    text-align: center;
    background-color: var(--main);
    border-radius: 100%;
    color: var(--bg);
    padding: 0px;
    position: absolute;
    top: 40px;
    right: 30px;
}

.responsive-nav .btn-menu i {
    font-size: 22px;
    line-height: 50px;
    color: var(--light);
}

.responsive-nav .logo {
    width: 120px;
    margin-top: 0px;
    height: 132px;
    float: left;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
    margin-left: 30px;
}

#sidebar-wrapper{
    position: fixed;
    height: 100%;
    z-index: 3000;
    width: 90%;
    overflow-x: hidden;
    overflow-y: scroll;

    top: 0px;
    padding: 20px 30px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    right: -90%;
    background: #fff;
}

.menu-container{
    background-color: #fff;
}

body.toggled #sidebar-wrapper{
    transform: translate3d(-90%, 0, 0);
    -webkit-transform: translate3d(-90%, 0, 0);
    -moz-transform: translate3d(-90%, 0, 0);
    -ms-transform: translate3d(-90%, 0, 0);
    -o-transform: translate3d(-90%, 0, 0);
}

.sidebar-nav {
    width: 100%;
    padding: 0;
    list-style: none;
}

.sidebar-nav .nav-title{
    text-transform:uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    color: #1e1e1e;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
    background: #f8f8f8;

    color: #1e1e1e;
}

.sidebar-nav li a:hover i{
    color: #1e1e1e;
}

.sidebar-nav .title{
    font-size: 0.5em;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-left: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 200;
}

.sidebar-overlay{
    background: rgba(0,0,0,.3);
    z-index: -1;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;


    transform: translate3d(-260px, 0, 0);
    -webkit-transform: translate3d(-260px, 0, 0);
    -moz-transform: translate3d(-260px, 0, 0);
    -ms-transform: translate3d(-260px, 0, 0);
    -o-transform: translate3d(-260px, 0, 0);
}

body.toggled {
    overflow-y: hidden;
}

body.toggled .sidebar-overlay{
    opacity:1;
    transform: translateX(0);
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    z-index: 2001;
}

.brand-header{
    position: relative;
    padding: 30px 0px;
    text-align: left;
    background-color: #fff;
}

.brand-header .close-btn{
    font-size: 20px;
    color: var(--bg);
    position: relative;
    background-color: var(--main);
    border: none;
    cursor:  pointer;
    line-height: 40px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
}

.close-btn i{
    color: var(--light);
}

.hide-res{
    display: block;
}


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1600px) {
    .gradient-card {
        padding: 50px 40px 100px 40px;
    }
    
    .gradient-card .price-bubble {
        right: -50px;
        height: 110px;
        width: 110px;
    }
    
    .detail-image {
        width: 500px;
        height: 500px;
    }
}

@media only screen and (min-width : 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Large Devices, Desktops */
@media only screen and (max-width : 1200px) {
    .display-1 {
        font-size: 96px;
        letter-spacing: -4.8px;
    }
    
    .display-2 {
        font-size: 72px;
        letter-spacing: -2.88px;
    }
    
    .h1 {
        font-size: 42px;
        letter-spacing: -2.5px;
    }
    
    .gradient-card {
        padding: 40px 30px 80px 30px;
    }
    
    .gradient-card .price-bubble {
        right: -40px;
        height: 100px;
        width: 100px;
    }
    
    .detail-image {
        width: 450px;
        height: 450px;
    }
    
    .video-placeholder {
        padding: 150px 0px;
    }
    
    .btn {
        width: 160px;
        height: 160px;
        padding: 35px 15px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .std-p {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .display-2 {
        font-size: 64px;
    }
    
    .h1 {
        font-size: 36px;
    }
    
    .h2 {
        font-size: 32px;
    }
    
    .gradient-card {
        height: 80vh;
        padding: 30px 20px 60px 20px;
    }
    
    .gradient-card .price-bubble {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto;
        height: 90px;
        width: 90px;
    }
    
    .page-start .building {
        margin-top: 80%;
        height: 120vh;
    }
    
    .detail-image {
        position: absolute;
        width: 100%;
        height: 350px;
        margin: 30px 0px;
    }
    
    .video-placeholder {
        padding: 120px 0px;
    }
    
    .btn {
        width: 140px;
        height: 140px;
        padding: 25px 10px;
        font-size: 13px;
    }
    
    .btn::before {
        width: 170px;
        height: 170px;
    }
    
    .tour-section {
        margin: 80px 0px;
    }
    
    .tour-section .btn {
        position: relative;
        top: auto;
        margin: 30px auto;
        display: block;
    }

    .financing-section .btn-secondary{
        margin-bottom: 40px;
        width: 120px !important;
        height: 120px !important;
        margin-left: 20px;
    }

    .financing-section .btn-secondary::before{
        width: 150px !important;
        height: 150px !important;
    }
    
    .amenities-carousel .item {
        height: 400px;
    }
    
    .financing-form {
        padding: 40px 30px 0px 30px;
    }
    
    .financing-form .btn-submit {
        position: relative;
        top: 0px;
        right: auto;
        margin: 30px auto;
        display: block;
    }
    
    .footer-image-wrapper {
        height: 60vh;
        background-attachment: scroll;
    }
    
    .cta-image-wrapper {
        height: 60vh;
        margin-bottom: 30px;
    }

    .development-list .ps-5{
        padding-left: 0px !important;
    }

    .development-list-data{
        margin-top: 50px;
    }

    .development-list small{
        text-align: center;
        display: block;
    }

    .tour-section .ps-5{
        padding-left: 0px !important;
    }

    .tour-section{
        text-align: center;
    }

    .stats-container{
        position: relative;
        display: none !important;
    }

    .social-container{
        position: relative !important;
        margin-top: 30px;
        bottom: auto;
        left: auto;
        transform: none;
        padding-bottom: 30px;
    }

    .page-start .stats-container{
        bottom: 0px;
    }

    .stats-container  .col-md-3{
        display: flex !important;
        gap: 30px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    /* Navegación responsiva */
	.responsive-nav{
		display: block;
	}

    .responsive-nav .location-btn{
        position: absolute;
        top: 115px;
        right: 30px;
    }

    .collapse-wrap {
        position: absolute;
        width: 335px;
    }

    .collapse-wrap .btn-primary{
        display: none;
    }

    .collapse-wrap .p{
        padding-right: 15% !important;
    }

	.main-nav{
		display: none;
	}

    .hide-res{
        display: none !important;
    }

    /* Tipografía responsiva */
    .display-1 {
        font-size: 64px;
        letter-spacing: -3.2px;
    }

    .display-2{
        font-size: 48px;
        letter-spacing: -1.9px;
    }

    .display-3 {
        font-size: 40px;
        letter-spacing: -0.8px;
    }

    .h1 {
        font-size: 32px;
        letter-spacing: -1.6px;
    }

    .h2 {
        font-size: 28px;
        letter-spacing: -1.4px;
    }

    .h3 {
        font-size: 24px;
    }

    .h4 {
        font-size: 20px;
    }

    /* Espaciado general */
    .std-p{
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Hero section */
    .page-start{
        padding-top: 200px;
        padding-bottom: 80px;
        text-align: center;
        min-height: 80vh;
    }

    .gradient-card {
        height: auto;
        padding: 40px 30px;
        border-radius: 30px;
    }

    .gradient-card .price-bubble {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto 30px auto;
        height: 80px;
        width: 80px;
    }

    .price-bubble .h5 {
        font-size: 14px;
    }

    .page-start .separator {
        height: 25vw;
        min-height: 80px;
        max-height: 150px;
    }

    .page-start .sky,
    .page-start .building,
    .page-start .gradient-container,
    .page-start .stats-container {
        transition: none !important;
    }

    .tour-section .btn-primary{
        padding: 18px 5px !important;
        font-size: 8.5px;
    }

    /* Stats cards */
    .stats-card {
        margin-bottom: 20px;
    }

    .stats-card .stats-card-header {
        padding: 12px 0px;
        font-size: 11px;
    }

    .stats-card .stats-card-body {
        padding: 20px 15px;
    }

    /* Botones */
    .btn {
        width: 120px;
        height: 120px;
        padding: 20px 10px;
        font-size: 12px;
    }

    .btn::before {
        width: 150px;
        height: 150px;
        border-width: 3px;
    }

    /* Video section */
    .video-placeholder {
        padding: 80px 0px;
        border-radius: 15px;
    }

    .video-section {
        padding-top: 30px;
        padding-bottom: 15px;
    }

    /* CTA Section */
    .cta-image-wrapper {
        height: 50vh;
        margin-bottom: 40px;
    }

    .cta-image-wrapper .guiar-circle {
        right: 20px;
        bottom: 20px;
        width: 80px;
        height: 80px;
    }

    .stats-card-wrap {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        margin-top: 30px;
    }

    /* Tour section */
    .tour-section {
        margin: 60px 0px;
        padding: 40px 0px;
    }

    .tour-section .btn {
        position: relative;
        top: auto;
        margin: 30px auto;
        display: block;
    }

    /* Model section */
    .model-carousel .item {
        height: 300px;
        border-radius: 20px;
    }

    .model-carousel-content {
        top: 20px;
        right: 20px;
    }

    .model-carousel .owl-nav {
        right: 20px;
        bottom: 20px;
    }

    /* Tabs */
    .tab-content {
        padding: 30px 25px;
        min-height: 300px;
        border-radius: 0px 15px 15px 15px;
    }

    .nav-tabs .nav-link {
        padding: 8px 20px;
        font-size: 10px;
    }

    /* Amenidades */
    .amenities-carousel .item {
        height: 350px;
        border-radius: 20px;
    }

    .amenities-carousel .item .h5 {
        bottom: 20px;
        font-size: 18px;
    }

    .amenities-carousel .owl-stage-outer{
        overflow: hidden !important;
    }

    .owl-nav {
        margin: 30px 0px;
    }

    .owl-prev,
    .owl-next {
        width: 40px;
        height: 40px;
    }

    .owl-prev span,
    .owl-next span {
        font-size: 24px;
        line-height: 16px;
    }

    /* Formulario */
    .financing-form {
        padding: 30px 20px 0px 20px;
        border-radius: 15px;
    }

    .financing-form .btn-submit{
        position: relative;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 30px;
        width: 140px;
        height: 140px;
    }

    .form-group{
        margin-bottom: 25px;
    }

    .form-control {
        padding: 15px;
        border-radius: 25px;
    }

    .form-group label {
        padding: 2px 12px;
        left: 25px;
        top: -10px;
        font-size: 0.7em;
    }

    /* Marquesina de créditos */
    .credits-marquee-inner {
        animation-duration: 20s;
    }
    
    .credits-marquee-item {
        width: 100px;
        margin-right: 20px;
    }
    
    .credits-marquee-item img {
        max-height: 160px;
    }

    /* Footer */
    .pre-footer {
        border-radius: 40px 40px 0px 0px;
        padding-bottom: 30px;
    }

    .pre-footer .separator {
        bottom: -12vw;
        height: 25vw;
        max-height: 150px;
    }

    .footer-image-wrapper {
        height: 40vh;
        background-attachment: scroll;
    }

    .footer-image-wrapper .separator {
        height: 25vw;
        max-height: 150px;
    }

    .post-footer{
        padding-top: 30px;
        padding-bottom: 120px;
    }

    footer .card-terms{
        position: relative;
        margin-bottom: 40px;
        padding: 30px 25px;
        border-radius: 15px;
    }

    .card-terms h5 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .card-terms p {
        margin-bottom: 20px;
        font-size: 11px;
    }

    .card-terms .counter {
        width: 18px;
        height: 18px;
        line-height: 17px;
        font-size: 0.7em;
    }

    .footer-menu {
        padding: 20px 0px;
        margin-top: 20px;
    }

    .footer-copyright {
        padding: 20px 0px;
        text-align: center;
    }

    .footer-copyright p {
        margin-bottom: 20px;
        font-size: 12px;
    }

    /* Links y navegación del footer */
    footer .justify-content-end{
        justify-content: center !important;
    }

    footer ul{
        text-align: center !important;
    }

    footer .list-inline-item{
        display: block;
        padding: 10px 0px;
    }

    .pre-footer{
        text-align: center;
    }

    .pre-footer .justify-content-end{
        justify-content: center !important;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    /* Elementos generales */
    .text-end{
        text-align: center !important;
    }

    .content-block{
        margin-bottom: 30px;
        text-align: center;
    }

    .stylish-list {
        text-align: left;
    }

    .modal-lg{
        max-width: 95% !important;
        margin: 10px;
    }

    .modal-body .tour-section .btn{
        top: auto;
        position: relative;
        margin: 20px auto;
    }

    /* Utilidades específicas para móvil */
    .special-padding {
        padding-right: 0%;
    }

    .special-height {
        height: auto;
        min-height: 200px;
    }

    .card-terms p.text-muted{
        text-align: center;
    }
   
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 576px) {
    /* Tipografía extra pequeña */
    .display-1 {
        font-size: 48px;
        letter-spacing: -2.4px;
    }

    .display-2 {
        font-size: 36px;
        letter-spacing: -1.4px;
    }

    .display-3 {
        font-size: 32px;
        letter-spacing: -0.6px;
    }

    .h1 {
        font-size: 28px;
        letter-spacing: -1.2px;
    }

    .h2 {
        font-size: 24px;
        letter-spacing: -1px;
    }

    .h3 {
        font-size: 20px;
    }

    .h4 {
        font-size: 18px;
    }

    .h5 {
        font-size: 16px;
    }

    .h6 {
        font-size: 14px;
    }

    p, .p {
        font-size: 14px;
        line-height: 200%;
    }

    /* Espaciado reducido */
    .std-p {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hero section ajustado */
    .page-start {
        padding-top: 180px;
        padding-bottom: 60px;
        min-height: 70vh;
    }

    .gradient-card {
        padding: 30px 20px;
        border-radius: 25px;
        padding-bottom: 80%;
    }

    .gradient-card .price-bubble {
        height: 70px;
        width: 70px;
        margin-bottom: 30px;
    }

    .price-bubble .h5 {
        font-size: 12px;
        font-weight: 600;
    }

    .page-start .separator {
        height: 30vw;
        min-height: 60px;
        max-height: 120px;
        width: 105% !important;
    }
    

    /* Botones más pequeños */
    .btn {
        width: 100px;
        height: 100px;
        padding: 15px 8px;
        font-size: 10px;
    }

    .btn::before {
        width: 130px;
        height: 130px;
        border-width: 2px;
    }

    .price-bubble::before{
        width: 90px;
        height: 90px;
    }

    .btn-menu::before{
        width: 60px;
        height: 60px;
        border-color: var(--main);
    }


    .btn i {
        font-size: 1.5em;
        margin-bottom: 5px;
    }

    /* Navegación responsiva */
    .responsive-nav {
        height: 160px;
    }

    .responsive-nav .btn-menu {
        width: 45px;
        height: 45px;
        top: 35px;
        right: 20px;
    }

    .responsive-nav .btn-menu i {
        font-size: 14px;
        line-height: 45px;
    }

    .responsive-nav .logo {
        width: 100px;
        height: 115px;
        margin-left: 20px;
    }

    .responsive-nav .location-btn {
        top: 100px;
        right: 20px;
        padding: 6px 20px;
        font-size: 12px;
    }

    .collapse-wrap {
        width: 300px;
    }

    /* Formulario compacto */
    .financing-form {
        padding: 25px 15px 0px 15px;
        border-radius: 10px;
    }

    .financing-form .btn-submit {
        margin-top: 25px;
        width: 120px;
        height: 120px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-control {
        padding: 12px;
        border-radius: 20px;
        font-size: 13px;
    }

    .form-group label {
        padding: 1px 10px;
        left: 20px;
        top: -8px;
        font-size: 0.6em;
    }

    /* Marquesina ajustada */
    .credits-marquee-inner {
        animation-duration: 18s;
    }
    
    .credits-marquee-item {
        width: 80px;
        margin-right: 15px;
    }
    
    .credits-marquee-item img {
        max-height: 160px;
    }

    /* Footer compacto */
    .pre-footer {
        border-radius: 30px 30px 0px 0px;
        padding-bottom: 20px;
    }

    .pre-footer .separator {
        bottom: -9vw;
        height: 30vw;
        max-height: 120px;
        width: 103% !important;
    }

    .footer-image-wrapper .separator{
        width: 104% !important;
    }

    .footer-image-wrapper {
        height: 35vh;
    }

    .footer-image-wrapper .separator {
        height: 30vw;
        max-height: 120px;
    }

    .post-footer {
        padding-top: 20px;
        padding-bottom: 100px;
    }

    footer .card-terms {
        margin-bottom: 30px;
        padding: 20px 15px;
        border-radius: 10px;
    }

    /* Modal ajustado */
    .modal-lg {
        max-width: 90% !important;
        margin: 5px;
    }

    /* Sidebar responsive */
    #sidebar-wrapper {
        width: 95%;
        padding: 15px 20px;
        right: -95%;
    }

    body.toggled #sidebar-wrapper {
        transform: translate3d(-95%, 0, 0);
        -webkit-transform: translate3d(-95%, 0, 0);
    }

    /* Utilidades específicas */
    .wide {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .small {
        font-size: 11px;
    }

    .small-help-text {
        font-size: 9px;
    }
}

/* Marquesina animada para logos de créditos */
.credits-marquee {
    width: 100%;
    overflow: hidden;
    background: transparent;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
}

.credits-marquee-inner {
    display: inline-flex;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.credits-marquee-inner:hover {
    animation-play-state: paused;
}

.credits-marquee-item {
    display: inline-block;
    width: 150px;
    height: auto;
    margin-right: 30px;
    vertical-align: middle;
    flex-shrink: 0;
}

.credits-marquee-item img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.credits-marquee-item img:hover {
    filter: grayscale(0%);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive para marquesina */
@media only screen and (max-width: 768px) {
    .credits-marquee-inner {
        animation-duration: 20s;
    }
    
    .credits-marquee-item {
        width: 120px;
        margin-right: 30px;
    }
    
    .credits-marquee-item img {
        max-height: 160px;
    }
}