.header-sup{
    width: 100%;
    height: 2.75rem;
    background-color: var(--primary-3);
    background-image: var(--primary-gradient);
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
    position:fixed;
    z-index: 920;
    user-select: none;
}
.social-icons{
    width: fit-content;
}
.social-icons a {
    margin-right: .75rem;
}
.social-icons a svg{
    width: 32px;
    fill: var(--light-1);
}
.header-sup-inner{
    position: relative;
}
.header-sup-brand{
    display: none;
}
.header-sup-brand img{
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}
.header-sup-menu{
    width: 100%;
}
.header-sup-toggle{
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 6px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.header-sup-toggle span{
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--light-1);
    transition: transform .2s ease, opacity .2s ease;
}
.header-sup.is-open .header-sup-toggle span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
.header-sup.is-open .header-sup-toggle span:nth-child(2){
    opacity: 0;
}
.header-sup.is-open .header-sup-toggle span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}
.header-btns{
    gap: 20px;
}
.header-btns a{
    align-items: center;
    background-color:var(--secondary-3);
    background-image: var(--secondary-gradient);
    color: var(--light-1);
    height: 34px;
    padding: 0 .5rem;
    box-shadow: 2px 2px 3px rgba(0,0,0,.07);
    border-radius: 6px;
}
.header-btn-wpp svg{
    width: 1.2rem;
    fill: var(--light-1);
    margin-right: .2rem;
}
.header{
    width: 100%;
    height: 100%;
    background-color: var(--dark-1);
    color:var(--light-1);
    position: relative;
    overflow: hidden;
}
.header .video-bg{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 900;
}
.header .content-header{
    position: absolute;
    background-color: rgba(0,0,0,.85);
    backdrop-filter:blur(3px);
    -webkit-backdrop-filter: blur(3px);
    width: calc(100% - 40px);
    padding: 0 20px;
    height: 100%;
    z-index: 910;
    color: white;
    text-align: center;
}
.content-header div img{
    width:100%;
    max-width: 400px;
}
.content-header h1{
    font-weight: 200;
    letter-spacing: 1px;
}
.btn-slice-bg{
    text-transform: uppercase;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.btn-slice{
    padding: 1.1rem 1.5rem;
    border: 3px solid #ffffff;
    background-color: rgba(0,0,0,.25);
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    color: var(--light-1);
    font-weight: 700;
    letter-spacing: 0.2rem;
    position: relative;
}
.btn-slice .top{
    position: relative;
    height: 10px;
    overflow: hidden;
    top: 0;
    -webkit-transition: all 200ms cubic-bezier(1.000, 0, 0.025, 1);
    -webkit-transition: all 200ms cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    -moz-transition: all 200ms cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    -o-transition: all 200ms cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    transition: all 200ms cubic-bezier(1.000, -0.055, 0.025, 1.040);
    -webkit-transition-timing-function: cubic-bezier(1.000, 0, 0.025, 1);
    -webkit-transition-timing-function: cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    -moz-transition-timing-function: cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    -o-transition-timing-function: cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    transition-timing-function: cubic-bezier(1.000, -0.055, 0.025, 1.040);
    -webkit-transition-delay:0.25s;     
    -moz-transition-delay:0.25s; 
    -ms-transition-delay:0.25s;     
    -o-transition-delay:0.25s;     
    transition-delay:0.25s;
}
.btn-slice .bottom{
    position: relative;
    height: 10px;
    overflow: hidden;
    bottom: 0;
    -webkit-transition: all 200ms cubic-bezier(1.000, 0, 0.025, 1);
    -webkit-transition: all 200ms cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    -moz-transition: all 200ms cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    -o-transition: all 200ms cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    transition: all 200ms cubic-bezier(1.000, -0.055, 0.025, 1.040);
    -webkit-transition-timing-function: cubic-bezier(1.000, 0, 0.025, 1);
    -webkit-transition-timing-function: cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    -moz-transition-timing-function: cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    -o-transition-timing-function: cubic-bezier(1.000, -0.055, 0.025, 1.040); 
    transition-timing-function: cubic-bezier(1.000, -0.055, 0.025, 1.040);
    -webkit-transition-delay:0.25s;     
    -moz-transition-delay:0.25s; 
    -ms-transition-delay:0.25s;     
    -o-transition-delay:0.25s;     
    transition-delay:0.25s;
}
.btn-slice .bottom span{
    top: -10px;
    position: absolute;
    left: 0;
}
.btn-slice:hover .top{
    top: -6px;
    -webkit-transition-delay:0.25s;     
    -moz-transition-delay:0.25s; 
    -ms-transition-delay:0.25s;     
    -o-transition-delay:0.25s;     
    transition-delay:0.25s; 
}
.btn-slice:hover .bottom{
    bottom: -6px;
    -webkit-transition-delay:0.25s;     
    -moz-transition-delay:0.25s; 
    -ms-transition-delay:0.25s;     
    -o-transition-delay:0.25s;     
    transition-delay:0.25s; 
}
.btn-slice:before{
    content: '';
    height: 1px;
    width: 60px;
    background-color: var(--light-1);
    position: absolute;
    margin-top: 10px;
    right: -35px;
    -webkit-transition: all 750ms cubic-bezier(0.890, 0, 0.140, 1);
    -webkit-transition: all 750ms cubic-bezier(0.890, -0.170, 0.140, 1.225); 
    -moz-transition: all 750ms cubic-bezier(0.890, -0.170, 0.140, 1.225); 
    -o-transition: all 750ms cubic-bezier(0.890, -0.170, 0.140, 1.225); 
    transition: all 750ms cubic-bezier(0.890, -0.170, 0.140, 1.225);
    -webkit-transition-timing-function: cubic-bezier(0.890, 0, 0.140, 1);
    -webkit-transition-timing-function: cubic-bezier(0.890, -0.170, 0.140, 1.225); 
    -moz-transition-timing-function: cubic-bezier(0.890, -0.170, 0.140, 1.225); 
    -o-transition-timing-function: cubic-bezier(0.890, -0.170, 0.140, 1.225); 
    transition-timing-function: cubic-bezier(0.890, -0.170, 0.140, 1.225);
}
.btn-slice:hover:before{
    width: 125%;
}
.title-header{
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
#quem-somos .title-header{
    color: var(--light-1);
}
#mvv{
    color:var(--dark-3)
}
#mvv .title-header{
    color: var(--dark-3);
}
.title-header h2{
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.expert-about {
    background: var(--primary-3);
}
.about-box {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(180deg,rgba(255,255,255,0.04),rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    backdrop-filter: blur(6px);
}
.about-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
    border-color: var(--secondary-3);
}
.about-icon{
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-icon img {
    width: 36px;
    height: auto;
}
.about-content h3 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}
.about-content p {
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}
.about-content p + p {
    margin-top: 0.75rem;
}
.expert-properties{
    background-color: var(--light-2);
}
.launch-properties{
    background: linear-gradient(180deg, var(--primary-1), var(--primary-3));
    color: var(--light-1);
}
.launch-title{
    max-width: 760px;
}
.launch-title h2{
    color: var(--light-1);
}
.launch-title p{
    margin-top: .6rem;
    color: rgba(255,255,255,.78);
}
.launch-eyebrow{
    display: inline-block;
    margin-bottom: .75rem;
    padding: .35rem .8rem;
    border: 1px solid rgba(188,171,121,.45);
    border-radius: 999px;
    background: rgba(188,171,121,.16);
    color: var(--secondary-5);
    font-weight: 700;
    text-transform: uppercase;
}
.launch-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: clamp(1rem, 2.4vw, 1.8rem);
}
.launch-card{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 360px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255,255,255,.96);
    color: var(--primary-3);
    box-shadow: 0 22px 48px rgba(0,0,0,.24);
    transition: transform .35s ease, box-shadow .35s ease;
}
.launch-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(0,0,0,.3);
}
.launch-card-media{
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: var(--light-3);
}
.launch-card-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.launch-card:hover .launch-card-media img{
    transform: scale(1.05);
}
.launch-badge{
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: .42rem .75rem;
    border-radius: 999px;
    background: var(--secondary-3);
    color: var(--light-1);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
}
.launch-card-content{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: clamp(1.1rem, 2vw, 1.6rem);
}
.launch-card-content h3{
    margin-bottom: .35rem;
    color: var(--primary-3);
}
.launch-card-content p{
    color: var(--dark-4);
}
.launch-features{
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    list-style: none;
}
.launch-features li{
    padding: .45rem .65rem;
    border-radius: 999px;
    background: var(--light-2);
    color: var(--primary-3);
    font-weight: 600;
}
.launch-card-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}
.launch-card-footer strong{
    color: var(--primary-5);
}
.launch-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: .65rem 1rem;
    border-radius: 6px;
    background: var(--primary-3);
    color: var(--light-1);
    font-size: .75rem;
    font-weight: 700;
}
.properties-grid{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1rem, 2.4vw, 1.8rem);
    align-items: stretch;
}
.properties-empty{
    width: calc(100% - 2rem);
    max-width: 760px;
    margin: 0 auto;
    padding: 1.4rem 1rem;
    border: 1px solid rgba(20,47,66,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.72);
    color: var(--primary-3);
    text-align: center;
}
.properties-grid .properties-empty{
    grid-column: 1 / -1;
}
.properties-empty p{
    font-weight: 600;
}
.property-card{
    width: 100%;
    height: 100%;
    background-color: var(--light-1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,.15);
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease;
}
.property-card:hover{
    transform: translateY(-6px);
}
.property-image{
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--light-1);
    overflow: hidden;
    background-image: url('../img/loading.gif');
    border-bottom: 1px solid var(--light-3);
    background-size: 64px;
    background-position: center;
    background-repeat: no-repeat;
}
.property-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.property-launch-ribbon{
    position: absolute;
    left: .75rem;
    top: .75rem;
    z-index: 2;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(188,171,121,.94);
    color: var(--light-1);
    box-shadow: 0 8px 18px rgba(0,0,0,.22);
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
}
.property-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.property-title{
    width: calc(100% - 1.5rem);
    min-height: 3.2rem;
    padding: 1rem .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-3);
    border-bottom: 1px solid var(--light-3);
    white-space: normal;
    overflow-wrap: anywhere;
}
.property-features{
    width: calc(100% - 1.5rem);
    min-height: 2.2rem;
    padding: 1rem .75rem;
    flex-wrap: wrap;
    gap: .75rem;
    list-style: none;
    border-bottom: 1px solid var(--light-3);
}
.property-features li{
    min-height: 24px;
    gap: .25rem;
    color: var(--primary-3);
    border-radius: 6px;
    font-weight: 500;
}
.property-features li svg{
    width: 18px;
}
.property-price{
    width: calc(100% - 1.5rem);
    min-height: 1.4rem;
    padding: 1rem .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-5);
    border-bottom: 1px solid var(--light-3);
}
.property-code{
    min-height: 1.4rem;
    padding:.5rem 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-5);
}
.property-link{
    width: 100%;
    margin-top: auto;
    padding-bottom: 1rem;
}
.property-link a{
    width: fit-content;
    padding: .6rem 1.4rem;
    border-radius: 6px;
    background-color: var(--primary-3);
    background-image: var(--primary-gradient);
    color: var(--light-1);
    font-size: .75rem;
    font-weight: 500;
    box-shadow: var(--shadow-small);
    transition: transform .25s ease, background-color .25s ease;
}
.lightbox{
    display:none;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(24,55,76,.95);
    backdrop-filter:blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 999;
    user-select: none;
    color:var(--light-1)
}
.lightbox-close{
    width: 64px;
    height: 64px;
    position: fixed;
    top:20px;
    right: 20px;
    font-weight: 600;
    cursor: pointer;

}
.lightbox-left{
    width: 64px;
    height: 64px;
    position: fixed;
    top:calc(50% - 32px);
    left: 20px;

    cursor: pointer;
}
.lightbox-center{
    max-width: calc(100% - 208px);
    width: fit-content;
    height: fit-content;
    max-height: calc(100% - 40px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,.15);
    background-color: var(--light-3);
    border:  1px solid var(--light-5);
    position: relative;
}
.lightbox-image{
    flex: 1;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}
