@charset "utf-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}

.costa-btn {  
  	display: inline-block;
	padding: 10px 20px;
	border-radius: 50px;
  	background-color: #0B4256;
	font-family: Montserrat;
	font-weight: 700;
  	color: #fff;
	text-decoration: none !important;
	transition: 0.3s;
}

.costa-btn:hover {
	color: #fff;
  	background-color: #E9806E;
	cursor: pointer;
}

.costa-btn i {
  margin-right: 5px;
}

@media (max-width: 992px) {
	.boton {
	text-align: center;
	}	
}



/*---------------------------------------
 TIPOGRAFIAS           
-----------------------------------------*/

@font-face {
	font-family: 'Monea Alegante';
  	src: url("../otf/Monea Alegante.otf")format('truetype');
  	font-weight: normal;
  	font-style: normal;
}

/*---------------------------------------
 TIPOGRAFIAS           
-----------------------------------------*/




/*---------------------------------------
 Menú Principal             
-----------------------------------------*/

.menu-principal {
	position: absolute;
	z-index: 1000;
	width: 100%;
    top: 0;
    left: 0;    
    background-color: transparent;
}

.menu-principal nav {
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;		
}

.menu-principal .main-navbar-nav .navbar-brand {
	position: relative;
	top: 10px;		
}

.menu-principal .main-navbar-nav .navbar-brand .logo-img {
    height: 150px;
    width: auto;
    display: inline-block;
    vertical-align: middle;	
}

.main-navbar-nav li {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 600;	
	margin-top: -50px;	
}

.main-navbar-nav a {
  	color: #fff !important;
}

.main-navbar-nav .nav-link {  
 	margin: 0 35px;
  	font-size: 1.2rem;  
}

.main-navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.main-navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.main-navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.social-icons-header {
	margin-top: -50px;		
}

.social-icons-header i {
  	margin: 0 5px 0 5px;
  	font-size: 18px;		
}

.social-icons-header a:hover i { 
  	transition: all .2s ease;
	transform: scale(1.2);
}

@media (max-width: 992px) {
	.menu-principal .main-navbar-nav .navbar-brand .logo-img {
	height: 80px;		
	}	
}

@media (min-width: 992px) {
	.nav-item-movil {
		display: none;
	}
	
}

@media (max-width: 992px) {
	.main-navbar-nav li {
	margin-top: 10px;
	}
	
}

@media (max-width: 992px) {
	.social-icons-header {
	margin-top: 10px;	
	}
}

@media (max-width: 992px) {
	.social-icons-header i {
  	margin: 5px 15px 0 15px;
  	font-size: 20px;
	}
}

@media (max-width: 992px) {
	.navbar-nav {
	padding-left: 0;	
	margin-left: -35px !important;
	}
}

@media (max-width: 991.98px) {
  body:has(.navbar-collapse.show)::before {
    content: "";
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
	  
	}
}

/*---------------------------------------
 Menú Principal             
-----------------------------------------*/





/*---------------------------------------
 PORTADA     
-----------------------------------------*/

.header {	
  	position: relative;
	height: 100vh;
	min-height: 500px;
	background: url("../img/portada/desarrollo_semi_urbanizado_terrenos_yucatan_costa_playa_costaverde_portada_pc.webp")no-repeat center center fixed;
  	background-size: cover;
	overflow: hidden;
}

@media (max-width: 992px) {
	.header {
		height: 61vh;
	
		
	}	
}

.header .shape svg {
  	position: absolute;
	z-index: 10;
	width: 100%;
  	bottom: -28px;
  	left: 0;  	
}

.header .shape svg path {
  	fill: #fff;
}

@media (max-width: 767.98px) {
	.header {
		background: url("../img/portada/desarrollo_semi_urbanizado_terrenos_yucatan_costa_playa_costaverde_portada_movil.webp") no-repeat center center;
	}
}

@media (max-width: 767.98px) {
  	.header .shape svg {
    	
		
  	}
}

@media (max-width: 1199.98px) {
  .header .shape svg {
	 
    bottom: 0;
  }
}

/*---------------------------------------
 PORTADA     
-----------------------------------------*/





/*---------------------------------------
 PRESENTACIÓN 
-----------------------------------------*/

.presentacion {
  	padding: 0;
  	background-color: #fff;	
}

.presentacion h3 {  
	font-family: Monea Alegante;
	font-size: 2rem;
	font-weight: 500;
	color: #E9806E;
}

.presentacion h2 {  
	font-family: Montserrat;
	font-size: 2.5rem;
	font-weight: 700;
	color: #0B4256;
}


