.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: flex;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-right: clamp(1rem, 3vw, 2.5rem);
    justify-content: center;
    color: var(--light-1);
    text-decoration: none;
    border-radius: 50%;
    transition: transform .2s ease, filter .2s ease;
}
.header-sup-brand img{
    display: block;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    object-fit: contain;
}
.header-sup-brand:hover,
.header-sup-brand:focus-visible{
    filter: brightness(1.12);
    transform: translateY(-1px) scale(1.04);
}
.header-sup-menu{
    min-width: 0;
    flex: 1 1 auto;
}
.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;
}
.expert-company-details{
    display: grid;
    justify-items: center;
    gap: .3rem;
    width: min(100%, 760px);
    margin: .65rem auto 0;
}
.expert-company-name{
    margin: 0;
    color: rgba(255,255,255,.94);
    font-size: clamp(.66rem, 1.1vw, .86rem);
    font-weight: 500;
    letter-spacing: .035em;
    line-height: 1.4;
}
.expert-creci{
    margin: 0;
    color: var(--secondary-3);
    font-size: clamp(.72rem, 1.2vw, .9rem);
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.2;
}
.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-header .property-location{
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    gap: .5rem;
    margin-top: .55rem;
    padding: .42rem .72rem .42rem .58rem;
    border: 1px solid rgba(188,171,121,.34);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(188,171,121,.16), rgba(255,255,255,.72));
    color: var(--primary-3);
    font-size: clamp(.92rem, .86rem + .18vw, 1.05rem);
    font-weight: 500;
    line-height: 1.25;
    box-shadow: 0 8px 20px rgba(20,47,66,.07);
}
.property-location-icon{
    width: 1.18em;
    height: 1.18em;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--secondary-1);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.property-location span{
    min-width: 0;
    overflow-wrap: anywhere;
}
.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-subsection-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:1rem;
    margin:1.35rem 0 .85rem;
    padding-top:1.1rem;
    border-top:1px solid rgba(20,47,66,.09);
}
.capture-subsection-head h3{
    margin:0 0 .18rem;
    color:var(--primary-3);
    font-size:.82rem;
}
.capture-subsection-head p{
    margin:0;
    color:var(--dark-4);
    font-size:.62rem;
}
.capture-subsection-head--compact{margin-top:1rem;padding-top:1rem}
.capture-none-option{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    flex:0 0 auto;
    padding:.62rem .8rem;
    border:1px solid rgba(188,171,121,.42);
    border-radius:12px;
    background:rgba(188,171,121,.1);
    color:var(--primary-3);
    font-size:.68rem;
    font-weight:700;
    cursor:pointer;
}
.capture-none-option input{width:18px;height:18px;accent-color:var(--secondary-2)}
.capture-dependent-fields{
    min-width:0;
    margin:0;
    padding:0;
    border:0;
    transition:opacity .2s ease,filter .2s ease;
}
.capture-dependent-fields.is-disabled{opacity:.42;filter:grayscale(.4)}
.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-legal-acceptance{
    width:min(760px,100%);
    display:flex;
    align-items:flex-start;
    gap:.7rem;
    box-sizing:border-box;
    margin:0 auto 1rem;
    padding:.9rem 1rem;
    border:1px solid rgba(188,171,121,.42);
    border-radius:14px;
    background:rgba(188,171,121,.09);
    color:var(--dark-3);
    text-align:left;
    font-size:.67rem;
    line-height:1.55;
    cursor:pointer;
}
.capture-legal-acceptance input{width:19px;height:19px;flex:0 0 auto;margin-top:.05rem;accent-color:var(--secondary-2)}
.capture-legal-acceptance a{color:var(--primary-3);font-weight:800;text-decoration:underline;text-underline-offset:3px}
.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 (min-width:961px) and (max-width:1180px) {
    .header-sup-brand{
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        margin-right: .5rem;
    }
    .header-sup-brand img{
        width: 40px;
        height: 40px;
        flex-basis: 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;
    }
    .capture-subsection-head--spouse{align-items:flex-start;flex-direction:column}
    .capture-none-option{width:100%;box-sizing:border-box}
}

@media only screen and (max-width:960px) {
    .header-sup-inner{
        justify-content: space-between;
    }
    .header-sup-brand{
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        margin-right: .5rem;
    }
    .header-sup-brand img{
        width: 40px;
        height: 40px;
        flex-basis: 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;
    }
    .property-header .property-location{
        font-size: 1rem;
    }
    .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;
    }

}

