@font-face {
    font-family: 'plus jakarta display';
    src: url(fonts/PLUSJAKARTATEXT-BOLD.OTF);
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'plus jakarta display';
    src: url(fonts/PLUSJAKARTADISPLAY-MEDIUM.OTF);
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: 'plus jakarta display';
    src: url(fonts/PLUSJAKARTADISPLAY-REGULAR.OTF);
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'plus jakarta display';
    src: url(fonts/PLUSJAKARTATEXT-LIGHT.OTF);
    font-style: normal;
    font-weight: 300;
}


:root {
    --primaryColor: #72BF44;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: 'plus jakarta display';
    font-size: 12px;
    font-weight: 400;    
	background: var(--whiteColor);
	color: #333333;	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    color: #404041;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    font-size: inherit;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor); 
    text-align: center; 
    font-size: 16.5px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 95px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 999;    
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--primaryColor); 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/
.header-area {
    border-bottom: 1px solid #DCD7D6;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-inner ul {
    display: flex;
    gap: 34px;
}

.header-inner ul li a {
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
}

.header-inner ul li a:hover {
    color: var(--primaryColor);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.humberger-menu .icon {
    cursor: pointer;
    transform: scale(0.7);
}

.offcanvas-title img {
    width: 125px;
}

.offcanvas-body ul li a {
    font-weight: 500;
    font-size: 12px;
    padding: 8px 0;
}

.offcanvas-body ul li a:hover {
    color: var(--primaryColor);
}

/* Active navigation link styles */
.header-inner ul li a.active,
.offcanvas-body ul li a.active {
    color: var(--primaryColor);
    font-weight: 700;
}

/* Footer navigation hover effects */
.footer-headline ul li a:hover {
    color: var(--primaryColor);
    transition: all 0.3s ease;
}

.header-area {
    background-image: url(images/familia_fachada.png);
    position: relative;
    z-index: 1;
}

.header-area:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.header-nav-wrap {
    background-color: #0000003a;
    padding-block: 26px;
}

.header-logo img {
    max-width: 140px;
}

.hero-content {
    padding-top: 160px;
    padding-bottom: 58px;
    text-align: center;
}

.hero-content h2 {
    font-size: 52.5px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 3px #333;
    padding-bottom: 30px;
}

.color-01 {
    color: #5DCCF4 !important;
}

.hero-content h2 .text-primary {
    color: #F78E1E !important;
}

.hero-content p {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 120%;
}

.hero-content-logo {
    padding-top: 75px;
    text-align: left;
}

.discount-box{ 
    position: absolute;
    right: 0;
    bottom: 85px;
}

/* no-pagues-area */
.no-pagues-area {
    padding-top: 73px;
    padding-bottom: 10px;
    background-color: #f2f2f2;
}

.no-pagues-left h3 {
    font-size: 40.5px;
    font-weight: 300;
    padding-bottom: 45px;
}

.no-pagues-left h3 span,
.no-pagues-left h3 b {
    font-weight: 700;
}

.no-pagues-left h4 {
    font-size: 26.25px;
    font-weight: 700;
    color: #555760;
}

.no-pagues-left ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 25px;
    padding-bottom: 38px;
}

.no-pagues-left ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 22.5px;
    font-weight: 400;
    color: #555760;
}

.no-pagues-left ul li svg {
    flex: 0 0 40px;
}

.no-pagues-left h5 {
    font-size: 21px;
    font-weight: 400;
    padding-bottom: 35px;
}