.presentacion p {
  	margin: 35px 0 10px;
	font-family: Montserrat;
	font-size: 1rem;
	font-weight: 400;
	color: #212529;
}

.presentacion-img {
  	position: relative;
  	height: 530px;
  	margin-top: 40px;
}

.presentacion-big {
  	position: absolute;
  	bottom: 0;
  	right: 0;
	
}

.presentacion-small {
  	position: absolute;
  	bottom: 0;
  	left: 0;
  	padding: 25px 25px 0 0;
  	background-color: #fff;
}

@media (max-width: 992px) {
	.presentacion h2,
	.presentacion h3,
	.presentacion p {
	text-align: center;  	
	}	
}

/*---------------------------------------
 PRESENTACIÓN 
-----------------------------------------*/





/*---------------------------------------
 LOGROS 
-----------------------------------------*/

.logros {
	padding: 2% 0 5% 0;
  	background-color: #fff;
}

.logros .fact-icon {
  	width: auto;
  	height: 60px;
  	vertical-align: middle;
  	margin-right: 5px;
}

.logros .fun-fact h4 {
	font-family: Montserrat;
	font-size: 2rem;
	font-weight: 500;
	color: #000;
}

.logros .fun-fact h4 .bold {
	font-size: 3rem;
	font-weight: 1000;
}

.logros .timer {
	font-family: Monea Alegante;
	font-weight: 700;
	color: #E9806E;
}

.logros .fun-fact h3 {
	font-family: Montserrat;
	font-size: 1.1rem;
	font-weight: 700;
  	color: #0B4256;
}

@media (max-width: 992px) {
	.logros {
	padding: 15% 0 0 0;  	
	}	
}

@media (max-width: 992px) {
	.logros .fun-fact {	
	margin-bottom: 50px;
	}	
}

/*---------------------------------------
 LOGROS 
-----------------------------------------*/





/*---------------------------------------
 VIDEO
-----------------------------------------*/

.video_banner {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 50px;
	padding-top: 90px;
	padding-bottom: 90px;
	background: linear-gradient(110deg, #0B4256 50%, rgba(60, 90, 90, 0) 55%), url("../img/presentacion/desarrollo_semi_urbanizado_terrenos_yucatan_costa_playa_costaverde_presentacion_recorrido_virtual_derecha.jpg");
}

.video_banner .banner_taital {
    width: 85%;
    float: left;
	font-family: Montserrat;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.video_banner .banner_text {
    width: 85%;
    float: left;
	font-family: Montserrat;
    color: #ffffff;
    font-size: 1rem;
	margin-top: 20px;
    margin-left: 0px;
}

.video_banner .play_icon {
	position: relative;
    z-index: 5;
	float: left;
    width: 200px;    
    padding-top: 140px;   
}

.video_banner .play_icon::before {
    content: '';
    position: absolute;
    top: 78%;
    left: 57px;
    width: 135px;
    height: 135px;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 100%;
    z-index: -1;
    animation: fadeEffect 1.3s infinite ease;
    box-shadow: 0px 0px 10px 0px;
}

.video-popup {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.7);
}

.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
            
        }

.cerrar-video {
	position: absolute;
	z-index: 1001;
	top: 10px;
	right: 15px;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;           
}

@media (max-width: 992px) {
    .video_banner {
        background: url("../img/presentacion/desarrollo_semi_urbanizado_terrenos_yucatan_costa_playa_costaverde_presentacion_recorrido_virtual_izquierda.jpg")no-repeat;
		margin-bottom: 20px;
	}}

@media (max-width: 992px) {
     .video_banner .banner_taital {
        /*width: 95%;*/
		 display: none;
    }
}