.lightbox-image img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.lightbox-description{
    width: calc(100% - 1rem);
    padding: .5rem;
    position: absolute;
    color: var(--light-1);
    bottom: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter:blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.lightbox-right{
    width: 64px;
    height: 64px;
    position: fixed;
    top:calc(50% - 32px);
    right: 20px;
    cursor: pointer;
}
.property-single{
    width: 100%;
    background-color: var(--light-1);
}
.property-body-launch{
    background: var(--primary-1);
}
.property-launch-hero{
    position: relative;
    min-height: min(760px, 92vh);
    padding-top: calc(4rem + 2.75rem);
    padding-bottom: 4rem;
    overflow: hidden;
    background: var(--primary-1);
    color: var(--light-1);
}
.property-launch-bg{
    position: absolute;
    inset: 0;
}
.property-launch-bg::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,31,44,.94), rgba(13,31,44,.68) 48%, rgba(13,31,44,.25));
}
.property-launch-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.property-launch-hero-grid{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .48fr);
    align-items: end;
    gap: clamp(1.5rem, 4vw, 3rem);
    min-height: calc(min(760px, 92vh) - 8rem);
}
.property-launch-copy{
    max-width: 760px;
}
.property-launch-copy h1{
    margin-bottom: 1rem;
    color: var(--light-1);
}
.property-launch-copy p{
    max-width: 620px;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
}
.property-launch-price{
    margin: 1.4rem 0;
    color: var(--secondary-5);
    font-weight: 700;
}
.property-launch-cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .85rem 1.35rem;
    border-radius: 6px;
    background: var(--secondary-3);
    color: var(--light-1);
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(0,0,0,.24);
}
.property-launch-panel{
    padding: 1.4rem;
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    color: var(--primary-3);
    box-shadow: 0 24px 52px rgba(0,0,0,.28);
}
.property-launch-panel span{
    display: block;
    margin-bottom: .4rem;
    color: var(--dark-4);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.property-launch-panel strong{
    display: block;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.property-launch-panel ul{
    display: grid;
    gap: .6rem;
    list-style: none;
}
.property-launch-panel li{
    padding: .7rem .8rem;
    border-radius: 6px;
    background: var(--light-2);
    font-weight: 600;
}
.property-single-launch{
    background: linear-gradient(180deg, var(--light-1), var(--light-2));
}
.property-single h1 {
    width: 100%;
    padding-top: calc(2rem + 2.75rem);
}
.property-single-launch .property-gallery{
    margin-top: 0;
}
.property-single-launch .gallery-item{
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(20,47,66,.12);
}
.property-single-launch .property-info{
    grid-template-columns: .85fr 1.15fr;
    align-items: start;
}
.property-single-launch .property-details{
    position: sticky;
    top: 4.5rem;
    border-radius: 8px;
    background: var(--primary-3);
    color: var(--light-1);
}
.property-single-launch .details-list li{
    border-color: rgba(255,255,255,.18);
}
.property-single-launch .property-price-highlight{
    color: var(--secondary-5);
}
.property-single-launch .property-description{
    padding: 1.4rem;
    border-radius: 8px;
    background: var(--light-1);
    box-shadow: 0 12px 28px rgba(20,47,66,.08);
}
.property-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin: 30px 0;
}
.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: #f2f2f2;
    background-image: url('../img/loading.gif');
    background-size: 64px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.marca-dagua-small{
    position: absolute;
    width: 64px;
    bottom:20px;
    right: 20px;
    aspect-ratio: 3 / 2;
    opacity: .4;
    background-image: url("../img/md2.png");
    background-position: center;
    background-size: cover;
}
.marca-dagua-large{
    position: absolute;
    width: 20%;
    max-width: 90px;
    bottom:70px;
    right: 20px;
    aspect-ratio: 3 / 2;
    opacity: .4;
    background-image: url("../img/md2.png");
    background-position: center;
    background-size: cover;
}
.property-info {
    display: grid;
    gap: 30px;
}

.property-details {
    background: var(--gray-1);
    padding: 20px;
    border-radius: 16px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-2);
}