.btn-primary {
    padding: 8px 45px;
    background: linear-gradient(to bottom, #5d9837, #72bf44);
    border-radius: 35px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    border: 1px solid #746f21;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 9px -1px, rgba(0, 0, 0, 0.06) 0px 5px 8px -1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary:hover {
     background: linear-gradient(to top, #B5B257, #777326);
}

.vehicle-detail-banner .car-slider-desc {
    max-width: 180px;
    margin: 0 auto;
}

.banner-slider .slider.slider-for {
    max-width: 100%;
}

.banner-slider .thumb-wrap {
    max-width: 100%;
}

.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
    width: 100%;
}

.banner-slider .slider.slider-nav {
    overflow: hidden;
    display: flex;
    gap: 30px;
}

.slider.slider-nav .slick-track {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.slider-banner-image {
    height: 400px;
}

.slider-nav .slick-slide.thumbnail-image .thumbImg{
    max-width: 140px;
    height: 100px;
}

.slider-banner-image img,
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
    object-fit: cover;
    border-radius: 15px;
    height: 100%;
    width: 100%;
}

.slick-arrow {
    width: 100%;
    background-color: transparent;
    border: 0;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    height: 18px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}

.thumbImg {
    height: 140px !important;
    margin-bottom: 15px;
}

.thumbImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.vehicle-detail-banner .btn-wrap {
    text-align: center;
}

.slider-counter {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.slider-progress {
  width: 100%;
  height: 4px;
   background: var(--primaryColor);
   position: relative;
   margin: 8px 0 16px;
  overflow: hidden;
  border-radius: 2px;
}

.slider-progress-bar {
    height: 100%;
    background: #5f6164;
  width: 0%;
  transition: width 0.4s ease;
}

.btn-wrap button {
    height: 40px;
    width: 40px;
    line-height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin-inline: 5px;
    color: #7b7b7b;
}

.conter-arrow {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

/* tipologias-area */
.tipologias-area {
    padding-top: 81px;
    padding-bottom: 70px;
}

.tipologias-area .heading {
    padding-bottom: 30px;
    text-align: center;
}

.tipologias-area .heading h2 {
    padding-bottom: 15px;
    font-size: 45px;
    font-weight: 300;
}


.tipologias-area .heading h3 {
    font-size: 27px;
    font-weight: 700;
}

.box-buttons {
    border: 1px solid #3b3b3c;
    padding: 25px 28px;
    border-radius: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.box-buttons li {
    background-color: #fcd2a5;
    padding: 12px;
    border-radius: 30px;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
}

.tipologias-area h3 {
    background-color: #fafaee;
    padding-inline: 8px;
    display: inline-block;
    font-weight: 300;
}

.box-overlay-text {
    text-align: center;
    margin-top: -20px;
    line-height: 100%;
}

.tipologias-right .box-buttons {
    grid-template-columns: repeat(6, 1fr);
}

.tipologias-right .box-buttons li {
    background-color: #c6e5b4;
}

.tipologias-right .box-buttons li.active {
    outline: 1px solid #72bf44;
    outline-offset: 4px;
    background-color: #72bf44;
}

.tipologias-right .box-buttons li.active button {
    color: #fff;
}

.tipologias-cont-row {
    padding-top: 60px;
}

.tipologias-cont-right h4 {
    font-size: 22.5px;
    font-weight: 300;
}

.tipologias-cont-right h2 {
    font-size: 52.5px;
    font-weight: 700;
    color: #72BF44;
    padding-bottom: 20px;
}

.tipologias-cont-right > span {
    font-size: 33.75px;
    font-weight: 300;
    padding: 4px 20px;
    border: 1px solid #333;
    border-radius: 35px;
}


.tipologias-cont-right ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 25px;
    padding-bottom: 38px;
}

.tipologias-cont-right ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 22.5px;
    font-weight: 400;
    color: #555760;
}

.tipologias-cont-right ul li svg {
    flex: 0 0 40px;
}


/* .invierte-en-area  */
.invierte-en-area .invierte-en-left h3 {
    font-size: 24px;
    font-weight: 400;
}

.invierte-en-area .invierte-en-left h2 {
    font-size: 63.75px;
    color: #72BF44;
    font-weight: 700;
}

.invierte-en-area .invierte-en-left h2 span {
    font-size: 30px;
}

.invierte-en-area .invierte-en-left,
.invierte-en-area .no-pagues-left {
    margin-right: 40px;
}

.invierte-en-area .invierte-en-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.invierte-en-area .btn-white {
    background: linear-gradient(to bottom, #ebeaea, #afaeae);
    color: #333;
    border-color: #a7a7a7;
    margin-top: 0px !important;
}

.invierte-en-area .btn-white:hover {
    background: linear-gradient(to top, #ebeaea, #afaeae);
}

.invierte-en-area .no-pagues-left .btn-primary {
    max-width: 370px;
    width: 100%;
    text-align: center;
    margin-block: 25px;
}

.invierte-en-area .no-pagues-left p {
    font-size: 16.5px;
}

.invierte-en-area .slider-banner-image {
	height: 550px;
}

.invierte-en-area {
    position: relative;
}

.invierte-en-left-dis {
    position: absolute;
    left: 0;
    top: 0px;
}

.invierte-en-area .btn-wrap button {
    border-color: #939135;
    color: #939135;
}

.invierte-en-area .slider-progress-bar {
    background-color: #939135;
}


/* haz-numeros-area */
.content-main-wrp {
    background: linear-gradient(to top, #74c048c5 0%, #ffffff 58%, #ffffff 100%);
}
.haz-numeros-area {
    padding-top: 80px;
    padding-bottom: 90px;
}

.haz-numeros-area .heading {
    padding-bottom: 90px;
}

.haz-numeros-area .heading h2 {
    font-size: 45px;
    font-weight: 600;
    color: #404041;
    padding-bottom: 15px;
}

.haz-numeros-area .heading h3 {
    font-size: 30px;
    font-weight: 600;
    color: #404041;
    padding-bottom: 50px;
}

.haz-numeros-area .heading p {
    font-size: 18.75px;
}

.haz-numeros-col {
    border: 2px solid #333;
    padding: 50px 50px;
    border-radius: 25px;
    position: relative;
}

.haz-numeros-col h3 {
    font-size: 19.5px;
    font-weight: 700;
}

.haz-numeros-col .select-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 12px;
    background-color: #efefef;
    margin-top: 23px;
    margin-bottom: 45px;
}

.haz-numeros-col .select-box h4 {
    font-size: 15px;
}

.haz-numeros-col .select-box h4 span {
    font-size: 18.75px;
}

.haz-numeros-col .progress-pri {
    height: 15px;
    width: 100%;
    border-radius: 25px;
    background-color: #47722b;
    position: relative;
    margin-top: 80px;
}

.haz-numeros-col .progress-pri:after {
    content: "";
    display: block;
    width: 10%;
    height: 170%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 30px;
}

.haz-numeros-col .progress-perse {
    position: absolute;
    left: -17px;
    top: -45px;
    width: 60px;
    height: 30px;
    background-color: #fff;
    border-radius: 6px;
    color: #333;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    padding-top: 2px;
}

.haz-numeros-col .progress-count ul {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
}

.haz-numeros-col .paso-head {
    position: absolute;
    left: 50%;
    top: -26px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 20px;
    background-color: #404041;
    border-radius: 6px;
    color: #fff;
}

.haz-numeros-col .paso-head h3 {
    font-size: 19.5px;
    font-weight: 700;
    color: #fff;
}

.haz-numeros-cont-col h2 {
    font-size:45px;
    font-weight: 700;
}

.haz-numeros-cont-col h3 {
    font-size: 40.5px;
    font-weight: 300;
    padding-top: 20px;
    padding-bottom: 35px;
}

.haz-numeros-cont-col h4 {
    font-size: 25.5px;
    font-weight: 700;
}

.haz-numeros-col02 .paso-head {
    top: -18px;
    background-color: #a5d688;
}

.haz-numeros-col02 .paso-head02 {
    top: auto;
    bottom: -23px;
    background-color: #404041;
}

.haz-numeros-col03 .paso-head {
    background-color: #404041;
}

.haz-numeros-col02 h3 {
    font-weight: 700;
}

.haz-numeros-col02 .select-box h4 {
    color: #47722B;
    font-size: 27px;
    font-weight: 700;
}

.haz-numeros-col03,
.haz-numeros-col02 {
    height: 100%;
}

/* amenidades-area */
.amenidades-area {
    padding-top: 130px;
    padding-bottom: 135px;
}

.amenidades-area .container {
    position: relative;
}

.amenidades-area .whatsapp-icon {
    position: absolute;
    right: 0;
    bottom: -50px;
}

.section-headline {
    padding-bottom: 55px;
    text-align: center;
}

.section-headline h2 {
    font-size: 45px;
    font-weight: 300;
}

.section-headline p {
    padding-top: 30px;
    padding-bottom: 12px;
    font-size: 36px;
    font-weight: 400;
}

.section-headline h3 {
    font-size: 34.5px;
    font-weight: 700;
    color: #F78E1E;
}

.single-amenidades {
    position: relative;
}

.single-amenidades > img {
    width: 100%;
}

.single-amenidades .overlay-box {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 60px 30px 30px 30px;
    background: linear-gradient(to top, #064461, transparent) ;
}

.single-amenidades .overlay-box h3 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
}


/* .master-plan-area  */

.master-plan-area {
    background-color: #f2f2f2;
    padding-top: 120px;
    padding-bottom: 80px;
}

.single-master-plan .top {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.single-master-plan .top h4 {
   font-size: 18px;
}

.single-master-plan ul {
    padding-top: 17px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-master-plan ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-master-plan ul li .nmbr-text {
    height: 28px;
    width: 25px;
    border-radius: 2px;
    background-color: #c5c037;
    text-align: center;
    line-height: 26px;
}

.single-master-plan ul li .plan-text {
    font-size: 15.75px;
}

.single-master-plan02 ul li .nmbr-text {
    background-color: #a77f73;
    color: #fff;
}

.single-master-plan03 ul li .nmbr-text {
    background-color: #538099;
    color: #fff;
}

.single-master-plan .keyword-box{
    height: 28px;
    width: 100%;
    border-radius: 2px;
    background-color: #c5c037;
    text-align: center;
    line-height: 26px;
    min-width: 140px;
}

.bg-red {
    background-color: #ea1f1f !important;
}

.text-red {
    color: #ea1f1f !important;
}

.text-light-green {
    color: #71a65e !important;
}

.bg-light-green {
    background-color: #71a65e !important;
}

.master-plan-area .group-image img {
    transform: scale(1.1);
    margin-top: 60px;
}

/* ubicaon-area */
.ubicaon-area {
    background-color: #d87d1b;
    padding-top: 98px;
    padding-bottom: 80px;
}

.ubicaon-inner {
    width: 80%;
    margin-inline: auto;
}

.ubicaon-inner h3 {
    color: #fff;
    font-size: 41.25px;
    font-weight: 300;
    padding-bottom: 35px;
}

.ubicaon-inner h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 10px;
}

.ubicaon-inner p {
    font-size: 15px;
    color: #fff;
}

.ubicaon-inner .ubicaon-map {
    padding-top: 40px;
}

/* asesoramiento-area */
.asesoramiento-area {
    padding-top: 78px;
    padding-bottom: 125px;
}

.asesoramiento-right h3 {
    font-size: 42px;
    font-weight: 300;
    padding-bottom: 40px;
}

.asesoramiento-right h3 span {
    font-weight: 500;
}

.asesoramiento-right p {
    font-size: 21px;
    padding-bottom: 50px;
}

/* review-area */

.review-area {
    padding-bottom: 145px;
}

.review-area .heading h3 {
    font-size: 46.5px;
    font-weight: 300;
    padding-bottom: 40px;
}

.review-area .heading h3 {
    font-size: 46.5px;
    font-weight: 300;
    padding-bottom: 60px;
    text-align: center;
}

.review-area .heading h3 span {
    font-weight: 500;
}

.single-review-cont p {
    font-size: 16.5px;
    font-weight: 300;
    color: #555760;
}

.single-review-cont .bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 35px;
}

.single-review-cont .bottom ul {
    display: flex;
    gap: 2px;
}

.single-review-cont .bottom span {
    font-size: 15px;
    font-weight: 400;
    color: #a77f73;
    display: block;
}

.single-review-cont .bottom small {
    font-size: 13.5px;
    font-weight: 300;
    color: #404041;
    font-style: italic;
    display: block;
    text-align: right;
}

/* contact-area */
.contact-area .contact-inner {
    background-color: #f8a44b;
    padding-top: 50px;
    padding-bottom: 60px;
    padding-inline: 80px;
    border-radius: 45px;
}

.contact-area .contact-inner h4 {
    font-size: 23.25px;
}

.contact-area .contact-inner form {
    padding-top: 60px;
}

.contact-area .contact-inner .single-input input {
    display: block;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 12px;
    font-weight: 300;
    font-size: 16.5px;
}

.contact-area .contact-inner button {
    width: 250px;
    display: block;
    margin-inline: auto;
    padding: 8px;
    border-radius: 30px;
    background-color: #fff;
    font-size: 12px;
    color: #939135;
    margin-top: 60px;
}

.contact-area .contact-inner button:hover {
    background-color: var(--primaryColor);
    color: #fff;
}


/* footer-area */
.footer-area {
    background-color: #606060;
    padding-top: 70px;
    padding-bottom: 40px;
    margin-top: 100px;
}

.footer-inner .footer-logo {
    padding-bottom: 90px;
    text-align: center;
}

.footer-inner .footer-logo img {
    max-width: 350px;
}

.footer-headline ul {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #efefef;
}

.footer-headline ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #efefef;
}

.footer-headline .second-headline {
    padding-top: 20px;
    max-width: 780px;
    margin-inline:auto;
} 

.footer-inner .footer-links {
    max-width: 780px;
    margin-inline:auto;

}

.footer-inner .footer-links ul {
    max-width: 470px;
    display: flex;
    justify-content: space-between;
}

.footer-inner .footer-links ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #efefef;
}

.footer-inner .footer-bottom {
    text-align: center;
    padding-top: 80px;
}

.footer-inner .footer-bottom p {
    font-size: 15px;
    color: #fff;
    padding-bottom: 40px;
}

.sub-footer {
    background-color: #fff;
    padding-block: 14px;
    font-size: 12px;
    font-weight: 300;
    color: #9FA19F;
}

.contact-inner{
    margin-bottom: -400px;
    position: relative;
}

.background-img {
    background: linear-gradient(to bottom, #fff, transparent);
}

.background-img img {
    position: relative;
    z-index: -1;
}

/* ======= ANIMATIONS & HOVER EFFECTS ======= */

/* Image Hover Animations */
.slider-banner-image img {
    transition: transform 0.4s ease, filter 0.3s ease;
    transform: scale(1);
}

.slider-banner-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.thumbImg img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.thumbImg:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Amenidades images hover */
.single-amenidades {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-amenidades:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.single-amenidades img {
    transition: transform 0.4s ease, filter 0.3s ease;
}

.single-amenidades:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.single-amenidades .overlay-box {
    transition: background 0.3s ease;
}

.single-amenidades:hover .overlay-box {
    background: linear-gradient(to top, #064461dd, rgba(0,0,0,0.3));
}

/* Logo and brand images hover */
.header-logo img,
.footer-logo img,
.hero-content-logo img {
    transition: transform 0.3s ease, filter 0.2s ease;
}

.header-logo:hover img,
.footer-logo:hover img,
.hero-content-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(114, 191, 68, 0.3));
}

/* General image hover for other sections */
.tipologias-cont-left img,
.asesoramiento-left img,
.ubicaon-map img,
.group-image img,
.background-img img {
    transition: transform 0.4s ease, filter 0.3s ease;
}

.tipologias-cont-left:hover img,
.asesoramiento-left:hover img,
.ubicaon-map:hover img,
.group-image:hover img {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Button Animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(114, 191, 68, 0.4);
    background: linear-gradient(to top, #B5B257, #777326);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

.btn-hover {
    animation: buttonPulse 0.3s ease-in-out;
}

@keyframes buttonPulse {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.02) translateY(-2px); }
    100% { transform: scale(1) translateY(0); }
}

/* White button variant */
.btn-white {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contact form button */
.contact-area .contact-inner button {
    transition: all 0.3s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.contact-area .contact-inner button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(114, 191, 68, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-area .contact-inner button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 191, 68, 0.3);
}

.contact-area .contact-inner button:hover::before {
    left: 100%;
}

/* Box buttons animations */
.box-buttons li button {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.box-buttons li button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.box-buttons li.active button {
    animation: activeButton 0.5s ease;
}

@keyframes activeButton {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Navigation arrows */
.btn-wrap button {
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn-wrap button:hover {
    transform: scale(1.1);
    background-color: rgba(114, 191, 68, 0.9);
    box-shadow: 0 4px 12px rgba(114, 191, 68, 0.4);
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsapp_float 3s ease-in-out infinite;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.whatsapp-sticky.clicked {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.whatsapp-sticky img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

@keyframes whatsapp_float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* WhatsApp pulse animations */
.whatsapp-pulse,
.whatsapp-pulse2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    z-index: -1;
}

.whatsapp-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    animation: whatsapp_pulse_animate 2s infinite;
}

.whatsapp-pulse2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    animation: whatsapp_pulse_animate 2.5s infinite;
}

@keyframes whatsapp_pulse_animate {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Card hover animations */
.single-review-cont {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    padding: 25px;
}

.single-review-cont:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single-master-plan {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    padding: 20px;
}

.single-master-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Input animations */
.single-input input {
    transition: all 0.3s ease;
}

.single-input input:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 191, 68, 0.2);
    border: 2px solid var(--primaryColor);
}

/* Progress bar animation */
.slider-progress-bar {
    transition: width 0.8s ease;
}

.progress-pri {
    transition: all 0.3s ease;
}

.progress-pri:hover {
    box-shadow: 0 4px 15px rgba(71, 114, 43, 0.3);
}

/* Section entrance animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.section-headline {
    animation: fadeInUp 0.8s ease;
}

/* Scroll-triggered animations */
.single-amenidades,
.single-review-cont,
.single-master-plan,
.haz-numeros-col {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.single-amenidades.animate-in,
.single-review-cont.animate-in,
.single-master-plan.animate-in,
.haz-numeros-col.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.single-amenidades:nth-child(1) { transition-delay: 0.1s; }
.single-amenidades:nth-child(2) { transition-delay: 0.2s; }
.single-amenidades:nth-child(3) { transition-delay: 0.3s; }
.single-amenidades:nth-child(4) { transition-delay: 0.4s; }
.single-amenidades:nth-child(5) { transition-delay: 0.5s; }
.single-amenidades:nth-child(6) { transition-delay: 0.1s; }
.single-amenidades:nth-child(7) { transition-delay: 0.2s; }
.single-amenidades:nth-child(8) { transition-delay: 0.3s; }
.single-amenidades:nth-child(9) { transition-delay: 0.4s; }
.single-amenidades:nth-child(10) { transition-delay: 0.5s; }

/* Hover effects for icons and SVGs */
.no-pagues-left ul li svg {
    transition: transform 0.3s ease;
}

.no-pagues-left ul li:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.tipologias-cont-right ul li svg {
    transition: transform 0.3s ease;
}

.tipologias-cont-right ul li:hover svg {
    transform: scale(1.1);
}

/* Footer link animations */
.footer-headline ul li a,
.footer-links ul li a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-headline ul li a::after,
.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primaryColor);
    transition: width 0.3s ease;
}

.footer-headline ul li a:hover::after,
.footer-links ul li a:hover::after {
    width: 100%;
}

/* Scroll animations */
.scrolltotop {
    transition: all 0.3s ease;
}

.scrolltotop:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(114, 191, 68, 0.4);
}

/* Mobile menu animations */
.offcanvas {
    transition: transform 0.3s ease;
}

.offcanvas-body ul li a {
    transition: all 0.3s ease;
    position: relative;
}

.offcanvas-body ul li a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primaryColor);
    transition: width 0.3s ease;
}

.offcanvas-body ul li a:hover::before {
    width: 8px;
}

/* Smooth transitions for layout elements */
.container {
    transition: padding 0.3s ease;
}

/* Hover effect for discount box */
.discount-box img {
    transition: transform 0.3s ease;
}

.discount-box:hover img {
    transform: scale(1.05);
}

/* Header logo animation on scroll */
.header-logo {
    transition: transform 0.3s ease;
}

/* Additional micro-animations */
.color-01,
.text-primary {
    transition: all 0.3s ease;
}

/* Breathing animation for key elements */
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-content-logo {
    animation: breathe 4s ease-in-out infinite;
}

/* Subtle animations for text elements */
.section-headline h2,
.section-headline h3 {
    transition: color 0.3s ease;
}

/* Loading state animations */
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

/* Enhanced mobile responsiveness for animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-sticky img {
        width: 30px;
        height: 30px;
    }
    
    .scrolltotop {
        bottom: 85px;
        right: 20px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 13.5px;
    }
    
    /* Reduce animation intensity on mobile */
    .single-amenidades:hover {
        transform: translateY(-4px);
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
    }
    
    /* Faster animations on mobile */
    .single-amenidades,
    .single-review-cont,
    .single-master-plan {
        transition-duration: 0.4s;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover,
    .single-amenidades:hover,
    .thumbImg:hover img {
        transform: none;
    }
    
    .btn-primary:active {
        transform: scale(0.98);
    }
    
    .single-amenidades:active {
        transform: translateY(-2px);
    }
}

.footer-headline {
    background: none !important;
    background-color: transparent !important;
}