@media (max-width: 992px) {
    .video_banner .banner_text {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .video_banner .play_icon {
   padding-top:50px;   
	}
}


@keyframes fadeEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes fadeEffectMobile {
    0% {
        transform: translate(-50%, -65%) scale(1);
        opacity: 1
    }
    100% {
        transform: translate(-50%, -65%) scale(1.2);
        opacity: 0;
    }
}



@media (max-width: 992px) {	
    .video_banner .play_icon::before { 
    animation: fadeEffectMobile 1.3s infinite ease;
	}	
}






/*---------------------------------------
 VIDEO
-----------------------------------------*/





/*---------------------------------------
 IDEAS
-----------------------------------------*/

.ideas {
	position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.ideas .section-header {
    margin-bottom: 30px;
}

.ideas .section-header h3 {
    font-family: Monea Alegante;
    font-size: 2rem;
    font-weight: 500;
    color: #E9806E;
}

.ideas .section-header h2 {
    font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B4256;
}

.ideas p {
	margin: 35px 0 10px;
    font-family: Montserrat;
    font-size: 1rem;
    font-weight: 400;
    color: #212529;
}

.ideas .feature-item {
    margin-bottom: 0;
}

.ideas .feature-item img {
    width: 100%;
}

.ideas .feature-item h4 {
    margin-bottom: 15px;	
    font-family: Montserrat;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0B4256;
}

.ideas .feature-item p {
    margin: 0;
    font-size: .9rem;
	font-style: italic;
}

@media (max-width: 992px) {
   .ideas p {
	margin: 35px 0 30px;

}
}

@media (max-width: 992px) {
	.ideas .feature-item {
    margin-bottom: 30px;
		text-align: center;
	}
}

@media (max-width: 992px) {
	.ideas .section-header h2,
	.ideas .section-header h3,
	.ideas p {
	text-align: center;  	
	}	
}

/*---------------------------------------
 IDEAS
-----------------------------------------*/





/*---------------------------------------
AMENIDADES
-----------------------------------------*/

.amenidades {
	padding: 50px 0 100px;
}

.amenidades .title h3 {
	font-family: Monea Alegante;
    font-size: 2rem;
    font-weight: 500;
    color: #E9806E;
}

.amenidades .title h2 {
	font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B4256;
}

.amenidades .row .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
}

.amenidades .single-rpost {
  	margin: 35px 0 0;	
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}

.amenidades .post-content {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.amenidades .post-content h4 {
  	margin: 10px 0 2px;
	font-family: Montserrat;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0B4256;
	text-align: center;
}

.amenidades .post-content p {
	font-family: Montserrat;
	font-size: .9rem;
    font-style: italic;
  	color: #212529;
	text-align: center;
}

.amenidades .post-btn-img {
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	width: 70px;
  	height: 70px;
  	border-radius: 50%;
  	background-color: whitesmoke;
  	overflow: hidden;
  	text-decoration: none;
	margin: 0 auto;
}

.amenidades .post-btn-img img {
  	width: 70px;
 	height: auto;
  	object-fit: contain;
}

.amenidades .post-thumb {
	flex: 0 0 50%;
	margin: 0 15px;
	padding: 0;
}

.amenidades .row .col-lg-6:nth-of-type(odd) .post-thumb {
    margin-left: 0;
}

.amenidades .row .col-lg-6:nth-of-type(even) .post-thumb {
    margin-right: 0;
}

.amenidades .post-thumb .img-fluid {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.80);  
	transition: .3s;
	
}

.amenidades .post-thumb .img-fluid:hover {
	transform: scale(1.05);
}

@media (max-width: 992px) {
	.amenidades .post-thumb {
 	display: flex;
	justify-content: center;
	}	
}

@media (max-width: 992px) {
	.amenidades .post-thumb .img-fluid {
	width: 80%;
	height: auto;
	}	
}


/*---------------------------------------
AMENIDADES
-----------------------------------------*/





/*---------------------------------------
 CLUB DE PLAYA
-----------------------------------------*/

.club-playa {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 50px;
	padding-top: 90px;
	padding-bottom: 90px;
	background: linear-gradient(110deg, #0B4256 35%, rgba(60, 90, 90, 0) 35%), url("../img/amenidades/desarrollo_semi_urbanizado_terrenos_yucatan_costa_playa_costaverde_amenidades_club_pc.webp") no-repeat;
}

.club-playa .banner_taital {
    width: 85%;
    float: left;
	font-family: Montserrat;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.club-playa .banner_text {
    width: 85%;
    float: left;
	font-family: Monea Alegante;
    color: #ffffff;
    font-size: 2rem;
	margin-top: 20px;
    margin-left: 0px;
}

.club-playa .banner_text small {
	font-family: Montserrat;
	font-size: .8rem;
	font-style: italic;
}

.club-playa img {
  	width: 120px;
 	height: auto;
  	object-fit: contain;
	text-align: center;
}

@media (max-width: 992px) {
    .club-playa {
        background: url("../img/amenidades/desarrollo_semi_urbanizado_terrenos_yucatan_costa_playa_costaverde_amenidades_club_movil.webp");
		padding-top: 30px;
		padding-bottom: 150px;
		margin-bottom: 20px;
	}}

@media (max-width: 992px) {
     .club-playa .banner_taital {
        width: 95%;    
    }
}

@media (max-width: 992px) {
    .club-playa .banner_text {
        width: 100%;
    }
}


/*---------------------------------------
CLUB DE PLAYA
-----------------------------------------*/





/*---------------------------------------
UBICACIÓN
-----------------------------------------*/

.ubicacion {
	position: relative;
    width: 100%;
    padding: 45px 0;
}

.ubicacion .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: .5s;
}

.ubicacion .about-img::after {
    position: absolute;
    content: "";
    top: 60px;
    right: 60px;
    bottom: 60px;
    left: 60px;
    background: transparent;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(11,66,86,.05), rgba(11,66,86,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}

.ubicacion .about-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(11,66,86,.05) .5%, rgba(11,66,86,.05) 1%) 30;
}

.ubicacion .about-img-1 {
    position: relative;
    height: 100%;
    margin: 0 150px 150px 0;
}

.ubicacion .about-img-2 {
    position: absolute;
    height: 100%;
    top: 150px;
    left: 150px;
    z-index: 1;
}

.ubicacion .about-img-1 img,
.ubicacion .about-img-2 img {
    position: relative;
    width: 100%;
}


.ubicacion .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.ubicacion .section-header h3 {
	font-family: Monea Alegante;
    font-size: 2rem;
    font-weight: 500;
    color: #E9806E;
}

.ubicacion .section-header h2 {
	font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B4256;
}

.ubicacion .about-text p {
    font-family: Montserrat;
    font-size: 1rem;
    font-weight: 400;
    color: #212529;
}

.ubicacion .counters .col-6 {
	text-align: center;
	margin-bottom: 20px;
}


.ubicacion .counters-text .fact-icon {
    width: auto;
    height: 50px;
    vertical-align: middle;
   	margin-bottom: 10px;
}

.ubicacion .counters-text h4 {
	font-family: Montserrat;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

.ubicacion .counters-text h4 .timer {
	font-family: Monea Alegante;
	font-size: 2rem;
    font-weight: 700;
    color: #E9806E;
}


@media (max-width: 767.98px) {
    .ubicacion .about-img {
	margin-top: 50px;
    margin-bottom: 30px;
    height: auto;
    }
}

@media (max-width: 992px) {
	.ubicacion h2,
	.ubicacion h3,
	.ubicacion p {
	text-align: center;  	
	}	
}


/*---------------------------------------
UBICACIÓN
-----------------------------------------*/





/*---------------------------------------
LUGARES CERCANOS
-----------------------------------------*/

.lugares {
	background-color: #f2d5d7;
  	background-image: url("../img/ubicacion/desarrollo_semi_urbanizado_terrenos_yucatan_costa_playa_costaverde_ubicacion_lugares_fondo.jpg");
  	background-position: right bottom;
  	background-repeat: no-repeat;
  	padding: 50px 0;
  	margin-top: 0;
}

.lugares .title h3 {
    font-family: Monea Alegante;
    font-size: 2rem;
    font-weight: 500;
    color: #E9806E; 
}

.lugares .title h2 {
    font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B4256;
    margin-bottom: 20px; 
}

.lugares a {
	margin: 0 auto;
	padding: 0;
}


.lugares .bx {
    float: left;
    padding: 7px; 
}

.lugares .card {
	border: none;
  	background: none;
	border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s; 
}

.lugares .card .card-img {
    border-radius: 15px; 
}

.lugares .card.active,
.lugares .card:hover {
	transform: scale(1.05, 1.05);
	box-shadow: 0px 20px 32px 0px rgba(0, 0, 0, 0.25);
}

.lugares .bottom-text {
    bottom: 15px;
}

.lugares .card-img-overlay {
    border-radius: 15px;
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.3));
}