.property-price-highlight {
    margin-top: 20px;
    color: var(--primary-3);
}

.property-description {
    line-height: 1.6;
}

.property-cta {
    margin-top: 30px;
}

.property-share {
    margin-top: 20px;
}

.property-share-title {
    margin-bottom: 12px;
    color: var(--dark-2);
    font-weight: 600;
}

.property-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-whatsapp {
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.floating-whatsapp-button {
    width: 62px;
    height: 62px;
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0,0,0,.2);
    z-index: 980;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0,0,0,.24);
}

.floating-whatsapp-button svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.btn-share {
    gap: 10px;
    border: none;
    color: #fff;
    padding: 12px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.btn-share svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.btn-share-whatsapp {
    background: #25D366;
}

.btn-share-facebook {
    background: #1877F2;
}

.btn-share-instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.btn-share-copy {
    background: var(--primary-3);
}

.property-lead-panel{
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.1rem, 2.4vw, 1.6rem);
    align-items: start;
    margin-top: 2rem;
    padding: clamp(1.2rem, 3vw, 2rem);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-3), var(--primary-1));
    color: var(--light-1);
    box-shadow: 0 18px 42px rgba(20,47,66,.18);
}
.property-lead-copy{
    max-width: 820px;
}
.property-lead-copy h2{
    margin-bottom: .6rem;
    color: var(--light-1);
}
.property-lead-copy p{
    line-height: 1.6;
    color: rgba(255,255,255,.78);
}
.property-lead-form{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}
.lead-scheduler{
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
}
.lead-scheduler-header{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.lead-scheduler-header strong,
.lead-time-title{
    display: block;
    color: var(--light-1);
    font-weight: 700;
}
.lead-scheduler-kicker{
    display: block;
    margin-bottom: .25rem;
    color: var(--secondary-5);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}
.lead-scheduler-selected{
    align-self: start;
    padding: .45rem .7rem;
    border-radius: 6px;
    background: rgba(255,255,255,.14);
    color: rgba(255,255,255,.86);
    font-size: .78rem;
    font-weight: 700;
    text-align: right;
}
.lead-scheduler-grid{
    display: grid;
    grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
    gap: 1rem;
}
.lead-calendar,
.lead-time-panel{
    min-width: 0;
    padding: .85rem;
    border-radius: 8px;
    background: rgba(255,255,255,.96);
    color: var(--primary-3);
}
.lead-calendar-top{
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
    text-align: center;
}
.lead-calendar-nav{
    width: 36px;
    height: 36px;
    border: 1px solid rgba(20,47,66,.12);
    border-radius: 6px;
    background: var(--light-1);
    color: var(--primary-3);
    cursor: pointer;
}
.lead-calendar-weekdays,
.lead-calendar-days{
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .35rem;
}
.lead-calendar-weekdays{
    margin-bottom: .35rem;
    color: var(--dark-4);
    font-size: .68rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}
.lead-calendar-empty,
.lead-calendar-day{
    aspect-ratio: 1 / 1;
}
.lead-calendar-day,
.lead-time-slot{
    border: 1px solid rgba(20,47,66,.12);
    border-radius: 6px;
    background: var(--light-1);
    color: var(--primary-3);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.lead-calendar-day:hover,
.lead-time-slot:hover{
    transform: translateY(-1px);
    border-color: var(--secondary-3);
}
.lead-calendar-day.is-selected,
.lead-time-slot.is-selected{
    border-color: var(--secondary-3);
    background: var(--secondary-3);
    color: var(--light-1);
}
.lead-calendar-day:disabled,
.lead-time-slot:disabled{
    cursor: not-allowed;
    opacity: .38;
    transform: none;
}
.lead-time-title{
    margin-bottom: .75rem;
    color: var(--primary-3);
}
.lead-time-slots{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: .45rem;
}
.lead-time-slot{
    min-height: 38px;
}
.lead-time-empty{
    grid-column: 1 / -1;
    padding: .85rem;
    border-radius: 6px;
    background: var(--light-2);
    color: var(--dark-4);
    font-weight: 600;
    text-align: center;
}
.lead-field{
    display: block;
}
.lead-field-full{
    grid-column: 1 / -1;
}
.property-lead-form .lead-field:nth-of-type(4){
    grid-column: 1 / -1;
}
.lead-field span{
    display: block;
    margin-bottom: .35rem;
    font-size: .68rem;
    font-weight: 700;
    color: rgba(255,255,255,.82);
}
.lead-field input,
.lead-field textarea{
    width: calc(100% - 1.6rem);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    padding: .8rem;
    background: rgba(255,255,255,.96);
    color: var(--primary-3);
    outline: none;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.lead-field textarea{
    resize: vertical;
    min-height: 110px;
}
.lead-field input:focus,
.lead-field textarea:focus{
    border-color: var(--secondary-3);
    box-shadow: 0 0 0 3px rgba(188,171,121,.22);
}
.lead-form-footer{
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.lead-form-return{
    min-height: 1.2rem;
    color: rgba(255,255,255,.82);
}
.lead-form-return.is-success{
    color: var(--secondary-5);
}
.lead-form-return.is-error{
    color: #ffd0d0;
}
.lead-submit-btn{
    flex: 0 0 auto;
    min-height: 44px;
    padding: .75rem 1.2rem;
    border: none;
    border-radius: 6px;
    background: var(--secondary-3);
    color: var(--light-1);
    box-shadow: 0 12px 26px rgba(0,0,0,.18);
    cursor: pointer;
    font-weight: 700;
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.lead-submit-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0,0,0,.24);
}
.lead-submit-btn.is-loading,
.lead-submit-btn:disabled{
    opacity: .72;
    cursor: wait;
    transform: none;
}



.expert-values {
    background: var(--light-3);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.value-card {
    background: var(--light-1);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 2rem 1.8rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    backdrop-filter: blur(6px);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    border-color: var(--secondary-3);
}
.value-tag {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-3);
    margin-bottom: 1rem;
}
.contato{
    color: var(--light-3);
    background: var(--primary-3);
}
.contato-count{
    gap:4rem;
    text-align: center;
}
.contato-count hr{
    margin:2.2rem 0;
    border: none;
    height: 2px;
    background-color: var(--primary-5);
}
.contato-count h3{
    color:var(--light-1);
}
.contato-count h4{
    width: 100%;
    margin-top: .8rem;
    text-align: center;
    font-weight: 400;
    color:var(--light-2);
}
.contato-count svg{
    width: 20px;
    fill: var(--light-2);
    margin-right: 10px;
}
.social-medias{
    width: 100%;
    gap: 1rem;
}
.social-media{
    width: fit-content;
    margin-top: .8rem;
}
.social-medias a{
    fill: var(--light-1);
    transition: .2s;
}
.social-medias-wpp a svg{
    padding-bottom: 6px;
}
.social-media a svg{
    width: 2rem;
}
.social-medias a svg:hover{
    fill: var(--secondary-3);
}
.footer{
    width: 100%;
    padding: 1rem 0;
    color: var(--light-1);
    background: var(--primary-2);
    user-select: none;
    text-align: center;
    cursor:cell;
}
.footer p:first-child{
    margin-bottom:.25rem;
}
.footer a{
    color: var(--light-3);
}

.capture-hero{
    padding-top: calc(3.5rem + 2.75rem);
    padding-bottom: 2rem;
    background:
        radial-gradient(circle at top left, rgba(188,171,121,0.22), transparent 32%),
        linear-gradient(180deg, var(--primary-2), var(--primary-1));
}
.capture-hero-card{
    display: grid;
    grid-template-columns: 1.6fr 0.8fr;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--light-1);
    box-shadow: 0 24px 50px rgba(0,0,0,.18);
}
.capture-badge{
    display: inline-block;
    margin-bottom: 1rem;
    padding: .35rem .8rem;
    border-radius: 999px;
    background: rgba(188,171,121,0.18);
    border: 1px solid rgba(188,171,121,0.45);
    color: var(--secondary-5);
}
.capture-hero-copy h1{
    margin-bottom: .75rem;
}
.capture-purpose-preview{
    display: grid;
    gap: .8rem;
}
.capture-purpose-preview span{
    display: block;
    padding: .9rem 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    font-weight: 600;
}
.capture-page{
    background: linear-gradient(180deg, var(--light-2), #ffffff);
}
.capture-form{
    margin-top: -1rem;
}
.capture-section{
    margin-bottom: 1.25rem;
    padding: 1.4rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(20,47,66,.08);
    box-shadow: 0 12px 28px rgba(20,47,66,.08);
}
.capture-section-head{
    margin-bottom: 1rem;
}
.capture-section-head h2{
    color: var(--primary-3);
    margin-bottom: .2rem;
}
.capture-grid{
    display: grid;
    gap: 1rem;
}
.capture-grid-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.capture-grid-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.capture-grid-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.capture-field{
    display: block;
}
.capture-field span{
    display: block;
    margin-bottom: .35rem;
    font-size: .68rem;
    font-weight: 600;
    color: var(--dark-4);
}
.capture-field-span-2{
    grid-column: span 2;
}
.capture-inline-options{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    min-height: 1.5rem;
    padding: .7rem .9rem;
    border: 1px solid var(--light-4);
    border-radius: 10px;
    background: var(--light-1);
}
.capture-inline-options label,
.capture-check-grid label,
.capture-doc-options label{
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
}
.capture-check-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 14px;
    background: var(--light-2);
}
.capture-doc-layout{
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 1rem;
}
.capture-doc-options{
    display: grid;
    align-content: start;
    gap: .7rem;
    padding: 1rem;
    border-radius: 14px;
    background: var(--light-2);
}
.capture-doc-notes{
    display: grid;
    gap: 1rem;
}
.capture-photo-uploader{
    display: grid;
    gap: 1rem;
}
.capture-photo-dropzone{
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .55rem;
    padding: 1.2rem;
    border: 1px dashed rgba(24,55,76,.34);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(24,55,76,.04), rgba(188,171,121,.12)),
        var(--light-1);
    color: var(--primary-3);
    text-align: center;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.capture-photo-dropzone:hover,
.capture-photo-uploader.is-dragging .capture-photo-dropzone{
    transform: translateY(-2px);
    border-color: var(--secondary-3);
    box-shadow: 0 14px 28px rgba(20,47,66,.1);
}
.capture-photo-dropzone input{
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.capture-photo-icon{
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-3);
    box-shadow: 0 12px 24px rgba(24,55,76,.18);
}
.capture-photo-icon svg{
    width: 28px;
    height: 28px;
    fill: var(--light-1);
}
.capture-photo-title{
    display: block;
    color: var(--primary-3);
    font-weight: 700;
}
.capture-photo-help,
.capture-photo-status{
    color: var(--dark-4);
}
.capture-photo-preview{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    gap: .75rem;
}
.capture-photo-item{
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: var(--light-2);
    border: 1px solid rgba(20,47,66,.08);
    box-shadow: 0 10px 22px rgba(20,47,66,.08);
}
.capture-photo-item img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.capture-photo-remove{
    position: absolute;
    top: .45rem;
    right: .45rem;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(14,20,25,.78);
    color: var(--light-1);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}
.capture-photo-index{
    position: absolute;
    left: .45rem;
    bottom: .45rem;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--primary-3);
    font-size: .72rem;
    font-weight: 800;
}
.capture-submit{
    text-align: center;
    padding-top: .75rem;
}
.capture-submit-btn{
    min-width: 320px;
    padding: .9rem 1.4rem;
    border: none;
    border-radius: 999px;
    color: var(--light-1);
    background: linear-gradient(135deg, var(--secondary-3), var(--secondary-2));
    box-shadow: 0 16px 32px rgba(188,171,121,.28);
    cursor: pointer;
    font-size: .8rem;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.capture-submit-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(188,171,121,.36);
}
.capture-submit-btn.is-loading,
.capture-submit-btn:disabled{
    opacity: .65;
    cursor: wait;
}

@media screen and (max-width: 1100px){
    .capture-hero-card,
    .capture-doc-layout{
        grid-template-columns: 1fr;
    }
    .capture-grid-6{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 820px){
    .capture-grid-3,
    .capture-grid-4,
    .capture-grid-6,
    .capture-check-grid{
        grid-template-columns: 1fr 1fr;
    }
    .capture-field-span-2{
        grid-column: auto;
    }
    .capture-submit-btn{
        min-width: 100%;
    }
}

@media screen and (max-width: 560px){
    .capture-hero-card,
    .capture-section{
        padding: 1.1rem;
    }
    .capture-grid-3,
    .capture-grid-4,
    .capture-grid-6,
    .capture-check-grid{
        grid-template-columns: 1fr;
    }
    .capture-inline-options{
        flex-direction: column;
        align-items: flex-start;
        gap: .6rem;
    }
}
@media only screen and (max-width:960px) {
    .header-sup-inner{
        justify-content: space-between;
    }
    .header-sup-brand{
        display: flex;
        width: 40px;
        height: 40px;
    }
    .header-sup-toggle{
        display: flex;
    }
    .header-sup-menu{
        display: none;
        position: absolute;
        top: calc(100% + .45rem);
        right: 0;
        width: min(320px, calc(100vw - 40px));
        padding: .85rem;
        border-radius: 8px;
        background-color: var(--primary-3);
        background-image: var(--primary-gradient);
        box-shadow: 0 14px 30px rgba(0,0,0,.28);
        align-items: stretch;
        flex-direction: column;
        gap: .75rem;
    }
    .header-sup.is-open .header-sup-menu{
        display: flex;
    }
    .header-sup-menu .social-icons{
        width: 100%;
        justify-content: center;
    }
    .header-sup-menu .social-icons a{
        margin: 0 .35rem;
    }
    .header-sup-menu .header-btns{
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: .5rem;
    }
    .header-sup-menu .header-btns a{
        width: 100%;
        min-height: 40px;
        justify-content: center;
        padding: 0;
    }
    .launch-card,
    .property-launch-hero-grid,
    .property-single-launch .property-info,
    .property-lead-panel{
        grid-template-columns: 1fr;
    }
    .property-lead-form{
        grid-template-columns: 1fr;
    }
    .lead-scheduler-header,
    .lead-scheduler-grid{
        grid-template-columns: 1fr;
    }
    .lead-scheduler-header{
        flex-direction: column;
    }
    .lead-scheduler-selected{
        width: fit-content;
        text-align: left;
    }
    .lead-time-slots{
        grid-template-columns: repeat(auto-fill, minmax(66px, 1fr));
    }
    .lead-form-footer{
        align-items: stretch;
        flex-direction: column;
    }
    .lead-submit-btn{
        width: 100%;
    }
    .launch-card-media{
        min-height: 280px;
    }
    .property-launch-hero{
        min-height: auto;
        padding-top: calc(3.5rem + 2.75rem);
    }
    .property-launch-hero-grid{
        min-height: auto;
        align-items: start;
    }
    .property-launch-panel,
    .property-single-launch .property-details{
        position: static;
    }
    .properties-grid{
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
        gap: 1rem;
    }
    .content-header div img{
        max-width: 45%;
    }
    .about-box {
        grid-template-columns: 1fr;
    }
    .about-icon {
        margin-bottom: 0.5rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .value-card {
        padding: 1.8rem 1.5rem;
    }
    .lightbox-close,.lightbox-left, .lightbox-right{
        width: 32px;
        height: 32px;
    }
    .lightbox-center{
        max-width: calc(100% - 144px);
    }
    .contato-count{
        flex-direction: column;
    }
    .form-footer{
        flex-wrap: wrap;
        margin-top:0;
    }
    .form-footer-return{
        width: 100%;
        justify-content: center;
        min-height:50px;
        padding-bottom: 6px;
    }
    .form-footer-submit{
        width:100%;
    }
    .contato-left button{
        width:100%;
        height: 44px;
        border-radius: 6px;
        float: right;
        border: none;
        cursor: pointer;
        color:var(--light-1);
    }
    .contato-right{
        width: 100%;
        text-align: center;
    }
    .contato-right h4{
        width: 100%;
        justify-content: center;
    }
    .social-medias{
        justify-content: center;
    }
    .floating-whatsapp-button {
        width: 56px;
        height: 56px;
    }
    .floating-whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

}