/* Cadastro público de imóvel autorizado */
.public-submission-header{
    position:fixed;
    inset:0 0 auto;
    z-index:120;
    min-height:72px;
    display:flex;
    align-items:center;
    background:rgba(255,255,255,.97);
    border-bottom:1px solid rgba(20,47,66,.09);
    box-shadow:0 8px 24px rgba(20,47,66,.08);
    backdrop-filter:blur(12px);
}
.public-submission-brand{display:flex;align-items:center;gap:.7rem;text-decoration:none;color:var(--primary-3)}
.public-submission-brand img{width:46px;height:46px;border-radius:13px}
.public-submission-brand span{display:flex;flex-direction:column;line-height:1.1}
.public-submission-brand strong{max-width:440px;font-size:.58rem;font-weight:700;letter-spacing:.015em}
.public-submission-brand small{margin-top:.28rem;font-size:.48rem;font-weight:700;letter-spacing:.11em;color:var(--secondary-2)}
.public-submission-help{padding:.7rem 1rem;border:1px solid rgba(20,47,66,.14);border-radius:12px;color:var(--primary-3);font-size:.7rem;font-weight:700;text-decoration:none}
.public-submission-hero{padding-top:calc(72px + 2.8rem)}
.public-submission-security{display:grid;gap:.65rem;padding:1rem;border:1px solid rgba(188,171,121,.3);border-radius:18px;background:rgba(255,255,255,.07)}
.public-submission-security strong{color:var(--secondary-5);font-size:.82rem}
.public-submission-security span{position:relative;padding-left:1.2rem;color:rgba(255,255,255,.84);font-size:.68rem;line-height:1.45}
.public-submission-security span::before{content:"✓";position:absolute;left:0;color:var(--secondary-4);font-weight:800}
.public-property-form{position:relative}
.public-form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.submission-steps{position:sticky;top:84px;z-index:20;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.65rem;margin:0 0 1.25rem;padding:.75rem;border:1px solid rgba(20,47,66,.09);border-radius:16px;background:rgba(255,255,255,.96);box-shadow:0 10px 26px rgba(20,47,66,.08);backdrop-filter:blur(10px)}
.submission-step-button{min-height:48px;display:flex;align-items:center;justify-content:center;gap:.55rem;padding:.55rem .75rem;border:1px solid transparent;border-radius:11px;background:var(--light-2);color:var(--dark-4);font-size:.7rem;font-weight:700;cursor:pointer;transition:.2s ease}
.submission-step-button span{width:25px;height:25px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:#fff;color:var(--primary-3);box-shadow:0 3px 9px rgba(20,47,66,.08)}
.submission-step-button.is-active{border-color:rgba(188,171,121,.5);background:linear-gradient(135deg,var(--primary-3),var(--primary-2));color:#fff;box-shadow:0 8px 18px rgba(20,47,66,.15)}
.public-property-form.is-enhanced .submission-step-panel{display:none}
.public-property-form.is-enhanced .submission-step-panel.is-active{display:block}
.submission-step-actions{display:flex;align-items:center;justify-content:flex-end;gap:.8rem;padding:.25rem 0 1rem}
.submission-step-actions .capture-submit-btn{min-width:310px}
.submission-back{min-height:46px;padding:0 1.2rem;border:1px solid rgba(20,47,66,.16);border-radius:12px;background:#fff;color:var(--primary-3);font-weight:700;cursor:pointer}
.public-owner-same-address{display:flex;align-items:center;gap:.6rem;margin-bottom:1rem;padding:.85rem 1rem;border-radius:12px;background:var(--light-2);color:var(--primary-3);font-size:.72rem;font-weight:700}
.public-owner-same-address input,.public-submission-consent input{width:18px;height:18px;accent-color:var(--primary-3)}
.public-address-privacy{padding:1rem;border:1px solid rgba(20,47,66,.14);border-radius:12px;background:#f7fafb}
.public-address-privacy > .public-owner-same-address{margin:0;padding:0;background:transparent}
.public-address-privacy > small{display:block;margin-top:.55rem;color:var(--dark-4);font-size:.68rem;line-height:1.45}
.public-owner-address-fields.is-synced{opacity:.7}
.public-owner-address-fields input:disabled{background:#edf1f3;color:var(--dark-4)}
.public-submission-consent label{display:flex;align-items:flex-start;gap:.7rem;padding:1rem;border:1px solid rgba(188,171,121,.35);border-radius:14px;background:#fffbef;color:var(--dark-4);font-size:.72rem;line-height:1.55}
.capture-field .field-feedback{display:none;margin-top:.32rem;color:#a4271e;font-size:.58rem;line-height:1.35}
.capture-field.is-invalid input,.capture-field.is-invalid select,.capture-field.is-invalid textarea{border-color:#c94c43!important;box-shadow:0 0 0 3px rgba(201,76,67,.1)!important}
.capture-field.is-invalid .field-feedback{display:block}
.capture-field.is-valid input,.capture-field.is-valid select{border-color:#3c936f}
.field-counter{display:block;margin-top:.32rem;color:var(--dark-4);font-size:.58rem;text-align:right}
.capture-photo-icon{font-size:2rem;font-weight:300;color:#fff}

@media screen and (max-width:820px){
    .public-submission-header{min-height:64px}
    .public-submission-brand img{width:40px;height:40px}
    .public-submission-help{padding:.6rem .7rem;font-size:.6rem}
    .public-submission-hero{padding-top:calc(64px + 2rem)}
    .submission-steps{top:72px;grid-template-columns:1fr;padding:.55rem}
    .submission-step-button{min-height:42px;justify-content:flex-start}
    .submission-step-actions{align-items:stretch;flex-direction:column-reverse}
    .submission-step-actions .capture-submit-btn,.submission-step-actions .submission-back{width:100%;min-width:0}
}

@media screen and (max-width:560px){
    .public-submission-brand{min-width:0;gap:.5rem}
    .public-submission-brand span{min-width:0}
    .public-submission-brand strong{font-size:.48rem;line-height:1.2}
    .public-submission-brand small{font-size:.42rem}
    .public-submission-help{max-width:150px;text-align:center;line-height:1.3}
    .submission-steps{position:static}
}

/* Busca de imóveis — site principal */
.expert-hero-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:1.15rem;
    flex-wrap:wrap;
}
.expert-hero-search{
    min-width:min(100%,340px);
    min-height:70px;
    display:grid;
    grid-template-columns:46px minmax(0,1fr) auto;
    align-items:center;
    gap:.75rem;
    padding:.45rem .75rem;
    border:1px solid rgba(255,255,255,.36);
    border-radius:18px;
    background:linear-gradient(135deg,var(--secondary-3),var(--secondary-1));
    color:#fff;
    box-shadow:0 18px 44px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.25);
    text-align:left;
    transition:transform .25s ease,box-shadow .25s ease;
}
.expert-hero-search:hover{
    transform:translateY(-3px);
    box-shadow:0 24px 52px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.3);
}
.expert-hero-search-icon{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(15,36,51,.18);
}
.expert-hero-search-icon svg{width:24px;fill:#fff}
.expert-hero-search > span:nth-child(2){display:flex;min-width:0;flex-direction:column}
.expert-hero-search strong{font-size:.76rem;font-weight:800;letter-spacing:.02em;text-transform:uppercase}
.expert-hero-search small{margin-top:.12rem;color:rgba(255,255,255,.88);font-size:.52rem;line-height:1.3}
.expert-hero-search > b{font-size:1.15rem;transition:transform .2s ease}
.expert-hero-search:hover > b{transform:translateX(4px)}
.expert-hero-about .btn-slice{padding:1rem 1.35rem}

.expert-search-body{background:#f2f5f6;color:var(--dark-3)}
.expert-search-nav{gap:.2rem}
.expert-search-nav a{
    padding:.42rem .65rem;
    border-radius:999px;
    color:rgba(255,255,255,.82);
    font-size:.62rem;
    font-weight:700;
    transition:background-color .2s ease,color .2s ease;
}
.expert-search-nav a:hover,.expert-search-nav a[aria-current="page"]{background:rgba(255,255,255,.11);color:#fff}
.expert-search-hero{
    position:relative;
    overflow:hidden;
    padding:calc(2.75rem + clamp(3.3rem,8vw,6rem)) 0 clamp(4.8rem,9vw,7.6rem);
    background:
        radial-gradient(circle at 12% 20%,rgba(188,171,121,.22),transparent 27%),
        radial-gradient(circle at 92% 12%,rgba(61,103,131,.24),transparent 25%),
        linear-gradient(135deg,#0f2433 0%,#18374c 58%,#102a3b 100%);
    color:#fff;
}
.expert-search-hero::after{
    content:"";
    position:absolute;
    right:-9rem;
    bottom:-14rem;
    width:34rem;
    height:34rem;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    box-shadow:0 0 0 4rem rgba(255,255,255,.025),0 0 0 8rem rgba(255,255,255,.018);
}
.expert-search-hero-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(270px,.65fr);gap:clamp(2rem,6vw,5.5rem);align-items:end;z-index:1}
.expert-search-hero-copy{max-width:850px}
.expert-search-eyebrow{
    display:block;
    margin-bottom:.42rem;
    color:var(--secondary-2);
    font-size:.57rem;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
}
.expert-search-hero .expert-search-eyebrow{color:var(--secondary-4)}
.expert-search-hero h1{max-width:820px;font-size:clamp(1.7rem,4.2vw,3rem);font-weight:650;letter-spacing:-.04em;line-height:1.08}
.expert-search-hero-copy p{max-width:760px;margin-top:1rem;color:rgba(255,255,255,.76);font-size:clamp(.72rem,1.3vw,.9rem);line-height:1.65}
.expert-search-hero-proof{display:grid;gap:.7rem;padding:1rem;border:1px solid rgba(255,255,255,.12);border-radius:20px;background:rgba(255,255,255,.055);backdrop-filter:blur(12px)}
.expert-search-hero-proof span{padding-left:.8rem;border-left:2px solid var(--secondary-3);color:rgba(255,255,255,.76);font-size:.61rem;line-height:1.45}
.expert-search-hero-proof strong{display:block;margin-bottom:.12rem;color:#fff;font-size:1.05rem}

.expert-search-main{position:relative;z-index:2}
.expert-property-filters{
    position:relative;
    margin-top:-3.25rem;
    padding:clamp(1rem,2.5vw,1.65rem);
    border:1px solid rgba(20,47,66,.1);
    border-radius:24px;
    background:rgba(255,255,255,.98);
    box-shadow:0 26px 70px rgba(15,36,51,.16);
}
.expert-filter-intro{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;margin-bottom:1.15rem;padding-bottom:.85rem;border-bottom:1px solid rgba(20,47,66,.09)}
.expert-filter-intro h2{color:var(--primary-2);font-size:1.18rem;font-weight:700}
.expert-filter-hint{max-width:420px;color:var(--dark-5);font-size:.58rem;text-align:right}
.expert-filter-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.85rem}
.expert-filter-wide{grid-column:span 2}
.expert-filter-field{display:flex;min-width:0;flex-direction:column;gap:.34rem;color:var(--primary-2);font-size:.58rem;font-weight:750}
.expert-filter-field > span:first-child{letter-spacing:.01em}
.expert-filter-field input,.expert-filter-field select{
    box-sizing:border-box;
    width:100%;
    height:48px;
    padding:0 .7rem;
    border:1px solid #d9e0e4;
    border-radius:12px;
    background:#f9fbfc;
    color:var(--dark-3);
    font-size:.66rem;
    font-weight:450;
    transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease;
}
.expert-filter-field input:focus,.expert-filter-field select:focus{border-color:var(--secondary-2);background:#fff;box-shadow:0 0 0 4px rgba(188,171,121,.14)}
.expert-filter-control{position:relative;display:block}
.expert-filter-control.has-icon svg{position:absolute;z-index:1;top:50%;left:.68rem;width:20px;fill:var(--primary-4);transform:translateY(-50%)}
.expert-filter-control.has-icon input{padding-left:2rem}
.expert-money-input{position:relative;display:block}
.expert-money-input b{position:absolute;z-index:1;top:50%;left:.7rem;color:var(--primary-4);font-size:.59rem;transform:translateY(-50%)}
.expert-money-input input{padding-left:1.75rem}
.expert-filter-actions{display:flex;align-items:center;justify-content:flex-end;gap:.7rem;margin-top:1rem;padding-top:1rem;border-top:1px solid rgba(20,47,66,.08)}
.expert-search-submit,.expert-search-clear{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.45rem;
    box-sizing:border-box;
    padding:.55rem 1rem;
    border-radius:12px;
    font-family:inherit;
    font-size:.65rem;
    font-weight:800;
    cursor:pointer;
    transition:transform .2s ease,box-shadow .2s ease,background-color .2s ease;
}
.expert-search-submit{border:0;background:linear-gradient(135deg,var(--secondary-3),var(--secondary-1));color:#fff;box-shadow:0 10px 24px rgba(143,130,92,.24)}
.expert-search-submit svg{width:20px;fill:currentColor}
.expert-search-submit:hover{transform:translateY(-2px);box-shadow:0 15px 30px rgba(143,130,92,.32)}
.expert-search-submit:disabled{opacity:.65;cursor:wait;transform:none}
.expert-search-clear{border:1px solid rgba(20,47,66,.16);background:#fff;color:var(--primary-3)}
.expert-search-clear:hover{background:var(--light-2)}

.expert-active-filters{display:flex;align-items:center;gap:.45rem;flex-wrap:wrap;margin:1rem 0 0;color:var(--dark-5);font-size:.56rem}
.expert-active-filters > span{font-weight:700}
.expert-active-filters a{display:inline-flex;align-items:center;gap:.38rem;padding:.35rem .55rem;border:1px solid rgba(20,47,66,.12);border-radius:999px;background:#fff;color:var(--primary-3);font-weight:650}
.expert-active-filters a b{font-size:.75rem;line-height:1}
.expert-active-filters .expert-clear-all{border-color:transparent;background:transparent;color:var(--secondary-1);text-decoration:underline;text-underline-offset:3px}
.expert-results-toolbar{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;padding:clamp(2.2rem,5vw,3.6rem) 0 1rem}
.expert-results-toolbar h2{color:var(--primary-2);font-size:1.25rem;font-weight:700}
.expert-results-toolbar > span{color:var(--dark-5);font-size:.58rem}
.expert-search-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem}
.expert-search-card{border:1px solid rgba(20,47,66,.08);border-radius:18px;box-shadow:0 14px 34px rgba(20,47,66,.1)}
.expert-search-card:hover{box-shadow:0 22px 48px rgba(20,47,66,.16)}
.expert-search-card-media{display:block;width:100%}
.expert-search-card .property-image{aspect-ratio:16/10;border:0}
.expert-search-card .property-image img{transition:transform .55s ease}
.expert-search-card:hover .property-image img{transform:scale(1.045)}
.expert-search-card-badges{position:absolute;z-index:2;inset:.7rem .7rem auto;display:flex;align-items:center;justify-content:space-between;gap:.45rem}
.expert-search-card .property-launch-ribbon,.expert-property-purpose{position:static;display:inline-flex;padding:.32rem .55rem;border-radius:999px;color:#fff;font-size:.5rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;box-shadow:0 7px 17px rgba(0,0,0,.18)}
.expert-property-purpose{background:rgba(15,36,51,.86);backdrop-filter:blur(6px)}
.expert-search-card-heading{padding:.85rem .85rem .35rem}
.expert-search-card-type{display:block;margin-bottom:.28rem;color:var(--secondary-1);font-size:.55rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.expert-search-card .property-title{width:100%;min-height:0;display:flex;align-items:flex-start;justify-content:flex-start;gap:.35rem;box-sizing:border-box;padding:0;border:0;color:var(--primary-2);font-size:.72rem;font-weight:700;text-align:left;line-height:1.45}
.expert-search-card .property-title svg{width:18px;min-width:18px;margin-top:.08rem;fill:var(--secondary-2)}
.expert-search-card .property-features{width:auto;min-height:54px;justify-content:flex-start;margin:.2rem .85rem 0;padding:.55rem 0;border-top:1px solid var(--light-3);border-bottom:1px solid var(--light-3);gap:.45rem .7rem}
.expert-search-card .property-features li{font-size:.54rem}
.expert-search-card .property-features li svg{width:17px;fill:var(--primary-4)}
.expert-search-card-footer{display:flex;align-items:flex-end;justify-content:space-between;gap:.8rem;margin-top:auto;padding:.75rem .85rem .9rem}
.expert-search-price-label{display:block;color:var(--dark-5);font-size:.48rem}
.expert-search-card .property-price{width:auto;min-height:0;display:block;justify-content:flex-start;padding:.1rem 0 0;border:0;color:var(--primary-2);font-size:.78rem;font-weight:800;text-align:left}
.expert-search-card .property-code{width:auto;min-height:0;display:block;justify-content:flex-start;padding:.18rem 0 0;color:var(--dark-5);font-size:.48rem;text-align:left}
.expert-search-card .property-btn{display:inline-flex;align-items:center;justify-content:center;gap:.35rem;padding:.52rem .68rem;border-radius:10px;background:var(--primary-3);color:#fff;font-size:.55rem;font-weight:750;white-space:nowrap}
.expert-search-card .property-btn svg{width:16px;fill:currentColor;transition:transform .2s ease}
.expert-search-card .property-btn:hover svg{transform:translateX(3px)}
.expert-load-more-wrap{display:flex;align-items:center;justify-content:center;flex-direction:column;gap:.45rem;padding:1.6rem 0 .5rem}
.expert-load-more-status{min-height:1em;color:var(--dark-5);font-size:.55rem}
.expert-pagination{display:flex;align-items:center;justify-content:center;gap:1rem;padding:1rem 0 0;color:var(--dark-5);font-size:.58rem}
.expert-pagination a{padding:.45rem .7rem;border:1px solid rgba(20,47,66,.15);border-radius:10px;background:#fff;color:var(--primary-3);font-weight:750}
.expert-search-empty{max-width:780px;margin:0 auto;padding:2rem;border:1px solid rgba(20,47,66,.1);border-radius:22px;background:#fff;box-shadow:0 14px 34px rgba(20,47,66,.08);text-align:center}
.expert-empty-icon{width:60px;height:60px;display:flex;align-items:center;justify-content:center;margin:0 auto .8rem;border-radius:18px;background:var(--secondary-weak)}
.expert-empty-icon svg{width:29px;fill:var(--secondary-1)}
.expert-search-empty h2{color:var(--primary-2);font-size:1rem}
.expert-search-empty p{max-width:620px;margin:.5rem auto 1rem;color:var(--dark-5);font-size:.67rem;line-height:1.6}
.expert-search-empty > div{display:flex;align-items:center;justify-content:center;gap:.6rem;flex-wrap:wrap}
.expert-search-help{padding:0 0 3rem;background:#f2f5f6}
.expert-search-help-card{display:flex;align-items:center;justify-content:space-between;gap:2rem;box-sizing:border-box;padding:clamp(1.35rem,3vw,2rem);border-radius:24px;background:linear-gradient(135deg,var(--primary-2),var(--primary-3));color:#fff;box-shadow:0 20px 50px rgba(15,36,51,.18)}
.expert-search-help-card h2{font-size:1.15rem;font-weight:700}
.expert-search-help-card p{max-width:760px;margin-top:.35rem;color:rgba(255,255,255,.7);font-size:.65rem}
.expert-search-help-card a{min-width:max-content;display:inline-flex;align-items:center;gap:.6rem;padding:.7rem 1rem;border-radius:12px;background:var(--secondary-3);color:#fff;font-size:.63rem;font-weight:800}

@media screen and (max-width:1180px){
    .expert-search-nav{flex-direction:column;width:100%;align-items:stretch}
    .expert-search-nav a{text-align:center}
    .expert-filter-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .expert-search-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media screen and (max-width:820px){
    .expert-hero-actions{flex-direction:column}
    .expert-hero-search{width:min(100%,420px);box-sizing:border-box}
    .expert-hero-about{width:100%}
    .content-header h1{padding:1.5rem 0}
    .expert-search-hero{padding-top:calc(2.75rem + 3.2rem);padding-bottom:5rem}
    .expert-search-hero-grid{grid-template-columns:1fr;gap:1.4rem;align-items:start}
    .expert-search-hero-proof{grid-template-columns:repeat(2,minmax(0,1fr))}
    .expert-property-filters{margin-top:-2.7rem;border-radius:18px}
    .expert-filter-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .expert-filter-wide{grid-column:1/-1}
    .expert-filter-intro{align-items:flex-start;flex-direction:column}
    .expert-filter-hint{text-align:left}
    .expert-search-help-card{align-items:flex-start;flex-direction:column}
}

@media screen and (max-width:620px){
    .content-header div img{max-width:68%}
    .expert-creci{font-size:.62rem}
    .content-header h1{font-size:.72rem;line-height:1.55}
    .expert-hero-search{min-width:0;min-height:62px;border-radius:15px}
    .expert-hero-search-icon{width:40px;height:40px;border-radius:12px}
    .expert-hero-search strong{font-size:.64rem}
    .expert-hero-search small{font-size:.46rem}
    .expert-hero-about .btn-slice{padding:.8rem 1.15rem}
    .expert-search-hero h1{font-size:1.55rem}
    .expert-search-hero-proof{grid-template-columns:1fr}
    .expert-filter-grid,.expert-search-grid{grid-template-columns:1fr}
    .expert-filter-wide{grid-column:auto}
    .expert-filter-actions{align-items:stretch;flex-direction:column}
    .expert-filter-actions .expert-search-submit,.expert-filter-actions .expert-search-clear{width:100%}
    .expert-results-toolbar{align-items:flex-start;flex-direction:column}
    .expert-search-card-footer{align-items:stretch;flex-direction:column}
    .expert-search-card .property-btn{width:100%;box-sizing:border-box}
    .expert-pagination{flex-wrap:wrap;gap:.55rem}
    .expert-search-help-card a{width:100%;box-sizing:border-box;justify-content:center}
}

/* ======================================================================
   ACABAMENTO INSTITUCIONAL E EXPERIÊNCIA IMOBILIÁRIA
   ====================================================================== */

.header-btns a.header-btn-properties{
    border:1px solid rgba(255,255,255,.4);
    background:rgba(255,255,255,.08);
    box-shadow:none;
}
.header-btns a.header-btn-properties:hover{
    border-color:var(--secondary-4);
    background:rgba(255,255,255,.15);
}

.expert-trust-strip{
    position:relative;
    z-index:2;
    padding:clamp(1rem,2.4vw,1.55rem) 0 clamp(.35rem,1vw,.7rem);
    background:linear-gradient(180deg,#102f42 0%,var(--primary-3) 100%);
}
.expert-trust-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:clamp(.55rem,1.2vw,.9rem);
    box-sizing:border-box;
}
.expert-trust-item{
    display:flex;
    align-items:center;
    gap:.9rem;
    min-width:0;
    min-height:78px;
    box-sizing:border-box;
    padding:.9rem 1rem;
    border:1px solid rgba(188,171,121,.2);
    border-radius:16px;
    background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
    box-shadow:0 14px 30px rgba(4,18,27,.15);
}
.expert-trust-item > span{
    display:flex;
    flex:0 0 38px;
    width:38px;
    height:38px;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(188,171,121,.36);
    border-radius:50%;
    background:rgba(188,171,121,.09);
    color:var(--secondary-4);
    font-size:.55rem;
    font-weight:800;
    letter-spacing:.08em;
}
.expert-trust-item div{display:flex;min-width:0;flex-direction:column;gap:.18rem}
.expert-trust-item strong{color:#fff;font-size:.67rem;font-weight:750;line-height:1.3}
.expert-trust-item small{color:rgba(255,255,255,.66);font-size:.5rem;line-height:1.45}

.home-property-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.home-property-grid .property-card{
    position:relative;
    border:1px solid rgba(20,47,66,.08);
    border-radius:18px;
    box-shadow:0 14px 34px rgba(20,47,66,.1);
}
.home-property-grid .property-card:hover{box-shadow:0 22px 48px rgba(20,47,66,.16)}
.home-property-grid .property-card::before{
    content:attr(data-purpose);
    position:absolute;
    z-index:3;
    top:.72rem;
    right:.72rem;
    padding:.32rem .56rem;
    border-radius:999px;
    background:rgba(15,36,51,.88);
    color:#fff;
    font-size:.5rem;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
    backdrop-filter:blur(7px);
    box-shadow:0 8px 18px rgba(0,0,0,.18);
}
.home-property-grid .property-image{aspect-ratio:16/10;border:0}
.home-property-grid .property-image img{transition:transform .55s ease}
.home-property-grid .property-card:hover .property-image img{transform:scale(1.045)}
.home-property-grid .property-title{
    width:100%;
    min-height:0;
    box-sizing:border-box;
    justify-content:flex-start;
    padding:.9rem .9rem .65rem;
    border:0;
    color:var(--primary-2);
    font-size:.69rem;
    line-height:1.5;
    text-align:left;
}
.home-property-grid .property-features{
    width:auto;
    min-height:48px;
    justify-content:flex-start;
    margin:0 .9rem;
    padding:.6rem 0;
    border-top:1px solid var(--light-3);
    border-bottom:1px solid var(--light-3);
    gap:.4rem .7rem;
}
.home-property-grid .property-features li{font-size:.52rem}
.home-property-grid .property-price{
    width:auto;
    min-height:0;
    justify-content:flex-start;
    padding:.72rem .9rem .15rem;
    border:0;
    color:var(--primary-2);
    font-size:.78rem;
    font-weight:800;
}
.home-property-grid .property-code{
    min-height:0;
    justify-content:flex-start;
    box-sizing:border-box;
    padding:.1rem .9rem .65rem;
    color:var(--dark-5);
    font-size:.49rem;
}
.home-property-grid .property-link{box-sizing:border-box;justify-content:flex-start;padding:0 .9rem .9rem}
.home-property-grid .property-link a{width:100%;box-sizing:border-box;text-align:center}
.home-properties-actions{display:flex;justify-content:center;padding-top:1.6rem}
.home-properties-actions a{
    display:inline-flex;
    align-items:center;
    gap:.55rem;
    min-height:44px;
    padding:.6rem 1rem;
    border:1px solid rgba(20,47,66,.16);
    border-radius:12px;
    background:#fff;
    color:var(--primary-3);
    font-size:.62rem;
    font-weight:800;
    box-shadow:0 10px 24px rgba(20,47,66,.08);
}
.home-properties-actions a:hover{border-color:var(--secondary-2);transform:translateY(-2px)}

.contact-direct-link{color:inherit;text-decoration:none;transition:color .2s ease}
.contact-direct-link:hover{color:var(--secondary-4)}
#quem-somos,#mvv,#contato{scroll-margin-top:3.5rem}

.property-breadcrumb{
    display:flex;
    align-items:center;
    gap:.42rem;
    padding-top:calc(1.5rem + 2.75rem);
    color:var(--dark-5);
    font-size:.54rem;
}
.property-breadcrumb a{color:var(--primary-3);font-weight:700}
.property-breadcrumb + .property-header h1{padding-top:.8rem}
.property-gallery-premium{
    grid-template-columns:minmax(0,2fr) repeat(2,minmax(0,1fr));
    grid-template-rows:repeat(2,minmax(190px,245px));
    gap:.65rem;
    margin:1.2rem 0 1.6rem;
}
.property-gallery-premium .gallery-item{
    aspect-ratio:auto;
    border-radius:16px;
    box-shadow:0 12px 28px rgba(20,47,66,.1);
}
.property-gallery-premium .gallery-item:first-child{grid-column:1;grid-row:1/3}
.property-gallery-premium .gallery-item:nth-child(n+6){display:none}
.property-gallery-premium.gallery-count-1{display:block}
.property-gallery-premium.gallery-count-1 .gallery-item:first-child{aspect-ratio:16/7}
.gallery-item-more::after{
    content:"";
    position:absolute;
    z-index:2;
    inset:0;
    background:linear-gradient(180deg,rgba(8,24,34,.12),rgba(8,24,34,.78));
}
.gallery-more-count{
    position:absolute;
    z-index:3;
    left:50%;
    bottom:1rem;
    width:max-content;
    max-width:calc(100% - 1rem);
    padding:.5rem .72rem;
    border:1px solid rgba(255,255,255,.35);
    border-radius:999px;
    background:rgba(8,24,34,.58);
    color:#fff;
    font-size:.57rem;
    font-weight:800;
    text-align:center;
    transform:translateX(-50%);
    backdrop-filter:blur(6px);
}
.gallery-item:focus-visible{outline:3px solid var(--secondary-3);outline-offset:3px}

.property-info-premium{
    grid-template-columns:minmax(0,1fr) minmax(310px,.42fr);
    gap:1.15rem;
    align-items:start;
}
.property-main-column{display:grid;gap:1.15rem;min-width:0}
.property-detail-card,.property-description-card,.property-conversion-card{
    box-sizing:border-box;
    border:1px solid rgba(20,47,66,.09);
    border-radius:18px;
    background:#fff;
    box-shadow:0 14px 34px rgba(20,47,66,.08);
}
.property-detail-card,.property-description-card{padding:clamp(1.15rem,2.5vw,1.6rem)}
.property-detail-card h2,.property-description-card h2{
    margin:.22rem 0 1rem;
    color:var(--primary-2);
    font-size:1rem;
    font-weight:700;
}
.property-section-eyebrow{
    display:block;
    color:var(--secondary-1);
    font-size:.5rem;
    font-weight:850;
    letter-spacing:.1em;
    text-transform:uppercase;
}
.property-detail-card .details-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.55rem;
}
.property-detail-card .details-list li{
    min-width:0;
    padding:.68rem .72rem;
    border:1px solid rgba(20,47,66,.08);
    border-radius:11px;
    background:var(--light-2);
    color:var(--dark-3);
    line-height:1.45;
    overflow-wrap:anywhere;
}
.property-detail-card .details-list li strong{display:block;margin-bottom:.12rem;color:var(--primary-3);font-size:.55rem}
.property-detail-card .details-list a{color:var(--secondary-1);font-weight:750;text-decoration:underline;text-underline-offset:3px}
.property-description-card p{color:var(--dark-3);line-height:1.75}
.property-conversion-card{
    position:sticky;
    top:4.15rem;
    padding:1.35rem;
    background:linear-gradient(160deg,#fff 62%,rgba(188,171,121,.11));
}
.property-conversion-card .property-price-highlight{margin:.35rem 0 .8rem;color:var(--primary-2);font-size:clamp(1.35rem,2vw,1.75rem);font-weight:800;line-height:1.15;white-space:nowrap}
.property-conversion-copy{color:var(--dark-5);line-height:1.55}
.property-conversion-card .property-cta{margin-top:1rem}
.property-conversion-card .btn-whatsapp{width:100%;box-sizing:border-box;border-radius:12px;box-shadow:0 12px 26px rgba(37,211,102,.2)}
.property-conversion-card .property-share{padding-top:.95rem;border-top:1px solid rgba(20,47,66,.08)}
.property-conversion-card .property-share-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem}
.property-conversion-card .btn-share{min-width:0;padding:.58rem .65rem;border-radius:10px;font-size:.52rem}
.property-conversion-card .btn-share svg{width:17px;height:17px}
.property-single{background:linear-gradient(180deg,#f8fafb,#fff)}

.content-cookie{
    left:16px;
    right:auto;
    bottom:16px;
    width:min(650px,calc(100% - 110px));
    padding:0;
    background:transparent;
    font-size:.56rem;
}
.content-cookie .container-small{
    width:100%;
    box-sizing:border-box;
    justify-content:space-between;
    padding:.62rem .7rem;
    border:1px solid rgba(255,255,255,.13);
    border-radius:14px;
    background:rgba(11,28,40,.96);
    box-shadow:0 16px 38px rgba(0,0,0,.3);
    backdrop-filter:blur(10px);
}
.content-cookie .cookie-text{line-height:1.45}
.content-cookie .cookie-btn a{width:44px;height:34px;border-radius:9px}

a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
    outline:3px solid rgba(188,171,121,.82);
    outline-offset:3px;
}

@media screen and (max-width:1100px){
    .home-property-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .property-gallery-premium{grid-template-rows:repeat(2,minmax(160px,210px))}
    .property-info-premium{grid-template-columns:minmax(0,1fr) minmax(285px,.44fr)}
}

@media screen and (max-width:820px){
    .expert-trust-strip{padding-top:1rem}
    .expert-trust-grid{grid-template-columns:1fr}
    .property-gallery-premium{
        grid-template-columns:repeat(2,minmax(0,1fr));
        grid-template-rows:auto;
    }
    .property-gallery-premium .gallery-item{aspect-ratio:1/1}
    .property-gallery-premium .gallery-item:first-child{grid-column:1/-1;grid-row:auto;aspect-ratio:16/10}
    .property-gallery-premium.gallery-count-1 .gallery-item:first-child{aspect-ratio:16/10}
    .property-info-premium{grid-template-columns:1fr}
    .property-conversion-card{position:static}
}

@media screen and (max-width:620px){
    .home-property-grid{grid-template-columns:1fr}
    .expert-trust-item{min-height:72px;padding:.76rem .82rem;border-radius:14px}
    .expert-trust-item strong{font-size:.64rem}
    .expert-trust-item small{font-size:.49rem}
    .property-breadcrumb{padding-top:calc(1.1rem + 2.75rem);font-size:.5rem;overflow-x:auto;white-space:nowrap}
    .property-gallery-premium{gap:.45rem;margin:1rem 0 1.2rem}
    .property-gallery-premium .gallery-item{border-radius:12px}
    .gallery-more-count{bottom:.55rem;font-size:.5rem}
    .property-detail-card .details-list{grid-template-columns:1fr}
    .property-detail-card,.property-description-card,.property-conversion-card{border-radius:15px}
    .property-conversion-card .property-share-actions{grid-template-columns:1fr 1fr}
    .content-cookie{left:12px;bottom:12px;width:calc(100% - 96px);font-size:.49rem}
    .content-cookie .container-small{padding:.52rem .58rem;border-radius:12px}
    .content-cookie .cookie-text{margin-right:.45rem}
    .content-cookie .cookie-btn a{width:38px;height:32px}
}

@media (prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    *,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
    .scroll-reveal{opacity:1!important;transform:none!important}
}

/* Páginas institucionais e legais */
.footer-legal-links{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:.35rem .85rem;margin:.45rem 0 .15rem}
.footer-legal-links a{font-size:.52rem;text-decoration:underline;text-underline-offset:3px}
.legal-page{min-height:100vh;background:#f5f7f8;color:var(--dark-2)}
.legal-page a{transition:color .2s ease,background-color .2s ease,border-color .2s ease}
.legal-topbar{position:sticky;z-index:20;top:0;border-bottom:1px solid rgba(20,47,66,.09);background:rgba(255,255,255,.94);box-shadow:0 8px 24px rgba(20,47,66,.05);backdrop-filter:blur(16px)}
.legal-topbar__inner{min-height:76px;display:flex;align-items:center;justify-content:space-between;gap:1.25rem}
.legal-brand{display:flex;align-items:center;gap:.6rem;color:var(--primary-3)}
.legal-brand img{width:43px;height:43px;display:block;object-fit:contain}
.legal-brand span{display:grid;gap:.12rem}.legal-brand strong{font-size:.69rem;letter-spacing:.24em}.legal-brand small{color:var(--secondary-2);font-size:.42rem;letter-spacing:.12em}
.legal-topbar__nav{display:flex;align-items:center;gap:.4rem}
.legal-topbar__nav a{padding:.62rem .78rem;border-radius:10px;color:var(--primary-3);font-size:.61rem;font-weight:750}
.legal-topbar__nav a:hover{background:rgba(20,47,66,.06)}
.legal-topbar__nav .legal-topbar__cta{padding-inline:1rem;background:var(--primary-3);color:#fff}
.legal-topbar__nav .legal-topbar__cta:hover{background:var(--primary-1)}
.legal-hero{padding:clamp(3.6rem,8vw,6.4rem) 0 clamp(3rem,6vw,4.8rem);overflow:hidden;background:radial-gradient(circle at 82% 20%,rgba(188,171,121,.26),transparent 25%),linear-gradient(135deg,var(--primary-2),var(--primary-1));color:#fff}
.legal-hero--privacy{background:radial-gradient(circle at 18% 25%,rgba(188,171,121,.2),transparent 24%),linear-gradient(135deg,#102d40,var(--primary-1))}
.legal-hero__inner{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:2rem}
.legal-eyebrow{display:block;margin-bottom:.75rem;color:var(--secondary-5);font-size:.58rem;font-weight:850;letter-spacing:.14em;text-transform:uppercase}
.legal-hero h1{max-width:860px;margin:0 0 .75rem;font-size:clamp(2.45rem,6vw,5.2rem);line-height:.96;letter-spacing:-.055em}
.legal-hero p{max-width:720px;margin:0;color:rgba(255,255,255,.76);font-size:clamp(.76rem,1.6vw,.95rem);line-height:1.65}
.legal-version{min-width:215px;display:grid;gap:.25rem;padding:1rem 1.15rem;border:1px solid rgba(255,255,255,.16);border-radius:16px;background:rgba(255,255,255,.07);backdrop-filter:blur(10px)}
.legal-version strong{color:var(--secondary-5);font-size:.7rem}.legal-version span{color:rgba(255,255,255,.67);font-size:.56rem}
.legal-layout{display:grid;grid-template-columns:minmax(210px,.31fr) minmax(0,1fr);align-items:start;gap:clamp(1.5rem,4vw,3.5rem);padding-top:clamp(2.2rem,5vw,4.5rem);padding-bottom:clamp(3.5rem,7vw,6rem)}
.legal-summary{position:sticky;top:104px;padding:1.25rem;border:1px solid rgba(20,47,66,.09);border-radius:18px;background:linear-gradient(145deg,#fff,rgba(188,171,121,.09));box-shadow:0 14px 34px rgba(20,47,66,.07)}
.legal-summary strong{display:block;margin-bottom:.55rem;color:var(--primary-3);font-size:.78rem}
.legal-summary p{margin:0 0 1rem;color:var(--dark-4);font-size:.62rem;line-height:1.65}
.legal-summary a{display:inline-flex;padding:.58rem .78rem;border-radius:10px;background:var(--secondary-3);color:var(--primary-2);font-size:.58rem;font-weight:800}
.legal-document{min-width:0;padding:clamp(1.25rem,3vw,2.5rem);border:1px solid rgba(20,47,66,.08);border-radius:24px;background:#fff;box-shadow:0 20px 50px rgba(20,47,66,.07)}
.legal-document section{position:relative;padding:0 0 2rem 3rem;margin:0 0 2rem;border-bottom:1px solid rgba(20,47,66,.08)}
.legal-document section:last-child{padding-bottom:0;margin-bottom:0;border-bottom:0}
.legal-section-number{position:absolute;top:.1rem;left:0;color:var(--secondary-2);font-size:.62rem;font-weight:900;letter-spacing:.08em}
.legal-document h2{margin:0 0 .75rem;color:var(--primary-2);font-size:clamp(.95rem,2vw,1.25rem);line-height:1.25}
.legal-document p,.legal-document li{color:#435661;font-size:.68rem;line-height:1.78}
.legal-document p{margin:.6rem 0}.legal-document p:last-child{margin-bottom:0}
.legal-document ul{display:grid;gap:.46rem;margin:.8rem 0;padding-left:1.15rem;list-style:disc}
.legal-document strong{color:var(--primary-3)}
.legal-document a{color:#8c6a19;font-weight:750;text-decoration:underline;text-underline-offset:3px}
.legal-footer{padding:1.2rem 0;background:var(--primary-2);color:rgba(255,255,255,.7)}
.legal-footer .container-small{display:flex;align-items:center;justify-content:space-between;gap:1rem;font-size:.55rem}
.legal-footer nav{display:flex;flex-wrap:wrap;gap:.4rem 1rem}.legal-footer a{color:var(--secondary-5);text-decoration:underline;text-underline-offset:3px}
@media screen and (max-width:820px){
    .legal-topbar__inner{min-height:68px}.legal-brand img{width:38px;height:38px}.legal-brand strong{font-size:.62rem}.legal-brand small{font-size:.38rem}.legal-topbar__nav>a:not(.legal-topbar__cta){display:none}
    .legal-hero__inner{grid-template-columns:1fr}.legal-version{min-width:0;width:min(320px,100%);box-sizing:border-box}
    .legal-layout{grid-template-columns:1fr}.legal-summary{position:static}
}
@media screen and (max-width:560px){
    .legal-topbar__nav .legal-topbar__cta{padding:.54rem .7rem;font-size:.54rem}.legal-hero h1{font-size:2.55rem}
    .legal-document{padding:1.15rem;border-radius:18px}.legal-document section{padding-left:0;padding-top:1.55rem}.legal-section-number{top:0}
    .legal-footer .container-small{align-items:flex-start;flex-direction:column}
}