.lugares .card.active .card-img-overlay,
.recent .card:hover .card-img-overlay {
	background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(11, 66, 86, 0.9));
}

.lugares .bottom-text {
    position: absolute;
    bottom: 30px;
}

.lugares .card h4 {
	font-family: Montserrat;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

 @media (max-width: 1199px) {
    .lugares .bx-1, .fh5co-portfolio .bx-4 {
    width: 32.5%;
	}
    .lugares .bx-2 {
    width: 41%;
	}
    .lugares .bx-3 {
    width: 26.5%; 
	}
    .lugares .bx-middle {
    width: 67.5%; 
	}
    .lugares .bx-5, .fh5co-portfolio .bx-8 {
      width: 39%; 
	}
    .lugares .bx-6, .fh5co-portfolio .bx-7 {
      width: 61%; 
	} 
}

@media (max-width: 992px) {  
    .lugares .bx {
     width: auto !important;
     display: inline-block;
     float: none;
     margin: 3px auto;
	}
	  
    .lugares .bx-middle {
     text-align: center !important;
	}
}

@media (max-width: 992px) {
	.lugares .title h2,
	.lugares .title h3 {
	text-align: center;  	
	}	
}

/*---------------------------------------
LUGARES CERCANOS
-----------------------------------------*/





/*---------------------------------------
WEBINAR
-----------------------------------------*/

.webinar {
	padding-top: 40px;
  background-color: #fff;
}

.webinar .image-column {
  position: relative;
  margin-top: 40px;
	
}

.webinar .image-column .price-box .inner-price {
  position: relative;
  width: 85px;
  height: 85px;
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  border-radius: 50%;
  background-color: #0B4256;
}

@media (max-width: 992px) {
	.webinar .image-column .price-box .inner-price {
	width: 100px;
  	height: 100px;
	}
}

.webinar .image-column .price-box .inner-price .price {
	position: relative;
  	display: inline-block;
	padding-top: 10px;
	font-family: Montserrat;
  	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	line-height: 13px;  
}

@media (max-width: 992px) {
	.webinar .image-column .price-box .inner-price .price {
		padding-top: 15px;
		font-size: .8rem;
		line-height: 15px;
	}
}

.webinar .image-column .price-box .inner-price .price strong {
  font-size: 20px;
}

@media (max-width: 992px) {
	.webinar .image-column .price-box .inner-price .price strong {
  font-size: 25px;
	}
}

.webinar .content-column {
  	position: relative;
  	padding-top: 40px;
}


.webinar .content-column h3 {
  	font-family: Monea Alegante;
    font-size: 2rem;
    font-weight: 500;
    color: #E9806E;
}

.webinar .content-column h2 {
  	position: relative;
  	font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B4256;
}

.webinar .content-column .text {
  	position: relative;
  	margin-top: 25px;
  	margin-bottom: 25px;
	font-family: Montserrat;
    font-size: 1rem;
    font-weight: 400;
    color: #212529;
}

.webinar .time-counter {
  position: relative;
  margin: 0 auto 25px auto;
	
}

.webinar .time-counter .time-countdown {
  position: relative;
}

.webinar .time-countdown .counter-column {
  position: relative;
  display: inline-block;
  margin: 0px 0px 5px;
	font-family: Montserrat;
  font-size: 13px;
  line-height: 1em;
  padding: 8px 20px 14px;
  text-transform: capitalize;
  text-align: center;
	background-color: #fff;
  	border: 2px solid #E9806E;
	color: #000;
}

.webinar .time-countdown .counter-column .count {
  position: relative;
  display: block;
	font-family: Monea Alegante;
  font-size: 30px;
  line-height: 1.4em;
  padding: 0px 0px;
  	color: #0B4256;
  font-weight: 700;
  letter-spacing: 1px;
}


@media (max-width: 767.98px) {
  .webinar .content-column, .image-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .webinar .row {
    display: flex;
    flex-wrap: wrap;
  }
}

#formModalWebinar {
    display: none; 
    position: fixed; 
    z-index: 999; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

#formModalWebinar .modal-content {
    background-color: #fff;
    margin: 10% auto; 
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
}

 #formModalWebinar .close-btn {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 992px) {
	.webinar .content-column h2,
	.webinar .content-column h3,
	.webinar .content-column .text,
	.webinar .time-counter .time-countdown{
	text-align: center;  	
	}	
}


/*---------------------------------------
WEBINAR
-----------------------------------------*/





/*---------------------------------------
TESTIMONIALES V2
-----------------------------------------*/

.padding_layout_1 {
	margin-top: 20px;
	padding-top: 50px;
}

.testmonial_section {
	background-image: url("../img/testimoniales/desarrollo_semi_urbanizado_terrenos_yucatan_costa_playa_costaverde_testimonial_fondo.jpg");
	background-size: cover;
	padding-bottom: 100px;
}

.testmonial_section .main_heading {
	margin-bottom: 50px;
}

.testmonial_section .main_heading h2 {
	font-family: Montserrat;
    font-size: 2rem;
    font-weight: 700;
	line-height: 1.2;
    color: #fff;
}

.testmonial_section .main_heading .large {
	font-family: Montserrat;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

.testmonial_section #testimonial_slider {
	padding-right: 70px;
}

.testmonial_section #testimonial_slider .carousel-indicators {
	position: absolute;
	right: 0;
	bottom: -45px;
	left: 0;
	z-index: 15;
	display: flex;
	justify-content: flex-start;
	padding-left: 0;
	margin-right: 0;
	margin-left: 0;
	list-style: none;
	margin-bottom: 0;
}

.testmonial_section #testimonial_slider .carousel-indicators li {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 5px;
	text-indent: -999px;
	cursor: pointer;
	border: none;
	border-radius: 15px;
	background: #fff;
}

.testmonial_section #testimonial_slider .carousel-indicators .active {
	width: 40px;
	height: 15px;
	margin: 0;	
	background: #E9806E;
}

.testmonial_section #testimonial_slider .carousel-inner {
    min-height: 170px;
}

.testmonial_section #testimonial_slider .carousel-inner .carousel-item {
    min-height: 170px; 
}

.testmonial_section #testimonial_slider .testimonial-container {
	position: relative;
	padding-left: 180px;
}

.testmonial_section #testimonial_slider .testimonial-container .testimonial-content {
	font-family: Montserrat;
    font-size: .8rem;
    font-weight: 400;
    color: #fff;
    font-style: italic;
	margin-bottom: 20px;
}

.testmonial_section #testimonial_slider .testimonial-container .testimonial-content::before {
	content: "\f10d";
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    margin-right: 10px;
}


.testmonial_section #testimonial_slider .testimonial-container .testimonial-photo {
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.testmonial_section #testimonial_slider .testimonial-container .testimonial-meta h4 {
	font-family: Monea Alegante;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
	margin-bottom: 0;
}

.testmonial_section #testimonial_slider .testimonial-container .testimonial-meta .testimonial-position {
	font-family: Montserrat;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}


@media (max-width: 767px) {
	
	.padding_layout_1 {
		padding-top: 30px;
	}
	
	.testmonial_section {
        padding-bottom: 120px !important;
    }
	
	.testmonial_section .main_heading.text_align_right::after {
       margin-right: auto;
    }
	
	.testmonial_section .main_heading.text_align_left::after {
       margin-left: auto;
    }
	
	.testmonial_section .main_heading.text_align_left,.main_heading.text_align_right {
       text-align: center;
    }
	
	.testmonial_section #testimonial_slider {
       padding-right: 0;
    }
	
	.testmonial_section #testimonial_slider .carousel-inner,
	.testmonial_section #testimonial_slider .carousel-inner .carousel-item {
		height: 220px;
		overflow: hidden;
	}	
	
}

/*---------------------------------------
TESTIMONIALES V2
-----------------------------------------*/





/*---------------------------------------
TESTIMONIALES
-----------------------------------------*/

/*.testimonial {
	position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .section-header {
	margin-bottom: 50px;
}

.testimonial .section-header h3 {
	font-family: Monea Alegante;
    font-size: 2rem;
    font-weight: 500;
    color: #E9806E;
}

.testimonial .section-header h2 {
	font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B4256;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
}

.testimonial .testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    transform: scale(.8);
    transition: 2s;
}

.testimonial .owl-item.center .testimonial-item img {
    transform: scale(1);
}

.testimonial .testimonial-text {
    width: calc(100% - 100px);
    padding-left: 20px;
}

.testimonial .testimonial-text h4 {
    font-family: Montserrat;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.testimonial .testimonial-text h5 {
	font-family: Montserrat;
	font-size: .9rem;
	font-weight: 400;
    color: #777777; 
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-text p {
	font-family: Montserrat;
    font-size: .8rem;
    font-weight: 400;
    color: #212529;
    margin: 0;
}

.testimonial .testimonial-text p::before {
    content: "\f10d";
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0B4256;
    margin-right: 10px;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d6d6d6 !important;
    opacity: 1 !important;
    transition: background-color 0.3s ease;
}

.testimonial .owl-dot:hover {
    background-color: #a0a0a0 !important;
}

.testimonial .owl-dot.active {
    background-color: #0B4256 !important;
}
*/

/*---------------------------------------
TESTIMONIALES
-----------------------------------------*/





/*---------------------------------------
FINANCIERO
-----------------------------------------*/


.financiero {
	position: relative;
    width: 100%;
	margin-top: 20px;
    padding: 30px 0 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	background-color: #F2F2F4;
}

.financiero .section-header h3 {
    font-family: Monea Alegante;
    font-size: 2rem;
    font-weight: 500;
    color: #E9806E;
}

.financiero .section-header h2 {
    font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B4256;
}

.financiero .banner-cotizar {
  	width: 100%;
  	margin-top: 30px;
	
}

.financiero .banner-cotizar .banner-img {
  	width: 100%;
  	height: auto;
  	display: block;
  	border-radius: 6px;
}

.financiero .description {
	margin: 35px 0 30px;
    font-family: Montserrat;
    font-size: 1rem;
    font-weight: 400;
    color: #212529;
}

.financiero .counters .col-6 {
	text-align: center;
	margin-bottom: 20px;
}


.financiero .counters-text .fact-icon {
    width: auto;
    height: 50px;
    vertical-align: middle;
   	margin-bottom: 10px;
}

.financiero .counters-text h4 {
	font-family: Montserrat;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

.financiero .counters-text h4 .timer {
	font-family: Monea Alegante;
	font-size: 2rem;
    font-weight: 700;
    color: #E9806E;
}

.financiero form {
	display: flex;
    flex-direction: column;
	margin-top: 50px;
	padding: 20px;
	font-size: 14px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0,0,0,0.08);   
}

.financiero form .title-form {
	font-family: Montserrat;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B4256;
	text-align: center;
	margin-bottom: 20px;
}


.financiero .form-group {
    margin-bottom: 15px;
}

.financiero .form-group label {
	font-family: Montserrat;
	font-size: .8rem;
    font-weight: 700;
	color: #000;
    margin-bottom: 4px;
}

.financiero .form-group input,
.financiero .form-group select {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
	font-family: Montserrat;
    font-size: .9rem;
	font-weight: 400;
	color: #000;
}

.financiero .readonly {
    background-color: #f0f0f0;
    color: #555;
}


.financiero .form-group .legend {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 0;
}

.financiero .legal {
	font-family: Montserrat;
	font-size: .7rem;
	font-weight: 400;
	font-style: italic;
	color: #555;
	text-align: center;
    line-height: 1.4;
    margin-top: 10px; 
}


@media (max-width: 768px) {
    .financiero form {
        padding: 15px;
    }

    .financiero .form-group label {
        font-size: 0.9em;
    }

    .financiero .form-group input,
    .financiero .form-group select {
        font-size: 13px;
    }

    .financiero .legal {
        font-size: 0.8em;
    }
}

@media (max-width: 992px) {
	.financiero .section-header h2,
	.financiero .section-header h3,
	.financiero .description {
	text-align: center;  	
	}	
}


/*---------------------------------------
FINANCIERO
-----------------------------------------*/





/*---------------------------------------
LEGALES
-----------------------------------------*/

.legales {
	/*background-color: #F2F2F4;*/
}

.legales .icon-img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	margin-right: 15px;
}
            
		
.legales h3 {
	font-family: Monea Alegante;
	font-size: 2rem;
	font-weight: 500;
	color: #E9806E;
}
		
.legales h2 {
	font-family: Montserrat;
	font-size: 2.3rem;
	font-weight: 700;
	color: #0B4256;
}
		
.legales p {
	font-family: Montserrat;
	font-size: 1rem;
	font-weight: 400;
	color: #212529;
}
		
.legales h4 {
	font-family: Montserrat;
	font-size: 1.1rem;
	font-weight: 700;
	color: #0B4256;
}
		
.legales .description {
	margin-top: 10px;
	margin-bottom: 30px;
	font-size: .9rem;
	font-style: italic;
}

@media (max-width: 992px) {
	.legales h2,
	.legales h3,
	.legales .description-title {
	text-align: center;  	
	}	
}

/*---------------------------------------
LEGALES
-----------------------------------------*/





/*---------------------------------------
FOOTER
-----------------------------------------*/

.footer-custom {
	font-family: Montserrat;
    background-color: #0B4256;
	color: #fff;
}

.footer-custom a {
	transition: .3s;
	color: #fff;
	text-decoration: none;
}

.footer-custom a:hover {
	font-weight: 700;
}

.footer-custom i {
  color: #ffffff;
}

.footer-custom h2 {
	font-size: 1.1rem;
	font-weight: 700;
	font-style: italic;
}

.footer-custom .logo-footer {
  	max-width: 250px;
  	height: auto;
	margin-top: 20px;
}

.footer-custom small {
	font-style: italic;
}

@media (max-width: 992px) {
	.footer-custom {
	text-align: center;  	
	}	
}

/*---------------------------------------
FOOTER
-----------------------------------------*/





/*---------------------------------------
LIGHTBOX
-----------------------------------------*/

.lightbox-basic {
	position: relative;
	max-width: 62.5rem;
	margin: 2.5rem auto;
	padding: 1.5625rem;
	border-radius: 0.25rem;
	background: #fff;
	text-align: left;
}

.lightbox-basic img {
	margin-right: auto;
	margin-bottom: 2rem;
	margin-left: auto;
	border-radius: 0.25rem;
}

.lightbox-basic h5 {
    font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B4256;
}

.lightbox-basic .line-heading {
	width: 3rem;
	height: 1px;
	margin-top: 0;
	margin-bottom: 0.625rem;
	margin-left: 0;
	border: none;
	background-color: #0B4256;
}

.lightbox-basic h6 {
	font-family: Monea Alegante;
    font-size: 2rem;
    font-weight: 500;
    color: #E9806E;
	margin-bottom: 2rem;
}

.lightbox-basic .testimonial-container {
	margin-top: 1.75rem;
	margin-bottom: 2.125rem;
	padding: 1.125rem 1.5rem 1.125rem 1.5rem;
	border-radius: 0.25rem;
	background-color: #fff;
}

.lightbox-basic h6 p {
	font-family: Montserrat;
    font-size: 1rem;
    font-weight: 400;
    color: #212529;
}

.lightbox-basic .btn-solid-reg {
	display: inline-block;
	padding: 1.1875rem 1.875rem 1.1875rem 1.875rem;
	border: 0.125rem solid #0B4256;
	border-radius: 0.25rem;
	background-color: #0B4256;
	color: #fff;
	font: 700 0.75rem/0 "Montserrat";
	text-decoration: none;
	transition: all 0.2s;
}

.lightbox-basic .btn-solid-reg:hover {
	background-color: transparent;
	color: #0B4256;
	text-decoration: none;
}

.lightbox-basic .btn-outline-reg {
	display: inline-block;
	padding: 1.1875rem 1.875rem 1.1875rem 1.875rem;
	border: 0.125rem solid #787976;
	border-radius: 0.25rem;
	background-color: transparent;
	color: #787976;
	font: 700 0.75rem/0 "Montserrat";
	text-decoration: none;
	transition: all 0.2s;
}

.lightbox-basic .btn-outline-reg:hover {
	background-color: #787976;
	color: #fff;
	text-decoration: none;
}

.lightbox-basic .btn-solid-reg,
.lightbox-basic .btn-outline-reg {
	margin-right: 0.375rem;
	margin-bottom: 1rem;
}

.lightbox-basic a.mfp-close.as-button {
	position: relative;
	width: auto;
	height: auto;
	margin-right: 0.5rem;
	color: #484a46;
	opacity: 1;
}

.lightbox-basic a.mfp-close.as-button:hover {
	color: #f2f2f2;
}

.lightbox-basic button.mfp-close.x-button {
	position: absolute;
	top: -0.375rem;
	right: -0.375rem;
	width: 2.75rem;
	height: 2.75rem;
}

/* Animation For Lightbox*/

.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(37.5rem) rotateX(0); 
	-ms-transform: translateY(0) perspective(37.5rem) rotateX(0); 
	transform: translateY(0) perspective(37.5rem) rotateX(0); 
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
	-ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
	transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
}

.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}


/*---------------------------------------
LIGHTBOX
-----------------------------------------*/





/*---------------------------------------
POPUP
-----------------------------------------*/

    #popupForm {
	  display: none;
	  position: fixed;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  width: 90vw; /* mejor adaptado a pantalla pequeña */
	  max-width: 500px;
	  max-height: 90vh;
	  overflow-y: auto; /* permite scroll interno si el contenido es muy alto */
	  padding: 20px;
	  background-color: white;
	  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	  z-index: 9999;
	  border-radius: 8px;
}

    #overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 9998;
    }

    /* Botón para abrir el popup */
    #openFormBtn {
      padding: 10px 20px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    #openFormBtn:hover {
      background-color: #0056b3;
    }

    
    #popupForm .closeBtn {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 18px;
      cursor: pointer;
      color: #aaa;
    }

    #popupForm .closeBtn:hover {
      color: #333;
    }

@media (max-width: 576px) {
  	#popupForm {
    width: 95vw;
    padding: 15px;
  }
}

/*---------------------------------------
POPUP
-----------------------------------------*/





/*---------------------------------------
WHATSAPP
-----------------------------------------*/

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: heartbeat 1.5s infinite;
  overflow: visible;
	transition: .3s;
}

.whatsapp-button:hover {
	text-decoration: none;
	background-color: #0B4256;
	color: #fff;
}

.whatsapp-button i {
  position: relative;
  z-index: 2;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.wave {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid #25D366;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  animation: ripple 2s infinite;
}

.wave1 {
  animation-delay: 0s;
}
.wave2 {
  animation-delay: 0.6s;
}
.wave3 {
  animation-delay: 1.2s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/*---------------------------------------
WHATSAPP
-----------------------------------------*/


html, body {
  overflow-x: hidden;
}

