/* Reset css */
* { margin:0; padding:0 }
img { border:none }
fieldset { border:none }
a { outline:none; text-decoration:none}
a:hover { text-decoration:underline}
ul li, ol li { list-style-type:none }
address { font-style:normal; display:block }
h1, h2, h3, h4, h5, h6{ padding:0; margin:0; font-size:inherit; font-weight:normal }
textarea{font-family:inherit; font-size:inherit; overflow:auto}
input[type="search"] {
    -webkit-appearance: textfield;
}
/* fim reset */

* {
    box-sizing: border-box;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-size:11px;
    color:#666;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


:root{
    --color1: #095e83;
    --darkcolor1: #023951;
    --color2: #38b0c8;
    --darkcolor2: #037E95;
    --textcolor: #737373;
    --ink: #102938;
    --muted: #61727b;
    --line: #dce8ed;
    --soft: #eef7fa;
    --white: #ffffff;
}

/* Editor de texto */
.html-text{word-break: break-word;font-family: 'Open Sans', sans-serif;}
.html-text::after{content: " ";display: table;clear: both;}
.html-text .wrapper{padding: 0 10px;}
.html-text{font-size: 16px;line-height: 26px; color: var(--textcolor);}
.html-text h1,
.html-text h2,
.html-text h3,
.html-text h4,
.html-text h5{margin-bottom: 25px;letter-spacing: -.60px;color: var(--color1);}
.html-text p{margin-bottom: 15px;font-size: 16px;line-height: 1.8;}
.html-text p:last-child{margin: 0;}
.html-text a{-webkit-transition:all 0.1s ease-out;transition: all 0.1s ease-out;color: var(--color1);}
.html-text a:hover{}
.html-text img{max-width: 100%;height: auto !important;}
.html-text iframe{max-width: 100%;}
.html-text table{margin-left: auto;margin-right: auto;border: 0;border-collapse: collapse;}
.html-text table tbody tr:nth-child(even){background-color: #f2f2f2;}
.html-text table td{vertical-align: top;}
.html-text h1{font-size: 38px;line-height: 44px;color: var(--color1);}
.html-text h2{font-size: 28px;line-height: 36px;color: var(--color1);}
.html-text ul,
.html-text ol{padding-left: 25px;}
.html-text ul li,
.html-text ol li{list-style-type: square;font-size: 16px;line-height: 1.8;margin-bottom: 10px;}
@media(max-width: 1023px){
    .html-text table{width: 100% !important;}
    .html-text table td{display: block;}
}
/* Fim Editor de texto */


.botao{font-size:1px; text-indent:-9999px; display:block;}
.clear{clear:both;}
.clearfix::after{content: " ";display: table;clear: both;}

.center{max-width: 1170px;width: 100%; margin: 0 auto;}

/* Home */
.home-page{
    min-height: 100vh;
    overflow-x: clip;
    color: var(--ink);
    font-size: 16px;
    background: #f6fafc;
}

.home-page a:hover{
    text-decoration: none;
}

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 74px;
    padding: 12px clamp(16px, 4vw, 48px);
    border-bottom: 1px solid rgba(255,255,255,.26);
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 30px rgba(2,57,81,.08);
    backdrop-filter: blur(16px);
}

.site-header__brand{
    display: flex;
    align-items: center;
    width: 154px;
    height: 48px;
    overflow: hidden;
}

.site-header__brand img{
    width: 150px;
    height: auto;
    transform: translateY(-20px);
}

.site-header__nav{
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 32px);
}

.site-header__nav a,
.site-header__cta{
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.site-header__nav a{
    position: relative;
    padding: 10px 0;
}

.site-header__nav a::after{
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0;
    height: 2px;
    content: "";
    background: var(--color2);
    transition: width .2s ease;
}

.site-header__nav a:hover::after{
    width: 100%;
}

.site-header__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--color1);
    border-radius: 6px;
    color: var(--color1);
    background: #fff;
}

.home-hero{
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding: 110px 20px 54px;
    background:
        linear-gradient(100deg, rgba(246,250,252,.99) 0%, rgba(246,250,252,.96) 42%, rgba(246,250,252,.62) 68%, rgba(246,250,252,.34) 100%),
        url("../images/home-hero-regional.jpg") center right / cover no-repeat;
}

.home-hero::after{
    position: absolute;
    right: clamp(18px, 7vw, 96px);
    bottom: 42px;
    width: min(36vw, 460px);
    height: min(38vw, 430px);
    content: "";
    border: 1px solid rgba(9,94,131,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), 0 28px 70px rgba(2,57,81,.12);
    pointer-events: none;
}

.home-hero__content{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(440px, 1fr);
    gap: 36px;
    align-items: end;
}

.home-hero__copy{
    padding-bottom: 18px;
}

.home-eyebrow,
.section-heading span,
.property-card__type,
.category-card span{
    display: inline-flex;
    align-items: center;
    margin-bottom: 13px;
    color: var(--color1);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-hero h1{
    max-width: 620px;
    color: var(--ink);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    line-height: .98;
}

.home-hero p,
.home-section p{
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.home-hero p{
    margin-top: 22px;
}

.property-search{
    border: 1px solid rgba(9,94,131,.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(2,57,81,.16);
}

.property-search__tabs{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
}

.property-search__tabs button{
    min-height: 54px;
    border: 0;
    border-right: 1px solid var(--line);
    color: var(--muted);
    background: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
}

.property-search__tabs button:last-child{
    border-right: 0;
}

.property-search__tabs .is-active{
    color: var(--color1);
    box-shadow: inset 0 -3px 0 var(--color2);
}

.property-search__grid{
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr .7fr auto;
    gap: 10px;
    padding: 16px;
}

.search-field{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 68px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fbfdfe;
}

.search-field span{
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.search-field input,
.search-field select{
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
}

.search-field input::placeholder{
    color: #8a9ba3;
    opacity: 1;
}

.property-search__submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 166px;
    min-height: 68px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--color1);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}

.property-search__submit:hover{
    background: var(--darkcolor1);
    transform: translateY(-1px);
}

.icon-search{
    position: relative;
    width: 17px;
    height: 17px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.icon-search::after{
    position: absolute;
    right: -7px;
    bottom: -4px;
    width: 8px;
    height: 2px;
    content: "";
    background: currentColor;
    transform: rotate(45deg);
}

.property-search__quick{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 16px;
}

.property-search__quick a{
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #cfe2e9;
    border-radius: 999px;
    color: var(--color1);
    background: #f4fbfd;
    font-size: 13px;
    font-weight: 700;
}

.home-section{
    padding: clamp(54px, 8vw, 96px) 20px;
}

.home-section--featured{
    background: #fff;
    margin-top: clamp(32px, 5vw, 64px);
}

.section-heading{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 24px;
    align-items: end;
    margin-bottom: 28px;
}

.section-heading span{
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.section-heading h2,
.home-section h2{
    max-width: 720px;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.08;
}

.section-heading a{
    color: var(--color1);
    font-size: 14px;
    font-weight: 800;
}

.property-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.property-card{
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(2,57,81,.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.property-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(2,57,81,.13);
}

.property-card__media{
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 0;
    background: #d8edf3;
}

.property-card__media img{
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.property-card__media::after{
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    content: "";
    background: linear-gradient(180deg, rgba(2,57,81,0), rgba(2,57,81,.42));
    pointer-events: none;
}

.property-card:hover .property-card__media img{
    transform: scale(1.035);
}

.property-tag,
.property-photo-count{
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.property-tag{
    top: 12px;
    left: 12px;
    color: #fff;
    background: var(--color1);
}

.property-photo-count{
    right: 12px;
    bottom: 12px;
    color: var(--ink);
    background: rgba(255,255,255,.88);
}

.property-card__body{
    padding: 18px;
}

.property-card__type{
    margin-bottom: 6px;
}

.property-card h3{
    min-height: 54px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.property-card__address{
    margin: 9px 0 12px;
    color: var(--muted);
    font-size: 14px;
}

.property-card strong{
    display: block;
    margin-bottom: 14px;
    color: var(--color1);
    font-size: 21px;
    font-weight: 800;
}

.property-meta{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.property-meta li{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--muted);
    background: #fbfdfe;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.property-card__value-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.property-card__value-row strong{
    margin: 0;
}

.property-card__cta{
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--color1);
    border-radius: 999px;
    color: #fff;
    background: var(--color1);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.property-card__cta:hover{
    border-color: var(--darkcolor1);
    color: #fff;
    background: var(--darkcolor1);
    transform: translateY(-1px);
}

.property-card__cta .bi{
    font-size: 14px;
    line-height: 1;
}

.home-section--split{
    background: var(--soft);
}

.split-grid{
    display: grid;
    grid-template-columns: .85fr 1fr;
    gap: 42px;
    align-items: start;
}

.trust-list{
    display: grid;
    gap: 12px;
}

.trust-list article{
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 6px 18px;
    padding: 20px;
    border: 1px solid #cfe2e9;
    border-radius: 8px;
    background: #fff;
}

.trust-list span{
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--color1);
    background: #e3f5f9;
    font-weight: 800;
}

.trust-list h3{
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
}

.trust-list p{
    font-size: 15px;
}

.compact-sections{
    padding-top: 28px;
    background: #fff;
}

.category-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.category-card{
    min-height: 164px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fbfdfe;
}

.category-card strong{
    display: block;
    font-size: 20px;
    line-height: 1.35;
}

.owner-cta{
    padding-top: 28px;
    background: #fff;
}

.owner-cta__box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(24px, 5vw, 46px);
    border: 1px solid rgba(9,94,131,.2);
    border-radius: 8px;
    background:
        linear-gradient(110deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
        linear-gradient(135deg, rgba(9,94,131,.12), rgba(56,176,200,.26));
}

.owner-cta__box a,
.home-footer a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 6px;
    color: #fff;
    background: var(--color1);
    font-weight: 800;
    white-space: nowrap;
}

.home-footer{
    padding: 38px 20px;
    background: var(--darkcolor1);
}

.home-footer__grid{
    display: grid;
    grid-template-columns: 170px 1fr auto;
    gap: 22px;
    align-items: center;
}

.home-footer img{
    width: 160px;
    height: auto;
    filter: brightness(1.5);
}

.home-footer p{
    color: rgba(255,255,255,.76);
    font-size: 15px;
    line-height: 1.5;
}

.home-footer a{
    background: var(--color2);
}

@media(max-width: 1100px){
    .site-header__nav{
        display: none;
    }

    .home-hero__content{
        grid-template-columns: 1fr;
        align-items: center;
    }

    .home-hero::after{
        opacity: .35;
    }

    .property-search{
        max-width: 760px;
    }

    .property-search__grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .search-field--wide,
    .property-search__submit{
        grid-column: 1 / -1;
    }

    .property-list,
    .category-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .split-grid{
        grid-template-columns: 1fr;
    }
}

@media(max-width: 760px){
    body{
        background: #fff;
    }

    .center{
        max-width: 100%;
    }

    .site-header{
        min-height: 66px;
        padding: 9px 14px;
    }

    .site-header__brand{
        width: 132px;
        height: 44px;
    }

    .site-header__brand img{
        width: 132px;
        transform: translateY(-17px);
    }

    .site-header__cta{
        min-height: 38px;
        padding: 0 12px;
        font-size: 12px;
    }

    .home-hero{
        align-items: start;
        min-height: 100svh;
        padding: 88px 14px 28px;
        background:
            linear-gradient(180deg, rgba(246,250,252,.98) 0%, rgba(246,250,252,.94) 48%, rgba(246,250,252,.99) 100%),
            url("../images/home-hero-regional.jpg") center top / cover no-repeat;
    }

    .home-hero::after{
        display: none;
    }

    .home-hero__content{
        gap: 22px;
    }

    .home-hero__copy{
        padding-bottom: 0;
    }

    .home-eyebrow,
    .section-heading span,
    .property-card__type,
    .category-card span{
        font-size: 11px;
    }

    .home-hero h1{
        max-width: 360px;
        font-size: 38px;
        line-height: 1.02;
    }

    .home-hero p,
    .home-section p{
        font-size: 15px;
        line-height: 1.55;
    }

    .home-hero p{
        margin-top: 14px;
    }

    .property-search{
        border-radius: 8px;
        box-shadow: 0 16px 38px rgba(2,57,81,.14);
    }

    .property-search__tabs button{
        min-height: 48px;
        font-size: 13px;
    }

    .property-search__grid{
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }

    .search-field,
    .property-search__submit{
        min-height: 58px;
    }

    .search-field{
        padding: 9px 11px;
    }

    .search-field input,
    .search-field select,
    .property-search__submit{
        font-size: 14px;
    }

    .property-search__quick{
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 12px 12px;
        -webkit-overflow-scrolling: touch;
    }

    .property-search__quick a{
        flex: 0 0 auto;
    }

    .home-section{
        padding: 46px 14px;
    }

    .section-heading{
        grid-template-columns: 1fr;
        margin-bottom: 18px;
    }

    .section-heading h2,
    .home-section h2{
        font-size: 29px;
        line-height: 1.12;
    }

    .section-heading a{
        justify-self: start;
    }

    .property-list{
        display: flex;
        gap: 16px;
        margin: 0;
        padding: 4px max(18px, calc((100vw - 340px) / 2)) 28px;
        overflow-x: auto;
        scroll-padding-inline: max(18px, calc((100vw - 340px) / 2));
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .property-card{
        flex: 0 0 min(340px, calc(100vw - 36px));
        max-width: min(340px, calc(100vw - 36px));
        scroll-snap-align: center;
    }

    .property-card__body{
        padding: 15px;
    }

    .property-card h3{
        min-height: auto;
        font-size: 18px;
    }

    .property-card strong{
        font-size: 19px;
    }

    .property-meta{
        grid-template-columns: repeat(2, 1fr);
    }

    .split-grid{
        gap: 24px;
    }

    .trust-list article{
        grid-template-columns: 42px 1fr;
        gap: 4px 13px;
        padding: 16px;
    }

    .trust-list span{
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .trust-list h3{
        font-size: 16px;
    }

    .trust-list p{
        font-size: 14px;
    }

    .compact-sections,
    .owner-cta{
        padding-top: 14px;
    }

    .category-grid{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .category-card{
        min-height: 126px;
        padding: 18px;
    }

    .category-card strong{
        font-size: 18px;
    }

    .owner-cta__box{
        display: grid;
        padding: 22px;
    }

    .owner-cta__box a{
        width: 100%;
    }

    .home-footer__grid{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-footer img{
        width: 140px;
    }

    .home-footer a{
        width: 100%;
    }
}




/* Dispositivos com tela acima de 1170px */
@media(min-width: 1170px){

}

/* Dispositivos com tela acima de 1024px */
@media(min-width: 1024px){
    .mobile{display: none !important}
    .desktop{}


}


/* Dispositivos com tela entre de 1024px e 1169px */
@media(min-width: 1024px) and (max-width: 1169px){


}


/* Dispositivos com tela abaixo de 1023px */
@media(max-width: 1023px){
    .mobile{}
    .desktop{display: none !important}

}

/* Home v2 - real estate portal UX */
.home-page{
    background: #f5f8fa;
}

.home-page .site-header{
    min-height: 96px;
    padding: 14px clamp(20px, 4vw, 64px);
    border-bottom: 1px solid #e5ebef;
    background: rgba(255,255,255,.98);
    box-shadow: 0 1px 0 rgba(16,41,56,.04);
}

.home-page .site-header__brand{
    width: 210px;
    height: 70px;
    overflow: visible;
}

.home-page .site-header__brand img{
    display: block;
    width: 210px;
    height: 70px;
    object-fit: contain;
    object-position: left center;
    transform: none;
}

.home-page .site-header__nav{
    gap: 8px;
}

.home-page .site-header__nav > a,
.home-page .nav-item > a{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 6px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
}

.home-page .nav-item > a::after{
    display: none;
}

.home-page .nav-item > a .bi{
    font-size: 12px;
    line-height: 1;
}

.home-page .site-header__nav > a:hover,
.home-page .nav-item:hover > a,
.home-page .nav-item:focus-within > a{
    background: #eef7fa;
    color: var(--color1);
}

.home-page .site-header__nav > a::after{
    display: none;
}

.nav-item{
    position: relative;
}

.nav-dropdown{
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 34px;
    width: min(760px, calc(100vw - 40px));
    padding: 34px;
    border: 1px solid #e1e8ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(16,41,56,.16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown::before{
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
    content: "";
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown div + div{
    padding-left: 30px;
    border-left: 1px solid #dfe8ed;
}

.nav-dropdown strong{
    display: block;
    margin-bottom: 14px;
    color: #0d2230;
    font-size: 22px;
    font-weight: 800;
}

.nav-dropdown a{
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 6px;
    color: #263844;
    font-size: 15px;
    font-weight: 700;
}

.nav-dropdown a:hover{
    background: #f4f8fa;
    color: var(--color1);
}

.nav-dropdown--compact{
    left: 0;
    grid-template-columns: 1fr;
    gap: 2px;
    width: 290px;
    padding: 12px;
    transform: translate(0, 8px);
}
.nav-dropdown--compact a{ min-height: 38px; }

.nav-item:hover .nav-dropdown--compact,
.nav-item:focus-within .nav-dropdown--compact{
    transform: translate(0, 0);
}

.home-page .site-header__cta{
    min-height: 48px;
    padding: 0 22px;
    border-radius: 6px;
    font-size: 15px;
}

.home-page .home-hero{
    display: block;
    min-height: 100svh;
    padding: 96px 0 0;
    background: #fff;
}

.home-page .home-hero::after{
    display: none;
}

.home-hero__visual{
    position: absolute;
    top: 96px;
    left: 0;
    bottom: 0;
    width: 52%;
    min-height: calc(100svh - 96px);
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 46%, rgba(255,255,255,1) 100%),
        url("../images/home-hero-regional.jpg") center / cover no-repeat;
    opacity: .72;
}

.home-page .home-hero__content{
    position: relative;
    display: grid;
    grid-template-columns: minmax(330px, 1fr) minmax(420px, 540px);
    gap: 56px;
    align-items: center;
    min-height: calc(100svh - 96px);
    padding: clamp(28px, 5vw, 58px) 20px 42px;
}

.home-hero__intro{
    display: grid;
    gap: 0;
    align-content: center;
    max-width: 680px;
    padding: clamp(24px, 4vw, 46px);
    border-radius: 12px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 18px 52px rgba(16,41,56,.08);
    backdrop-filter: blur(2px);
}

.hero-search-panel{
    align-self: start;
    justify-self: end;
    width: 100%;
    max-width: 540px;
    padding: 0;
}

.hero-search-panel__switch{
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 34px;
    padding: 5px;
    border-radius: 999px;
    background: #eef0f2;
}

.hero-search-panel__switch button,
.hero-search-panel__switch a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    color: #172b38;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.hero-search-panel__switch .is-active{
    background: #fff;
    box-shadow: 0 1px 5px rgba(16,41,56,.08);
}

.home-page .home-hero__copy{
    padding-bottom: 0;
}

.home-page .home-eyebrow{
    color: var(--color1);
}

.home-page .home-hero h1{
    max-width: 520px;
    color: #061722;
    font-size: clamp(42px, 4.6vw, 54px);
    line-height: 1.04;
    letter-spacing: 0;
}

.home-page .home-hero p{
    max-width: 500px;
    color: #5f6f79;
    font-size: 18px;
    line-height: 1.6;
}

.home-page .property-search{
    display: grid;
    gap: 12px;
    max-width: 520px;
    padding: 18px;
    border: 1px solid #dce6eb;
    border-radius: 12px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 46px rgba(16,41,56,.12);
}

.property-search__mode{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #d9e2e7;
}

.property-search__mode button{
    min-height: 46px;
    border: 0;
    color: #63737c;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
}

.property-search__mode .is-active{
    color: var(--color1);
    box-shadow: inset 0 -3px 0 var(--color2);
}

.home-page .search-field{
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0 12px;
    min-height: 74px;
    padding: 14px 15px;
    border: 1px solid #d8e1e7;
    border-radius: 8px;
    background: #fff;
}

.home-page .search-field--compact{
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 0 9px;
    min-height: 68px;
}

.home-page .search-field--compact .search-field__label,
.home-page .search-field--compact select{
    grid-column: 2;
}

.compact-field-icon{
    grid-row: span 2;
    align-self: center;
    color: var(--color1);
    font-size: 19px;
    line-height: 1;
}

.search-field__label{
    display: block;
    margin: 0 0 8px;
    color: #142938;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.home-page .search-field input,
.home-page .search-field select{
    color: #667782;
    font-size: 15px;
    font-weight: 700;
}

.home-page .search-field input,
.home-page .search-field select,
.home-page .search-field .search-field__label{
    grid-column: 2;
}

.field-icon,
.meta-icon,
.type-icon{
    position: relative;
    display: inline-block;
    color: var(--color1);
}

.field-icon{
    grid-row: span 2;
    align-self: center;
    width: 24px;
    height: 24px;
    margin: 0;
    font-size: 0;
    letter-spacing: 0;
    text-transform: none;
}

.field-icon--pin{
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.field-icon--pin::after{
    position: absolute;
    top: 6px;
    left: 6px;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: currentColor;
}

.field-icon--home::before{
    position: absolute;
    left: 2px;
    top: 8px;
    width: 18px;
    height: 14px;
    content: "";
    border: 2px solid currentColor;
    border-top: 0;
}

.field-icon--home::after{
    position: absolute;
    left: 3px;
    top: 2px;
    width: 15px;
    height: 15px;
    content: "";
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: rotate(45deg);
}

.field-icon--money::before{
    position: absolute;
    inset: 4px 1px;
    content: "";
    border: 2px solid currentColor;
    border-radius: 3px;
}

.field-icon--money::after{
    position: absolute;
    top: 9px;
    left: 9px;
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 50%;
    background: currentColor;
}

.field-icon--type::before{
    position: absolute;
    inset: 3px;
    content: "";
    border: 2px solid currentColor;
    border-radius: 4px;
}

.field-icon--type::after{
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    content: "";
    background: currentColor;
}

.property-search__row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.property-search__row--three{
    grid-template-columns: repeat(3, 1fr);
}

.home-page .property-search__submit{
    width: 100%;
    min-height: 60px;
    border-radius: 999px;
    background: var(--color1);
    font-size: 17px;
}

.region-strip{
    padding: 18px 20px;
    border-top: 1px solid #e3eaef;
    border-bottom: 1px solid #e3eaef;
    background: #fff;
}

.region-strip__grid{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.region-strip__grid a{
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #d7e4eb;
    border-radius: 999px;
    color: #244456;
    background: #f8fbfc;
    font-size: 14px;
    font-weight: 800;
}

.meta-icon{
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-right: 5px;
}

.meta-icon--bed::before{
    position: absolute;
    left: 1px;
    bottom: 3px;
    width: 15px;
    height: 8px;
    content: "";
    border: 2px solid currentColor;
    border-radius: 2px;
}

.meta-icon--bed::after{
    position: absolute;
    left: 1px;
    bottom: 11px;
    width: 5px;
    height: 5px;
    content: "";
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 2px 2px 0 0;
}

.meta-icon--bath::before{
    position: absolute;
    left: 1px;
    bottom: 3px;
    width: 15px;
    height: 8px;
    content: "";
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 7px 7px;
}

.meta-icon--bath::after{
    position: absolute;
    right: 0;
    top: 2px;
    width: 6px;
    height: 6px;
    content: "";
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-radius: 0 5px 0 0;
}

.meta-icon--car::before{
    position: absolute;
    left: 1px;
    top: 6px;
    width: 15px;
    height: 8px;
    content: "";
    border: 2px solid currentColor;
    border-radius: 4px;
}

.meta-icon--car::after{
    position: absolute;
    left: 4px;
    bottom: 0;
    width: 3px;
    height: 3px;
    content: "";
    border-radius: 50%;
    background: currentColor;
    box-shadow: 7px 0 0 currentColor;
}

.meta-icon--area::before{
    position: absolute;
    inset: 2px;
    content: "";
    border: 2px solid currentColor;
    border-radius: 2px;
}

.meta-icon--area::after{
    position: absolute;
    top: 4px;
    right: 4px;
    width: 5px;
    height: 5px;
    content: "";
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.home-page .property-meta li{
    justify-content: flex-start;
    padding: 0 8px;
    font-size: 12px;
}

.home-page .property-card__body{
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 250px;
}

.home-page .property-card h3{
    min-height: 50px;
}

.home-page .property-card strong{
    margin-top: auto;
}

.home-page .property-meta{
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.home-page .property-meta::-webkit-scrollbar{
    width: 0;
    height: 0;
    display: none;
}

.home-page .property-meta li{
    flex: 0 0 auto;
    min-width: 0;
    min-height: 38px;
    padding: 0 10px;
    overflow: visible;
    line-height: 1.2;
    white-space: nowrap;
}

.home-page .property-meta .meta-icon{
    flex: 0 0 auto;
}

.type-section,
.blog-section,
.faq-section{
    background: #fff;
}

.type-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.type-grid a{
    display: grid;
    min-height: 178px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fbfdfe;
}

.type-grid strong{
    margin-top: 20px;
    font-size: 20px;
    font-weight: 800;
}

.type-grid small{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.type-icon{
    width: 36px;
    height: 36px;
}

.type-icon::before,
.type-icon::after{
    position: absolute;
    content: "";
    border: 2px solid currentColor;
}

.type-icon--apartment::before{
    inset: 2px 8px;
    border-radius: 2px;
}

.type-icon--apartment::after{
    left: 13px;
    top: 8px;
    width: 2px;
    height: 2px;
    background: currentColor;
    box-shadow: 8px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor, 0 16px 0 currentColor, 8px 16px 0 currentColor;
}

.type-icon--house::before{
    left: 7px;
    bottom: 4px;
    width: 22px;
    height: 18px;
    border-top: 0;
}

.type-icon--house::after{
    left: 8px;
    top: 4px;
    width: 19px;
    height: 19px;
    border-right: 0;
    border-bottom: 0;
    transform: rotate(45deg);
}

.type-icon--land::before{
    inset: 5px;
    border-radius: 4px;
}

.type-icon--land::after{
    left: 11px;
    top: 11px;
    width: 12px;
    height: 12px;
    border-left: 0;
    border-bottom: 0;
}

.type-icon--store::before{
    left: 4px;
    right: 4px;
    bottom: 5px;
    height: 18px;
}

.type-icon--store::after{
    left: 4px;
    top: 5px;
    width: 28px;
    height: 8px;
    background: rgba(56,176,200,.18);
}

.blog-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.blog-grid article{
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfc;
}

.blog-grid span{
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color1);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-grid h3{
    min-height: 90px;
    color: var(--ink);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.28;
}

.blog-grid a{
    color: var(--color1);
    font-size: 14px;
    font-weight: 800;
}

.faq-grid{
    display: grid;
    grid-template-columns: .45fr 1fr;
    gap: 44px;
}

.faq-list{
    display: grid;
    gap: 10px;
}

.faq-list details{
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.faq-list summary{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 18px;
    color: var(--ink);
    cursor: pointer;
    font-size: 17px;
    font-weight: 800;
}

.faq-list summary::-webkit-details-marker{
    display: none;
}

.faq-list summary::after{
    width: 9px;
    height: 9px;
    content: "";
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.faq-list details[open] summary::after{
    transform: rotate(225deg);
}

.faq-list p{
    padding: 0 18px 18px;
    font-size: 15px;
}

@media(max-width: 1180px){
    .home-page .site-header__nav{
        display: none;
    }

    .home-page .home-hero__content{
        grid-template-columns: minmax(300px, 1fr) minmax(390px, 520px);
        gap: 28px;
    }

    .type-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 900px){
    .home-page .home-hero{
        padding-top: 78px;
    }

    .home-hero__visual{
        top: 78px;
        width: 100%;
        height: 310px;
        min-height: 0;
        opacity: .72;
    }

    .home-page .site-header{
        min-height: 78px;
        padding: 8px 14px;
    }

    .home-page .site-header__brand{
        width: 156px;
        height: 58px;
    }

    .home-page .site-header__brand img{
        width: 156px;
        height: 58px;
    }

    .home-page .site-header__cta{
        min-height: 40px;
        padding: 0 12px;
        font-size: 12px;
    }

    .home-page .home-hero__content{
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 28px 14px 36px;
    }

    .home-hero__intro{
        padding: 24px;
        background: rgba(255,255,255,.88);
    }

    .hero-search-panel{
        max-width: 560px;
        justify-self: stretch;
    }

    .hero-search-panel__switch{
        margin-top: 0;
        margin-bottom: 22px;
    }

    .home-page .home-hero h1{
        max-width: 460px;
        font-size: 40px;
    }

    .home-page .home-hero p{
        font-size: 16px;
    }

    .property-search__row,
    .property-search__row--three,
    .faq-grid{
        grid-template-columns: 1fr;
    }

    .blog-grid{
        grid-template-columns: 1fr;
    }
}

@media(max-width: 620px){
    .home-page .site-header__brand{
        width: 136px;
    }

    .home-page .site-header__brand img{
        width: 136px;
    }

    .home-page .site-header__cta{
        max-width: 132px;
        text-align: center;
        line-height: 1.15;
    }

    .hero-search-panel__switch{
        width: 100%;
    }

    .hero-search-panel__switch button,
    .hero-search-panel__switch a{
        min-height: 44px;
        padding: 0 12px;
        font-size: 13px;
    }

    .home-page .home-hero h1{
        font-size: 34px;
    }

    .home-page .home-hero__copy{
        padding-bottom: 16px;
    }

    .home-hero__intro{
        padding: 18px;
        box-shadow: 0 12px 32px rgba(16,41,56,.08);
    }

    .home-page .property-search{
        max-width: none;
    }

    .property-search__mode button{
        font-size: 13px;
    }

    .home-page .search-field{
        grid-template-columns: 28px 1fr;
        min-height: 72px;
        padding: 13px 14px;
    }

    .home-page .search-field--compact{
        min-height: 66px;
    }

    .search-field__label{
        font-size: 14px;
    }

    .field-icon{
        width: 21px;
        height: 21px;
    }

    .region-strip{
        padding: 12px 14px;
    }

    .region-strip__grid{
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
    }

    .region-strip__grid a{
        flex: 0 0 auto;
    }

    .type-grid{
        grid-template-columns: 1fr;
    }

    .type-grid a{
        min-height: 142px;
    }

    .blog-grid h3{
        min-height: auto;
        font-size: 19px;
    }
}

/* Home v2 refinements */
.home-page .property-search,
.home-page .property-search *{
    min-width: 0;
}

.home-page .property-search{
    overflow: visible;
}

.home-page .property-search__row{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .property-search__row--three{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .search-field{
    overflow: hidden;
}

.home-page .search-field input,
.home-page .search-field select{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-page .field-icon,
.home-page .meta-icon,
.home-page .type-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
    line-height: 1;
}

.home-page .field-icon{
    font-size: 24px;
}

.home-page .meta-icon{
    width: 18px;
    height: 18px;
    margin-right: 6px;
    font-size: 16px;
}

.home-page .type-icon{
    position: static;
    width: 42px;
    height: 42px;
    font-size: 36px;
}

.home-page .type-icon::before,
.home-page .type-icon::after{
    position: static;
    border: 0;
    background: none;
    box-shadow: none;
    transform: none;
}

.home-page .property-tag{
    max-width: calc(100% - 24px);
}

@media(max-width: 900px){
    .home-page .property-search__row,
    .home-page .property-search__row--three{
        grid-template-columns: 1fr;
    }
}

/* Blog cards */
.home-page .blog-section{
    background: #fff;
}

.home-page .blog-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-page .blog-grid article,
.blog-page .blog-grid article{
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    min-height: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(16,41,56,.08);
}

.blog-card__media{
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8f2f5;
}

.blog-card__media img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-page .blog-grid article:hover .blog-card__media img,
.blog-page .blog-grid article:hover .blog-card__media img{
    transform: scale(1.035);
}

.blog-card__body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 250px;
    padding: 22px;
}

.blog-card__meta{
    width: 100%;
}

.blog-card__desc{
    margin: 0;
    color: var(--muted, #5b7482);
    font-size: 14px;
    line-height: 1.55;
}

.blog-card__meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.home-page .blog-card__meta span,
.blog-page .blog-card__meta span{
    display: inline-flex;
    margin: 0;
    color: var(--color1);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-card__meta time,
.blog-card__info{
    color: #7a8b94;
    font-size: 13px;
    font-weight: 700;
}

.blog-card__info{
    margin-bottom: 16px;
}

.home-page .blog-grid h3,
.blog-page .blog-grid h3{
    min-height: 0;
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.28;
}

.home-page .blog-card__link,
.blog-page .blog-card__link{
    align-self: flex-start;
    margin-top: auto;
    padding-top: 18px;
    color: var(--color1);
    font-size: 14px;
    font-weight: 800;
}

@media(max-width: 980px){
    .home-page .blog-grid{
        grid-template-columns: 1fr;
    }

    .blog-card__body{
        min-height: 0;
    }

}

@media(max-width: 620px){
    .blog-card__body{
        padding: 18px;
    }

    .property-card__media{
        aspect-ratio: 4 / 3;
    }

    .blog-card__media{
        aspect-ratio: 16 / 9;
    }

    .blog-card__meta{
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}

/* Property carousel with per-card image gallery */
.property-carousel__wrapper{
    position: relative;
}

.home-page .property-list{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(360px, 400px);
    grid-template-columns: none;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 16px 6px 28px;
    margin: -12px -6px -18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.home-page .property-list::-webkit-scrollbar{
    width: 0;
    height: 0;
    display: none;
}

.home-page .property-card{
    display: flex;
    flex-direction: column;
    overflow: visible;
    scroll-snap-align: start;
}

.property-card__media-wrapper{
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #d8edf3;
}

.property-card__slides{
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .32s ease;
}

.property-card__slide-link{
    position: relative;
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.property-card__slide-link img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-card__media-wrapper::after{
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    content: "";
    background: linear-gradient(180deg, rgba(2,57,81,0), rgba(2,57,81,.46));
    pointer-events: none;
}

.property-card__arrow,
.property-carousel__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8e2e8;
    border-radius: 50%;
    color: var(--color1);
    background: rgba(255,255,255,.94);
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(16,41,56,.16);
}

.property-card__arrow{
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
}

.property-card__arrow--prev{
    left: 12px;
}

.property-card__arrow--next{
    right: 12px;
}

.property-card__dots{
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 3;
    display: flex;
    gap: 5px;
    transform: translateX(-50%);
}

.property-card__dot{
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.58);
}

.property-card__dot.is-active{
    background: #fff;
}

.property-carousel__controls{
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}

.property-carousel__btn{
    width: 48px;
    height: 48px;
    font-size: 18px;
}

.property-carousel__btn:disabled,
.property-card__arrow:disabled{
    color: #9fb1bb;
    background: #edf2f5;
    cursor: default;
    box-shadow: none;
}

@media(max-width: 760px){
    .home-page .property-list{
        display: flex;
        gap: 16px;
        margin: 0;
        margin-bottom: -18px;
        padding: 4px 18px 28px;
        scroll-padding-inline: 18px;
        scroll-snap-type: x mandatory;
    }

    .home-page .property-card{
        flex: 0 0 min(340px, calc(100vw - 64px));
        max-width: min(340px, calc(100vw - 64px));
        scroll-snap-align: center;
    }

    .property-card__media-wrapper{
        aspect-ratio: 4 / 3;
    }

    .property-card__arrow{
        width: 34px;
        height: 34px;
    }

    .property-carousel__controls{
        display: none;
    }
}

@media(max-width: 420px){
    .home-page .property-list{
        padding-right: 18px;
        padding-left: 18px;
        scroll-padding-inline: 18px;
    }

    .home-page .property-card{
        flex-basis: calc(100vw - 64px);
        max-width: calc(100vw - 64px);
    }
}

/* Footer and closing CTA */
.footer-cta{
    position: relative;
    padding: clamp(54px, 8vw, 92px) 20px;
    background:
        linear-gradient(100deg, rgba(2,57,81,.96) 0%, rgba(9,94,131,.88) 46%, rgba(9,94,131,.55) 100%),
        url("../images/imovel-casa-contemporanea.jpg") center / cover no-repeat;
    overflow: hidden;
}

.footer-cta::after{
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(2,57,81,.24), rgba(2,57,81,.08));
    pointer-events: none;
}

.footer-cta__grid{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
}

.footer-cta .home-eyebrow,
.footer-cta h2,
.footer-cta p{
    color: #fff;
}

.footer-cta h2{
    max-width: 720px;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.04;
}

.footer-cta p{
    max-width: 650px;
    margin-top: 14px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.65;
}

.footer-cta__actions{
    display: grid;
    gap: 8px;
    min-width: 280px;
}

.footer-cta__actions a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.footer-cta__primary{
    color: var(--darkcolor1);
    background: #fff;
}

.footer-cta__secondary{
    border: 1px solid rgba(255,255,255,.42);
    color: #fff;
    background: rgba(255,255,255,.08);
}

.home-page .home-footer{
    padding: 0 20px;
    background: #071f2d;
}

.footer-main{
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(34px, 6vw, 78px);
    padding: 54px 0 42px;
}

.footer-brand img{
    width: 190px;
    height: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-brand p{
    color: rgba(255,255,255,.74);
    font-size: 15px;
    line-height: 1.6;
}

.footer-social{
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    color: #fff;
    background: rgba(255,255,255,.06);
    font-size: 18px;
}

.footer-links{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.footer-links div{
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links strong{
    margin-bottom: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.footer-links a,
.footer-links span{
    display: inline;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    white-space: normal;
}

.footer-links a:hover{
    color: #fff;
}

.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom p,
.footer-bottom a{
    display: inline;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    font-weight: 600;
}

.footer-bottom div{
    display: flex;
    gap: 18px;
}

@media(max-width: 980px){
    .footer-cta__grid,
    .footer-main{
        grid-template-columns: 1fr;
    }

    .footer-cta__actions{
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-links{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 620px){
    .footer-cta{
        padding: 44px 14px;
    }

    .footer-cta__grid{
        gap: 24px;
    }

    .footer-cta h2{
        font-size: 31px;
    }

    .footer-cta__actions{
        grid-template-columns: 1fr;
    }

    .home-page .home-footer{
        padding: 0 14px;
    }

    .footer-main{
        gap: 28px;
        padding: 42px 0 30px;
    }

    .footer-links{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom{
        display: grid;
        gap: 12px;
    }

    .footer-bottom div{
        display: grid;
        gap: 8px;
    }
}

/* Hero entrance */
.home-page .home-hero{
    position: relative;
    min-height: 100svh;
    padding: 96px 0 0;
    overflow: hidden;
    isolation: isolate;
    background: #edf4f7;
}

.home-page .home-hero__visual{
    position: absolute;
    inset: 96px 0 0;
    z-index: 0;
    width: 100%;
    min-height: calc(100svh - 96px);
    background:
        linear-gradient(90deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,.08) 46%, rgba(255,255,255,0) 100%),
        linear-gradient(180deg, rgba(6,23,34,0) 58%, rgba(6,23,34,.12) 100%),
        url("../images/home-hero-regional.jpg") center right / cover no-repeat;
    opacity: 1;
}

.home-page .home-hero__content.center{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: calc(100svh - 96px);
    max-width: none;
    padding: clamp(24px, 3.6vw, 42px) clamp(18px, 4.8vw, 72px) 36px;
}

.home-page .hero-search-panel{
    width: min(600px, 100%);
    max-width: 600px;
    padding: clamp(24px, 2.7vw, 34px);
    border: 1px solid rgba(213,224,230,.92);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 22px 64px rgba(9,44,63,.16);
    backdrop-filter: blur(10px);
}

.home-page .hero-search-panel__switch{
    width: min(460px, 100%);
    margin: 0 0 24px;
}

.home-page .hero-search-panel__switch button,
.home-page .hero-search-panel__switch a{
    min-height: 46px;
    font-size: 14px;
}

.home-page .hero-search-panel .home-hero__copy{
    padding: 0 0 22px;
}

.home-page .hero-search-panel .home-eyebrow{
    margin-bottom: 12px;
    color: var(--color1);
}

.home-page .hero-search-panel h1{
    max-width: 520px;
    font-size: clamp(30px, 3.6vw, 34px);
    line-height: 1.06;
}

.home-page .hero-search-panel p{
    max-width: 610px;
    margin-top: 18px;
    color: #5c6d77;
}

.home-page .hero-search-panel .property-search{
    gap: 10px;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-page .hero-search-panel .search-field{
    min-height: 66px;
    padding: 12px 14px;
    border-color: #d6e1e7;
    border-radius: 10px;
}

.home-page .hero-search-panel .search-field__label{
    margin-bottom: 6px;
    font-size: 12px;
}

.home-page .hero-search-panel .field-icon{
    font-size: 22px;
}

.home-page .hero-search-panel .search-field--compact{
    min-height: 62px;
}

.home-page .hero-search-panel .property-search__submit{
    min-height: 56px;
    margin-top: 4px;
    box-shadow: 0 14px 30px rgba(9,94,131,.24);
}

@media(max-width: 1180px){
    .home-page .hero-search-panel{
        width: min(580px, 100%);
    }

    .home-page .hero-search-panel h1{
        font-size: clamp(30px, 3.6vw, 34px);
    }
}

@media(max-width: 900px){
    .home-page .home-hero{
        min-height: 0;
        padding-top: 78px;
        overflow: visible;
        background: #f5f9fb;
    }

    .home-page .home-hero__visual{
        position: relative;
        inset: auto;
        display: block;
        height: clamp(260px, 48vw, 360px);
        min-height: 0;
        background:
            linear-gradient(180deg, rgba(255,255,255,0) 45%, rgba(245,249,251,.88) 100%),
            url("../images/home-hero-regional.jpg") center / cover no-repeat;
    }

    .home-page .home-hero__content.center{
        display: block;
        min-height: 0;
        margin-top: -56px;
        padding: 0 14px 42px;
    }

    .home-page .hero-search-panel{
        max-width: 560px;
        margin: 0 auto;
        padding: 22px;
        border-radius: 14px;
        box-shadow: 0 18px 54px rgba(9,44,63,.16);
    }

    .home-page .hero-search-panel__switch{
        width: 100%;
        margin-bottom: 24px;
    }

    .home-page .hero-search-panel h1{
        max-width: 100%;
        font-size: 30px;
    }

    .home-page .hero-search-panel p{
        max-width: 100%;
        font-size: 16px;
    }

    .home-page .hero-search-panel .property-search__row,
    .home-page .hero-search-panel .property-search__row--three{
        grid-template-columns: 1fr;
    }
}

@media(max-width: 620px){
    .home-page .home-hero__visual{
        height: 245px;
        background-position: 58% center;
    }

    .home-page .home-hero__content.center{
        margin-top: -44px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .home-page .hero-search-panel{
        padding: 16px;
        border-radius: 12px;
    }

    .home-page .hero-search-panel__switch{
        margin-bottom: 20px;
        padding: 4px;
    }

    .home-page .hero-search-panel__switch button,
    .home-page .hero-search-panel__switch a{
        min-height: 44px;
        padding: 0 10px;
        font-size: 13px;
    }

    .home-page .hero-search-panel .home-hero__copy{
        padding-bottom: 20px;
    }

    .home-page .hero-search-panel h1{
        font-size: 30px;
    }

    .home-page .hero-search-panel p{
        margin-top: 14px;
        font-size: 15px;
    }

    .home-page .hero-search-panel .search-field{
        min-height: 74px;
        padding: 13px 14px;
    }

    .home-page .hero-search-panel .search-field--compact{
        min-height: 68px;
    }

}

/* Property card readability */
.home-page .property-card__body{
    min-height: 284px;
}

.home-page .property-card__value-row{
    margin-top: auto;
}

.home-page .property-card__value-row strong{
    margin: 0;
    font-size: 19px;
}

.home-page .property-card__cta{
    min-width: 116px;
}

.home-page .property-meta{
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 8px;
    min-height: 84px;
    overflow: visible;
    padding-bottom: 0;
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

.home-page .property-meta li{
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    min-height: 38px;
    justify-content: center;
    padding: 0 8px;
    white-space: normal;
}

.home-page .property-meta .meta-icon{
    flex: 0 0 auto;
}

@media(max-width: 760px){
    .home-page .property-card__body{
        min-height: 326px;
    }

    .home-page .property-card__value-row{
        display: grid;
        gap: 10px;
    }

    .home-page .property-card__value-row strong{
        font-size: 20px;
    }

    .home-page .property-card__cta{
        width: 100%;
        min-height: 44px;
        font-size: 14px;
    }
}

/* First fold balance */
@media(min-width: 901px){
    .home-page .home-hero{
        min-height: auto;
    }

    .home-page .home-hero__content.center{
        align-items: flex-start;
        min-height: 0;
        padding-top: 22px;
        padding-bottom: 24px;
    }

    .home-page .hero-search-panel{
        width: min(560px, 100%);
        max-width: 560px;
        padding: 22px;
        border-radius: 14px;
    }

    .home-page .hero-search-panel__switch{
        width: 100%;
        margin-bottom: 18px;
    }

    .home-page .hero-search-panel__switch button,
    .home-page .hero-search-panel__switch a{
        min-height: 42px;
    }

    .home-page .hero-search-panel .home-hero__copy{
        padding-bottom: 18px;
    }

    .home-page .hero-search-panel .home-eyebrow{
        margin-bottom: 10px;
        font-size: 12px;
    }

    .home-page .hero-search-panel h1{
        max-width: 480px;
        font-size: clamp(30px, 3.6vw, 34px);
        line-height: 1.07;
    }

    .home-page .hero-search-panel .property-search{
        gap: 8px;
    }

    .home-page .hero-search-panel .search-field{
        min-height: 56px;
        padding: 9px 12px;
    }

    .home-page .hero-search-panel .search-field--compact{
        min-height: 54px;
    }

    .home-page .hero-search-panel .search-field__label{
        margin-bottom: 3px;
        font-size: 11px;
    }

    .home-page .hero-search-panel .field-icon{
        font-size: 20px;
    }

    .home-page .hero-search-panel .property-search__row--three{
        display: none;
    }

    .home-page .hero-search-panel .property-search__submit{
        min-height: 50px;
        font-size: 15px;
    }

    .region-strip{
        display: none;
    }

    .region-strip__grid{
        gap: 8px;
    }

    .region-strip__grid a{
        min-height: 32px;
        padding: 0 12px;
        font-size: 13px;
    }

    .home-section--featured{
        position: relative;
        z-index: 2;
        padding-top: 24px;
    }

    .home-section--featured .section-heading{
        margin-bottom: 14px;
    }

    .home-section--featured .section-heading h2{
        font-size: clamp(27px, 3vw, 36px);
    }
}

/* Mobile property carousel final alignment */
@media(max-width: 760px){
    .home-page .home-section--featured{
        padding-right: 0;
        padding-left: 0;
    }

    .home-page .home-section--featured > .center{
        overflow: hidden;
    }

    .home-page .home-section--featured .section-heading{
        padding-right: 18px;
        padding-left: 18px;
    }

    .home-page .property-list{
        display: flex;
        gap: 16px;
        margin-right: 0;
        margin-left: 0;
        padding: 4px max(18px, calc((100vw - 340px) / 2)) 30px;
        overflow-x: auto;
        scroll-padding-inline: max(18px, calc((100vw - 340px) / 2));
        scroll-snap-type: x mandatory;
    }

    .home-page .property-card{
        flex: 0 0 min(340px, calc(100vw - 36px));
        max-width: min(340px, calc(100vw - 36px));
        scroll-snap-align: center;
    }
}

@media(max-width: 420px){
    .home-page .property-list{
        padding-right: 18px;
        padding-left: 18px;
        scroll-padding-inline: 18px;
    }

    .home-page .property-card{
        flex-basis: calc(100vw - 36px);
        max-width: calc(100vw - 36px);
    }
}

/* Responsive menu */
.home-page .site-header__menu-toggle,
.home-page .mobile-menu{
    display: none;
}

@media(max-width: 1180px){
    .home-page .site-header{
        z-index: 90;
    }

    .home-page .site-header__menu-toggle{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        border: 1px solid #d5e3ea;
        border-radius: 8px;
        color: var(--color1);
        background: #fff;
        box-shadow: 0 10px 24px rgba(16,41,56,.08);
        cursor: pointer;
        transition: border-color .18s ease, background .18s ease, color .18s ease;
    }

    .home-page .site-header__menu-toggle .bi{
        font-size: 25px;
        line-height: 1;
    }

    .home-page .site-header__menu-toggle:hover,
    .home-page .site-header__menu-toggle[aria-expanded="true"]{
        border-color: var(--color1);
        color: #fff;
        background: var(--color1);
    }

    .home-page .mobile-menu{
        position: fixed;
        inset: 0;
        z-index: 100;
        display: block;
        background: rgba(6,23,34,.38);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease;
    }

    .home-page .mobile-menu.is-open{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .home-page .mobile-menu__panel{
        display: flex;
        flex-direction: column;
        width: min(390px, calc(100vw - 24px));
        height: 100%;
        margin-left: auto;
        padding: 20px;
        border-left: 1px solid #dce8ed;
        background: #fff;
        box-shadow: -28px 0 70px rgba(6,23,34,.18);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .24s ease;
    }

    .home-page .mobile-menu.is-open .mobile-menu__panel{
        transform: translateX(0);
    }

    .home-page .mobile-menu__top{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding-bottom: 16px;
        border-bottom: 1px solid #e3edf2;
    }

    .home-page .mobile-menu__top span{
        color: var(--ink);
        font-size: 18px;
        font-weight: 900;
    }

    .home-page .mobile-menu__close{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid #d5e3ea;
        border-radius: 8px;
        color: var(--ink);
        background: #fff;
        cursor: pointer;
    }

    .home-page .mobile-menu__close .bi{
        font-size: 18px;
    }

    .home-page .mobile-menu__nav{
        display: grid;
        gap: 10px;
        padding: 18px 0;
    }

    .home-page .mobile-menu__group{
        border: 1px solid #dce8ed;
        border-radius: 8px;
        background: #f8fbfc;
        overflow: hidden;
    }

    .home-page .mobile-menu__group summary{
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 54px;
        padding: 0 16px;
        color: var(--ink);
        font-size: 15px;
        font-weight: 900;
        cursor: pointer;
        list-style: none;
    }

    .home-page .mobile-menu__group summary::-webkit-details-marker{
        display: none;
    }

    .home-page .mobile-menu__group summary .bi{
        color: var(--color1);
        font-size: 13px;
        transition: transform .18s ease;
    }

    .home-page .mobile-menu__group[open] summary .bi{
        transform: rotate(180deg);
    }

    .home-page .mobile-menu__links{
        display: grid;
        gap: 2px;
        padding: 0 10px 10px;
    }

    .home-page .mobile-menu__links a,
    .home-page .mobile-menu__link{
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 8px;
        color: #263844;
        font-size: 15px;
        font-weight: 800;
    }

    .home-page .mobile-menu__links a:hover,
    .home-page .mobile-menu__link:hover{
        color: var(--color1);
        background: #eef7fa;
    }

    .home-page .mobile-menu__link{
        border: 1px solid #dce8ed;
        background: #fff;
    }

    .home-page .mobile-menu__actions{
        display: grid;
        gap: 10px;
        margin-top: auto;
        padding-top: 18px;
        border-top: 1px solid #e3edf2;
    }

    .home-page .mobile-menu__primary,
    .home-page .mobile-menu__secondary{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-height: 50px;
        padding: 0 16px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
    }

    .home-page .mobile-menu__primary{
        color: #fff;
        background: var(--color1);
    }

    .home-page .mobile-menu__secondary{
        border: 1px solid #cfe1e9;
        color: var(--color1);
        background: #f7fbfd;
    }
}

@media(max-width: 620px){
    .home-page .site-header{
        gap: 10px;
    }

    .home-page .site-header__cta{
        display: none;
    }

    .home-page .site-header__menu-toggle{
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .home-page .mobile-menu__panel{
        width: 100%;
        padding: 18px;
        border-left: 0;
    }
}

/* Property card action at the end */
.home-page .property-card__value-row{
    display: block;
    margin-top: auto;
    margin-bottom: 12px;
}

.home-page .property-card__value-row strong{
    margin: 0;
    font-size: 20px;
}

.home-page .property-card__cta{
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin-top: 14px;
    border-radius: 999px;
    font-size: 14px;
}

@media(max-width: 760px){
    .home-page .property-card__value-row{
        display: block;
        gap: 0;
        margin-bottom: 12px;
    }

    .home-page .property-card__cta{
        margin-top: 12px;
    }
}

/* Final visual refinements */
.home-page .section-heading{
    align-items: end;
    gap: 18px;
}

.home-page .section-heading a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #d8e7ee;
    border-radius: 999px;
    background: #fff;
    color: var(--color1);
    box-shadow: 0 10px 22px rgba(16,41,56,.05);
}

.home-page .section-heading a:hover{
    border-color: var(--color1);
    background: #eef7fa;
}

.home-page .property-carousel__wrapper{
    margin-top: 4px;
}

.home-page .property-card{
    border-color: #dce8ed;
    background: linear-gradient(180deg, #fff 0%, #fbfdfe 100%);
    box-shadow: 0 16px 38px rgba(9,44,63,.08);
}

.home-page .property-card:hover{
    box-shadow: 0 22px 52px rgba(9,44,63,.14);
}

.home-page .property-card__media-wrapper{
    border-bottom: 1px solid #e2edf2;
}

.home-page .property-card__arrow{
    opacity: .92;
    transition: opacity .18s ease, transform .18s ease, background .18s ease;
}

.home-page .property-card__arrow:hover{
    opacity: 1;
    background: #fff;
    transform: translateY(-50%) scale(1.04);
}

.home-page .property-card__dots{
    padding: 5px 7px;
    border-radius: 999px;
    background: rgba(6,23,34,.26);
    backdrop-filter: blur(8px);
}

.home-page .property-card__dot{
    width: 6px;
    height: 6px;
}

.home-page .property-photo-count{
    min-height: 28px;
    color: #123244;
    background: rgba(255,255,255,.94);
    box-shadow: 0 8px 18px rgba(6,23,34,.12);
}

.home-page .property-tag{
    min-height: 28px;
    background: rgba(9,94,131,.94);
    box-shadow: 0 8px 18px rgba(6,23,34,.14);
}

.home-page .property-card__body{
    gap: 0;
    padding: 18px 18px 20px;
}

.home-page .property-card__type{
    margin-bottom: 8px;
    letter-spacing: .1em;
}

.home-page .property-card h3{
    min-height: 52px;
    font-size: 20px;
    letter-spacing: 0;
}

.home-page .property-card__address{
    display: flex;
    align-items: flex-start;
    gap: 7px;
    min-height: 42px;
    margin: 10px 0 13px;
    line-height: 1.35;
}

.home-page .property-card__address::before{
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    margin-top: 8px;
    border-radius: 50%;
    content: "";
    background: var(--color2);
}

.home-page .property-card__value-row{
    margin-top: 0;
    margin-bottom: 12px;
}

.home-page .property-card__value-row strong{
    color: #074f70;
    font-size: 21px;
    letter-spacing: 0;
}

.home-page .property-meta{
    margin-bottom: 14px;
}

.home-page .property-meta li{
    min-height: 40px;
    border-color: #dbe8ee;
    background: #fff;
    color: #5f717b;
}

.home-page .property-card__cta{
    margin-top: auto;
    box-shadow: 0 12px 24px rgba(9,94,131,.18);
}

.home-page .property-card__cta:hover{
    box-shadow: 0 14px 28px rgba(9,94,131,.22);
}

.home-page .property-carousel__controls{
    align-items: center;
    margin-top: 16px;
}

.home-page .property-carousel__btn{
    width: 46px;
    height: 46px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(16,41,56,.11);
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.home-page .property-carousel__btn:hover{
    border-color: var(--color1);
    color: #fff;
    background: var(--color1);
    transform: translateY(-2px);
}

@media(max-width: 760px){
    .home-page .section-heading{
        gap: 12px;
        margin-bottom: 16px;
    }

    .home-page .section-heading a{
        min-height: 34px;
        padding: 0 12px;
        font-size: 13px;
    }

    .home-page .property-card{
        box-shadow: 0 14px 34px rgba(9,44,63,.1);
    }

    .home-page .property-card__body{
        min-height: 318px;
        padding: 17px;
    }

    .home-page .property-card h3{
        min-height: auto;
        font-size: 19px;
        line-height: 1.24;
    }

    .home-page .property-card__address{
        min-height: auto;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .home-page .property-card__value-row{
        margin-top: 0;
        margin-bottom: 11px;
    }

    .home-page .property-card__value-row strong{
        font-size: 20px;
    }

    .home-page .property-meta{
        gap: 7px;
        margin-bottom: 12px;
    }

    .home-page .property-meta li{
        min-height: 38px;
        padding: 0 7px;
        font-size: 12px;
    }

    .home-page .property-card__cta{
        min-height: 45px;
    }
}

@media(max-width: 420px){
    .home-page .property-card__body{
        padding: 16px;
    }
}

/* Layout fit pass */
.home-page .property-list{
    grid-auto-columns: minmax(0, calc((100% - 40px) / 3));
    align-items: stretch;
    gap: 20px;
    padding-right: 0;
    padding-left: 0;
}

.home-page .property-card{
    height: 100%;
    overflow: hidden;
}

.home-page .property-card__media-wrapper{
    width: 100%;
    aspect-ratio: 4 / 3;
}

.home-page .property-card__body{
    min-height: 322px;
    padding: 18px;
}

.home-page .property-card__type{
    min-height: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-page .property-card h3{
    display: -webkit-box;
    height: 50px;
    min-height: 50px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-page .property-card__address{
    position: relative;
    display: -webkit-box;
    min-height: 40px;
    max-height: 40px;
    padding-left: 14px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-page .property-card__address::before{
    position: absolute;
    top: 7px;
    left: 0;
    margin: 0;
}

.home-page .property-card__value-row{
    min-height: 28px;
}

.home-page .property-meta{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.home-page .property-meta li{
    display: inline-flex;
    flex: initial;
    min-width: 0;
    min-height: 42px;
    gap: 6px;
    justify-content: center;
    padding: 0 8px;
    overflow: hidden;
    line-height: 1.15;
}

.home-page .property-meta .meta-icon{
    flex: 0 0 18px;
    width: 18px;
    text-align: center;
}

.home-page .property-card__cta{
    flex: 0 0 auto;
}

@media(max-width: 1100px){
    .home-page .property-list{
        grid-auto-columns: minmax(0, calc((100% - 20px) / 2));
    }
}

@media(max-width: 760px){
    .home-page .home-section--featured{
        padding-top: 42px;
        padding-bottom: 46px;
    }

    .home-page .home-section--featured .section-heading{
        padding-right: 16px;
        padding-left: 16px;
    }

    .home-page .property-list{
        gap: 14px;
        padding: 4px max(16px, calc((100vw - 342px) / 2)) 28px;
        scroll-padding-inline: max(16px, calc((100vw - 342px) / 2));
    }

    .home-page .property-card{
        flex: 0 0 min(342px, calc(100vw - 32px));
        max-width: min(342px, calc(100vw - 32px));
    }

    .home-page .property-card__body{
        min-height: 326px;
        padding: 16px;
    }

    .home-page .property-card h3{
        height: 48px;
        min-height: 48px;
    }

    .home-page .property-card__address{
        min-height: 38px;
        max-height: 38px;
        margin-top: 8px;
    }

    .home-page .property-card__value-row{
        margin-bottom: 10px;
    }

    .home-page .property-meta{
        gap: 8px;
        margin-bottom: 13px;
    }

    .home-page .property-meta li{
        min-height: 40px;
    }
}

@media(max-width: 380px){
    .home-page .property-list{
        padding-right: 14px;
        padding-left: 14px;
        scroll-padding-inline: 14px;
    }

    .home-page .property-card{
        flex-basis: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
    }

    .home-page .property-card__body{
        padding: 15px;
    }
}

/* Carousel fit correction after visual QA */
.home-page .home-section--featured > .center{
    max-width: min(1500px, calc(100% - 64px));
}

.home-page .property-carousel__wrapper{
    overflow: hidden;
}

.home-page .property-list{
    display: flex;
    align-items: stretch;
    gap: 22px;
    margin: 0;
    padding: 6px 2px 32px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 2px;
}

.home-page .property-card{
    flex: 0 0 clamp(348px, calc(33.333% - 15px), 410px);
    max-width: clamp(348px, calc(33.333% - 15px), 410px);
}

.home-page .property-card__media-wrapper{
    aspect-ratio: 16 / 10;
}

.home-page .property-card__body{
    min-height: 300px;
}

.home-page .property-card h3{
    height: 54px;
    min-height: 54px;
    font-size: 21px;
}

.home-page .property-card__type{
    color: #60727c;
    font-size: 13px;
    letter-spacing: .09em;
}

.home-page .property-card__address{
    font-size: 14px;
}

.home-page .property-card__value-row strong{
    font-size: 22px;
}

.home-page .property-meta li{
    min-height: 42px;
}

@media(min-width: 761px){
    .home-page .property-card__arrow{
        opacity: 0;
        pointer-events: none;
    }

    .home-page .property-card:hover .property-card__arrow,
    .home-page .property-card:focus-within .property-card__arrow{
        opacity: .96;
        pointer-events: auto;
    }
}

@media(max-width: 1180px){
    .home-page .home-section--featured > .center{
        max-width: min(1180px, calc(100% - 40px));
    }

    .home-page .property-card{
        flex-basis: clamp(330px, calc(50% - 11px), 390px);
        max-width: clamp(330px, calc(50% - 11px), 390px);
    }
}

@media(max-width: 760px){
    .home-page .home-section--featured > .center{
        max-width: 100%;
    }

    .home-page .property-carousel__wrapper{
        overflow: hidden;
    }

    .home-page .property-list{
        gap: 14px;
        padding: 4px max(16px, calc((100vw - 342px) / 2)) 28px;
        overflow-x: auto;
        scroll-padding-inline: max(16px, calc((100vw - 342px) / 2));
    }

    .home-page .property-card{
        flex: 0 0 min(342px, calc(100vw - 32px));
        max-width: min(342px, calc(100vw - 32px));
    }

    .home-page .property-card__media-wrapper{
        aspect-ratio: 4 / 3;
    }

    .home-page .property-card__body{
        min-height: 326px;
    }
}


/* =====================================================================
   Paginas internas de imoveis (listagem + detalhe)
   ===================================================================== */

.listing-page,
.detail-page{
    background: #f6fafc;
}

/* Breadcrumb */
.breadcrumb{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}
.breadcrumb a{ color: var(--muted); }
.breadcrumb a:hover{ color: var(--color1); }
.breadcrumb .bi{ font-size: 11px; opacity: .6; }
.breadcrumb span{ color: var(--ink); font-weight: 700; }

/* ---------- Listagem ---------- */
.listing-hero{
    position: relative;
    padding: 124px clamp(16px, 4vw, 48px) 96px;
    background: url("../images/home-hero-imoveis.jpg") center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.listing-hero__overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(2,57,81,.95) 0%, rgba(9,94,131,.86) 46%, rgba(2,57,81,.42) 100%);
}
.listing-hero__content{ position: relative; z-index: 2; }
.listing-hero .home-eyebrow{ color: rgba(255,255,255,.92); }
.listing-hero h1{
    margin: 8px 0 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    color: #fff;
}
.listing-hero p{ color: rgba(255,255,255,.9); max-width: 640px; font-size: 16px; line-height: 1.6; }
.listing-hero__chips{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}
.listing-hero__chips-label{
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
}
.listing-hero__chips a{
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.listing-hero__chips a:hover,
.listing-hero__chips a.is-active{ background: #fff; border-color: #fff; color: var(--color1); }

.listing-filters{
    position: relative;
    z-index: 15;
    margin-top: -58px;
    padding: 0 clamp(16px, 4vw, 48px);
}
.listing-filters__bar{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(2,57,81,.07);
}
.listing-filters__search{
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 100%;
    min-width: 200px;
}
.listing-filters__search .bi{
    position: absolute;
    left: 14px;
    color: var(--color1);
}
.listing-filters__search input{
    width: 100%;
    height: 48px;
    padding: 0 14px 0 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--soft);
    font-size: 15px;
    color: var(--ink);
}
.listing-filters__field{
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 150px;
    min-width: 140px;
}
.listing-filters__advanced .listing-filters__field{ flex: 1 1 200px; }
.listing-filters__field span{
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
}
.listing-filters__field select,
.listing-results__sort select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 48px;
    padding: 0 40px 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%23095e83' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.listing-filters__field select:hover,
.listing-results__sort select:hover{
    border-color: var(--color1);
    background-color: var(--soft);
}
.listing-filters__search input:focus,
.listing-filters__field select:focus,
.listing-results__sort select:focus{
    outline: none;
    border-color: var(--color2);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(56,176,200,.18);
}
.listing-filters__more{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--color1);
    border-radius: 10px;
    background: #fff;
    color: var(--color1);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.listing-filters__submit{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 22px;
    border: none;
    border-radius: 10px;
    background: var(--color1);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease;
}
.listing-filters__submit:hover{ background: var(--darkcolor1); }
.listing-filters__advanced{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    padding: 14px;
    border: 1px dashed var(--line);
    border-radius: 12px;
    background: #fff;
}
/* respeita o atributo hidden (senao o display:flex mantem o painel sempre aberto) */
.listing-filters__advanced[hidden]{ display: none; }

.listing-results{ padding: 40px clamp(16px, 4vw, 48px) 72px; }
.listing-results__head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}
.listing-results__head strong{ color: var(--ink); font-size: 18px; }
.listing-results__clear{
    margin-left: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color1);
}
.listing-results__sort{
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--muted);
}
.listing-results__sort > span{
    white-space: nowrap;
    font-weight: 700;
}
.listing-results__sort select{ min-width: 200px; }

.listing-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.property-card--listing{ scroll-snap-align: none; }

.property-card__exclusive{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(9,94,131,.1);
    color: var(--color1);
    font-size: 11px;
    font-weight: 800;
}
.property-card__value-row small{
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.listing-empty{
    text-align: center;
    padding: 60px 20px;
    border: 1px dashed var(--line);
    border-radius: 16px;
    background: #fff;
}
.listing-empty .bi{ font-size: 40px; color: var(--color2); }
.listing-empty h3{ margin: 12px 0 6px; color: var(--ink); }
.listing-empty p{ color: var(--muted); margin-bottom: 16px; }
.listing-empty a{
    display: inline-flex;
    padding: 12px 22px;
    border-radius: 10px;
    background: var(--color1);
    color: #fff;
    font-weight: 700;
}

/* ---------- Detalhe ---------- */

/* Hero estilo QuintoAndar: info a esquerda + carrossel full-bleed a direita */
.detail-hero{
    padding: 84px 0 12px;
}
.detail-hero__grid{
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(22px, 3.2vw, 46px);
    /* alinha a coluna esquerda com o container e deixa o carrossel sangrar ate a borda */
    padding-left: max(clamp(16px, 4vw, 48px), calc((100% - 1170px) / 2));
}
.detail-hero__info{ display: flex; flex-direction: column; }
.detail-hero__info .breadcrumb{ margin-bottom: 18px; }
.detail-hero__info h1{
    margin: 8px 0 8px;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.08;
    color: var(--ink);
}
.detail-hero__price-label{
    margin-top: 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--muted);
}
.detail-hero__price{
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.1;
    color: var(--color1);
}
.detail-hero__costs{ margin-top: 4px; font-size: 14px; color: var(--muted); }
.detail-hero__ctas{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.detail-hero__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
}
.detail-hero__cta--primary{
    background: var(--color1);
    color: #fff;
    transition: background .2s ease;
}
.detail-hero__cta--primary:hover{ background: var(--darkcolor1); }
.detail-hero__cta--ghost{
    border: 1px solid var(--line);
    color: var(--ink);
    background: #fff;
}
.detail-hero__cta--ghost:hover{ border-color: var(--color1); color: var(--color1); }

/* Carrossel full-bleed: slides quadrados com peek do proximo */
.hero-carousel{
    --peek: 70px;
    position: relative;
    overflow: hidden;
    height: calc(100vh - 100px);
    border-radius: 20px 0 0 20px;
    background: #f6fafc;
}
.hero-carousel__track{
    display: flex;
    height: 100%;
    gap: 12px;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.hero-carousel__slide{
    flex: 0 0 calc(100% - var(--peek));
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #d8edf3;
}
.hero-carousel__slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-gallery__tag{
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    padding: 7px 15px;
    border-radius: 999px;
    background: var(--color1);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}
.detail-gallery__tag--sold{ background: #102938; }
.hero-carousel__arrow{
    position: absolute;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    color: var(--color1);
    background: rgba(255,255,255,.95);
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(16,41,56,.2);
    transition: background .2s ease, transform .2s ease;
}
.hero-carousel__arrow:hover{ background: #fff; transform: scale(1.06); }
.hero-carousel__arrow.is-disabled{ opacity: .4; cursor: default; pointer-events: none; }
.hero-carousel__arrow--prev{ right: calc(var(--peek) + 74px); }
.hero-carousel__arrow--next{ right: calc(var(--peek) + 20px); }
.hero-carousel__overlay{
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    display: flex;
    gap: 8px;
}
.hero-carousel__pill{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,.95);
    color: var(--color1);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(16,41,56,.2);
    transition: background .2s ease;
}
.hero-carousel__pill:hover{ background: #fff; }
.hero-carousel__video{ background: #ff0000; color: #fff; }
.hero-carousel__video:hover{ background: #e60000; }
.hero-carousel__dots{ display: none; }

.detail-layout{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 36px;
    padding: 30px clamp(16px, 4vw, 48px) 20px;
}

.detail-head__type{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color1);
}
.detail-head__exclusive{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(9,94,131,.1);
    text-transform: none;
    letter-spacing: 0;
}
.detail-head h1{
    margin: 8px 0 6px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.12;
    color: var(--ink);
}
.detail-head__address{
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 15px;
}

.detail-facts{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 24px 0 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}
.detail-facts li{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.detail-facts .bi{ color: var(--color2); font-size: 20px; margin-bottom: 2px; }
.detail-facts strong{ color: var(--ink); font-size: 16px; }
.detail-facts span{ color: var(--muted); font-size: 12px; }

.detail-block{
    padding: 26px 0;
    border-top: 1px solid var(--line);
}
.detail-block h2{
    margin-bottom: 14px;
    font-size: 22px;
    color: var(--ink);
}
.detail-desc{ color: var(--textcolor); line-height: 1.7; }
.detail-desc .bi{ color: var(--color1); }

.detail-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.detail-badges li{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--soft);
    font-size: 13px;
    font-weight: 700;
    color: var(--color1);
}

.detail-amenities{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.detail-amenities h3{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--ink);
}
.detail-amenities ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}
.detail-amenities li{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--textcolor);
}
.detail-amenities li .bi{ color: var(--color2); }

.detail-map{
    overflow: hidden;
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
}
.detail-map iframe{
    display: block;
    width: 100%;
    height: 340px;
    border: 0;
}
.detail-map--reserved{ position: relative; }
.detail-map--reserved iframe{ filter: blur(7px) grayscale(.2); pointer-events: none; transform: scale(1.06); }
.detail-map__lock{
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(2,57,81,.55), rgba(2,57,81,.78));
}
.detail-map__lock-badge{
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.35);
    font-size: 22px;
}
.detail-map__lock strong{ font-size: 16px; font-weight: 800; }
.detail-map__lock-sub{ font-size: 13px; opacity: .9; }

/* ---------- Aceite de exclusividade ---------- */
.exclusividade-wrap{ max-width: 760px; }
.exclusividade-termo{ margin-bottom: 26px; }
.exclusividade-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line, #dce8ed);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(16,41,56,.06);
}
.exclusividade-form .form-campo{ display: flex; flex-direction: column; gap: 6px; }
.exclusividade-form label{ font-weight: 700; color: var(--ink); font-size: 14px; }
.exclusividade-form input[type="text"]{
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d5e3ea;
    border-radius: 8px;
    font-size: 15px;
    color: var(--ink);
}
.exclusividade-form input[type="text"]:focus{
    outline: none;
    border-color: var(--color1);
    box-shadow: 0 0 0 3px rgba(9,94,131,.12);
}
.exclusividade-acordo{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
}
.exclusividade-acordo input{ margin-top: 3px; width: 18px; height: 18px; accent-color: var(--color1); }
.exclusividade-submit{
    align-self: flex-start;
    margin-top: 4px;
    padding: 13px 22px;
    border: 0;
    border-radius: 8px;
    background: var(--color1);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
}
.exclusividade-submit:hover{ background: #07485f; }
.exclusividade-nota{ font-size: 12.5px; color: var(--muted); margin: 0; }
.exclusividade-form .form-erro{ color: #c0392b; font-size: 13px; font-weight: 600; }
.exclusividade-aceito{
    max-width: 620px;
    text-align: center;
    padding: 38px 28px;
    border: 1px solid #cdeacd;
    border-radius: 16px;
    background: #f3fbf3;
}
.exclusividade-aceito .bi{ font-size: 46px; color: #1a7f37; }
.exclusividade-aceito h2{ margin: 12px 0 8px; color: var(--ink); }
.exclusividade-aceito__nota{ color: var(--muted); font-size: 13px; margin-top: 10px; }

/* Coluna sticky de preco / CTA */
.detail-aside{
    position: sticky;
    top: 92px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.detail-card{
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(2,57,81,.1);
}
.detail-card__label{
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--muted);
}
.detail-card__price{
    display: block;
    margin: 4px 0 16px;
    font-size: 30px;
    color: var(--color1);
}
.detail-card__costs{
    margin-bottom: 18px;
    border-top: 1px solid var(--line);
}
.detail-card__costs li{
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    font-size: 14px;
    color: var(--textcolor);
    border-bottom: 1px solid var(--line);
}
.detail-card__costs .detail-card__total{
    font-weight: 800;
    color: var(--ink);
    border-bottom: none;
}
.detail-card__primary,
.detail-card__whats{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 800;
}
.detail-card__primary{
    background: var(--color1);
    color: #fff;
    transition: background .2s ease;
}
.detail-card__primary:hover{ background: var(--darkcolor1); }
.detail-card__whats{
    margin-top: 10px;
    border: 1px solid #25d366;
    color: #128c3e;
    background: #fff;
}
.detail-card__whats:hover{ background: #f1fbf4; }
.detail-card__code{
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
}
.detail-consultant{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--soft);
}
.detail-consultant .bi{ font-size: 24px; color: var(--color1); }
.detail-consultant strong{ display: block; color: var(--ink); font-size: 14px; }
.detail-consultant span{ font-size: 13px; color: var(--muted); }

.detail-related{
    margin-top: 64px;
    padding-top: 44px;
    border-top: 1px solid var(--line);
}

/* Tour em video (bloco no corpo) */
.detail-video{
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    background: #d8edf3;
}
.detail-video img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.detail-video:hover img{ transform: scale(1.04); }
.detail-video::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2,57,81,.28);
}
.detail-video__play{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ff0000;
    color: #fff;
    font-size: 34px;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.detail-video__label{
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

/* Responsivo paginas internas */
@media (max-width: 980px){
    /* hero do detalhe empilha: imagem em cima, sem bleed/peek */
    .detail-hero{ padding: 88px clamp(16px, 4vw, 48px) 10px; }
    .detail-hero__grid{ grid-template-columns: 1fr; gap: 22px; padding-left: 0; }
    .detail-hero__media{ order: -1; }
    .hero-carousel{ --peek: 0px; height: auto; border-radius: 18px; }
    .hero-carousel__track{ height: auto; gap: 0; }
    .hero-carousel__slide{ flex-basis: 100%; height: auto; aspect-ratio: 4 / 3; border-radius: 18px; }
    .hero-carousel__arrow--prev{ right: 74px; }
    .hero-carousel__arrow--next{ right: 20px; }
    .detail-layout{ grid-template-columns: 1fr; }
    .detail-aside{ position: static; }
    .listing-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
    .listing-filters__field,
    .listing-filters__search{ flex: 1 1 100%; min-width: 0; }
    .listing-filters__submit,
    .listing-filters__more{ flex: 1 1 auto; justify-content: center; }
    .listing-grid{ grid-template-columns: 1fr; }
    .hero-carousel__slide{ aspect-ratio: 4 / 3; }
    .hero-carousel__pill{ padding: 8px 12px; font-size: 12px; }
    .detail-hero__ctas .detail-hero__cta{ flex: 1 1 auto; }
    .detail-facts{ grid-template-columns: repeat(2, 1fr); }
    .detail-amenities{ grid-template-columns: 1fr; }
    .detail-amenities ul{ grid-template-columns: 1fr; }
}


/* =====================================================================
   Padrao de paginas internas (base_interna) + Vendidos + Anunciar
   ===================================================================== */

.interna-hero{
    padding: 148px clamp(16px, 4vw, 48px) 44px;
    background:
        linear-gradient(120deg, rgba(2,57,81,.92), rgba(9,94,131,.82) 55%, rgba(56,176,200,.7)),
        url("../images/home-hero-regional.jpg") center / cover no-repeat;
    color: #fff;
}
.interna-hero .home-eyebrow{ color: rgba(255,255,255,.92); }
.interna-hero h1{
    margin: 8px 0 10px;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.1;
    color: #fff;
}
.interna-hero__subtitle{
    max-width: 620px;
    color: rgba(255,255,255,.9);
    font-size: 16px;
    line-height: 1.6;
}
.breadcrumb--light,
.breadcrumb--light a,
.breadcrumb--light span{ color: rgba(255,255,255,.85); }
.breadcrumb--light a:hover{ color: #fff; }
.breadcrumb--light span{ font-weight: 700; color: #fff; }

.interna-body{ padding: 40px clamp(16px, 4vw, 48px) 64px; }

/* Cards vendidos */
.property-card--sold .property-card__media-wrapper img{ filter: grayscale(.55); }
.property-tag--sold{ background: #102938; }
.vendidos-cta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding: 30px clamp(20px, 4vw, 40px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--soft);
}
.vendidos-cta h2{ margin: 4px 0 6px; color: var(--ink); font-size: 24px; }
.vendidos-cta p{ color: var(--muted); }

/* Anunciar */
.anunciar-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 32px;
}
.anunciar-form-wrap{
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(2,57,81,.08);
}
.anunciar-form{ display: flex; flex-direction: column; gap: 16px; }
.anunciar-form__row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.anunciar-field{ display: flex; flex-direction: column; gap: 6px; }
.anunciar-field span{
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}
.anunciar-field input,
.anunciar-field select,
.anunciar-field textarea{
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--soft);
    font-size: 15px;
    color: var(--ink);
    font-family: inherit;
}
.anunciar-field textarea{ resize: vertical; }
.anunciar-field input:focus,
.anunciar-field select:focus,
.anunciar-field textarea:focus{
    outline: none;
    border-color: var(--color2);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(56,176,200,.18);
}
.anunciar-submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    margin-top: 4px;
    border: none;
    border-radius: 12px;
    background: var(--color1);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease;
}
.anunciar-submit:hover{ background: var(--darkcolor1); }
.anunciar-note{ font-size: 12px; color: var(--muted); text-align: center; }
.anunciar-errors{
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid #f3c9c9;
    border-radius: 12px;
    background: #fceeee;
    color: #a23434;
    font-size: 14px;
}
.anunciar-errors ul{ margin-top: 6px; padding-left: 18px; list-style: disc; }
.anunciar-success{
    text-align: center;
    padding: 30px 16px;
}
.anunciar-success .bi{ font-size: 52px; color: #1e9e57; }
.anunciar-success h2{ margin: 10px 0 6px; color: var(--ink); }
.anunciar-success p{ color: var(--muted); margin-bottom: 18px; }

.anunciar-side h3{ margin-bottom: 14px; color: var(--ink); font-size: 18px; }
.anunciar-steps{ display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.anunciar-steps li{ display: flex; flex-direction: column; gap: 2px; padding-left: 14px; border-left: 3px solid var(--color2); }
.anunciar-steps strong{ color: var(--color1); font-size: 15px; }
.anunciar-steps span{ color: var(--muted); font-size: 13px; }
.anunciar-side .detail-consultant a{ color: var(--color1); font-weight: 700; }

@media (max-width: 880px){
    .anunciar-grid{ grid-template-columns: 1fr; }
    .anunciar-form__row{ grid-template-columns: 1fr; }
    .vendidos-cta{ flex-direction: column; align-items: flex-start; }
}


/* =====================================================================
   Selects padronizados em todo o site (seta custom) + form Anunciar
   ===================================================================== */
.listing-filters__field select,
.listing-results__sort select,
.anunciar-field select,
.search-field select,
.property-search select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%23095e83' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 15px;
    padding-right: 40px;
}

.anunciar-form__row--three{ grid-template-columns: repeat(3, 1fr); }

.anunciar-fotos input[type="file"]{
    width: 100%;
    padding: 14px;
    border: 1px dashed var(--line);
    border-radius: 10px;
    background: var(--soft);
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
}
.anunciar-fotos input[type="file"]::-webkit-file-upload-button{
    margin-right: 12px;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: var(--color1);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 880px){
    .anunciar-form__row--three{ grid-template-columns: 1fr; }
}


/* Paginacao da listagem */
.box-paginacao{ display:flex; justify-content:center; margin-top:40px; }
.box-paginacao .paginacao{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; }
.box-paginacao .paginacao a{
    display:inline-flex; align-items:center; justify-content:center;
    min-width:42px; height:42px; padding:0 12px;
    border:1px solid var(--line); border-radius:10px;
    color:var(--color1); background:#fff; font-weight:700; font-size:14px;
    transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.box-paginacao .paginacao a:hover{ border-color:var(--color1); background:var(--soft); }
.box-paginacao .paginacao a.active{ background:var(--color1); border-color:var(--color1); color:#fff; }
.box-paginacao .paginacao .desktop{ margin:0 2px; }
@media (max-width:560px){ .box-paginacao .paginacao .desktop{ display:none; } }


/* Conjunto de fotos (Anunciar) - cliente adiciona ate 7 */
.anunciar-fotos__lista{ display:flex; flex-direction:column; gap:10px; margin:6px 0 10px; }
.anunciar-foto-item{ display:flex; align-items:center; gap:8px; }
.anunciar-foto-item input[type="file"]{
    flex:1 1 auto; min-width:0; padding:11px 12px;
    border:1px dashed var(--line); border-radius:10px; background:var(--soft);
    font-size:14px; color:var(--ink); cursor:pointer;
}
.anunciar-foto-item input[type="file"]::-webkit-file-upload-button{
    margin-right:10px; padding:7px 12px; border:none; border-radius:8px;
    background:var(--color1); color:#fff; font-weight:700; cursor:pointer;
}
.anunciar-foto-remove{
    flex:0 0 auto; width:40px; height:40px; line-height:1;
    border:1px solid var(--line); border-radius:9px; background:#fff;
    color:#a23434; font-size:20px; cursor:pointer; transition:background .2s ease, border-color .2s ease;
}
.anunciar-foto-remove:hover{ background:#fceeee; border-color:#f3c9c9; }
.anunciar-add-foto{
    display:inline-flex; align-items:center; gap:7px; align-self:flex-start;
    padding:9px 16px; border:1px solid var(--color1); border-radius:10px;
    background:#fff; color:var(--color1); font-weight:700; font-size:14px; cursor:pointer;
    transition:background .2s ease, opacity .2s ease;
}
.anunciar-add-foto:hover{ background:var(--soft); }
.anunciar-add-foto:disabled{ opacity:.45; cursor:default; }

/* ---------- Bloco de confianca (prova social) ---------- */
.proof-stats{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 26px;
}
.proof-stat{
    text-align: center;
    padding: 22px 14px;
    border: 1px solid var(--line, #dce8ed);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(16,41,56,.05);
}
.proof-stat strong{ display: block; font-size: 30px; font-weight: 800; color: var(--color1); line-height: 1; }
.proof-stat span{ display: block; margin-top: 8px; font-size: 13.5px; color: var(--muted); }
.proof-creci{ margin: 14px 0 0; font-size: 13px; color: var(--muted); text-align: center; }
.proof-creci .bi{ color: var(--color1); }
.proof-creci em{ font-style: italic; opacity: .8; }

.testimonial-carousel{
    position: relative;
    margin-top: 34px;
    padding: 0 8px;
}
.testimonial-track{
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 4px;
}
.testimonial-track::-webkit-scrollbar{ display: none; }
.testimonial-card{
    flex: 0 0 calc((100% - 36px) / 3);
    scroll-snap-align: start;
    padding: 22px;
    border: 1px solid var(--line, #dce8ed);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(16,41,56,.05);
}
.testimonial-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line, #dce8ed);
    background: #fff;
    color: var(--color1);
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(16,41,56,.12);
}
.testimonial-arrow--prev{ left: -10px; }
.testimonial-arrow--next{ right: -10px; }
.testimonial-arrow:hover{ background: var(--color1); color: #fff; }
.testimonial-stars{ color: #f5a623; letter-spacing: 2px; font-size: 15px; }
.testimonial-card p{ margin: 12px 0 16px; color: var(--ink); font-size: 15px; line-height: 1.55; }
.testimonial-card footer strong{ display: block; color: var(--ink); font-size: 14px; }
.testimonial-card footer span{ display: block; color: var(--muted); font-size: 13px; }

.sold-recent{ margin-top: 68px; padding-top: 40px; border-top: 1px solid var(--line, #dce8ed); }
.sold-recent__head{ display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.sold-recent__head h3{ margin: 0; color: var(--ink); font-size: 20px; }
.sold-recent__head a{ color: var(--color1); font-weight: 700; font-size: 14px; white-space: nowrap; }
.sold-recent__track{
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 4px;
}
.sold-recent__track::-webkit-scrollbar{ display: none; }
.sold-recent__dots{ display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.sold-recent__dots button{
    width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
    background: #cbdbe3; cursor: pointer; transition: background .18s ease, transform .18s ease;
}
.sold-recent__dots button.is-active{ background: var(--color1); transform: scale(1.25); }
.sold-recent__card{
    flex: 0 0 calc((100% - 36px) / 3);
    scroll-snap-align: start;
    border: 1px solid var(--line, #dce8ed);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease;
}
.sold-recent__card:hover{ transform: translateY(-3px); box-shadow: 0 16px 40px rgba(16,41,56,.12); }
.sold-recent__media{ position: relative; aspect-ratio: 4/3; background: #eef4f7; }
.sold-recent__media img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.sold-recent__tag{
    position: absolute; top: 12px; left: 12px;
    padding: 5px 12px; border-radius: 999px;
    background: #102938; color: #fff; font-size: 12px; font-weight: 800;
}
.sold-recent__body{ padding: 14px 16px; }
.sold-recent__body strong{ display: block; color: var(--ink); font-size: 14px; font-weight: 700; }
.sold-recent__body span{ display: block; margin-top: 4px; color: var(--color1); font-weight: 800; }

@media(max-width: 900px){
    .proof-stats{ grid-template-columns: repeat(2, 1fr); }
    .testimonial-card{ flex-basis: 85%; }
    .sold-recent__card{ flex-basis: 82%; }
    .testimonial-arrow{ display: none; }
}

/* ---------- Isca de avaliacao do proprietario ---------- */
.owner-avaliacao{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
    padding: 34px clamp(20px, 4vw, 48px);
    border-radius: 22px;
    background: linear-gradient(120deg, #063951 0%, #095e83 55%, #0a6f97 100%);
    color: #fff;
}
.owner-avaliacao__copy .home-eyebrow{ color: rgba(255,255,255,.85); }
.owner-avaliacao__copy h2{ color: #fff; margin: 6px 0 12px; }
.owner-avaliacao__copy p{ color: rgba(255,255,255,.9); }
.owner-avaliacao__copy p strong{ color: #fff; }
.owner-avaliacao__perks{ list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.owner-avaliacao__perks li{ color: #fff; font-weight: 600; font-size: 15px; }
.owner-avaliacao__perks .bi{ color: #7fe3c0; margin-right: 8px; }

.owner-avaliacao__form{
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    display: grid;
    gap: 12px;
    box-shadow: 0 24px 60px rgba(2,23,34,.28);
}
.owner-avaliacao__form h3{ margin: 0 0 4px; color: var(--ink); font-size: 18px; }
.owner-avaliacao__form label{ display: grid; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.owner-avaliacao__form input,
.owner-avaliacao__form select{
    padding: 12px 14px; border: 1px solid #d5e3ea; border-radius: 8px;
    font-size: 15px; color: var(--ink); background: #fff;
}
.owner-avaliacao__form input:focus,
.owner-avaliacao__form select:focus{ outline: none; border-color: var(--color1); box-shadow: 0 0 0 3px rgba(9,94,131,.12); }
.owner-avaliacao__form button{
    margin-top: 4px; padding: 14px 18px; border: 0; border-radius: 10px;
    background: #25d366; color: #fff; font-weight: 800; font-size: 15px; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.owner-avaliacao__form button:hover{ background: #1fb457; }
.owner-avaliacao__form small{ color: var(--muted); font-size: 12px; text-align: center; }

@media(max-width: 860px){
    .owner-avaliacao{ grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Chamada: Indique e ganhe ---------- */
.refer-cta__box{
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px clamp(20px, 4vw, 44px);
    border-radius: 20px;
    background: linear-gradient(120deg, #eef6fb, #e1eff8);
    border: 1px solid #cfe3f0;
    color: var(--ink);
}
.refer-cta__icon{
    flex: 0 0 auto;
    width: 64px; height: 64px;
    display: grid; place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #38b0c8, #095e83);
    color: #fff;
    box-shadow: 0 10px 22px rgba(9,94,131,.28);
    font-size: 30px;
}
.refer-cta__copy{ flex: 1 1 auto; }
.refer-cta__copy .home-eyebrow{ color: var(--color1); }
.refer-cta__copy h2{ color: var(--ink); margin: 4px 0 8px; }
.refer-cta__copy p{ color: var(--muted); margin: 0; }
.refer-cta__copy p strong{ color: var(--ink); }
.refer-cta__btn{
    flex: 0 0 auto;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 26px; border-radius: 12px;
    background: var(--color1); color: #fff; font-weight: 800; font-size: 15px;
    white-space: nowrap;
}
.refer-cta__btn:hover{ background: #07485f; }

/* ---------- Pagina Indique ---------- */
.indicar-wrap{ display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.indicar-how{ background: var(--soft, #f6fafc); border: 1px solid var(--line, #dce8ed); border-radius: 16px; padding: 24px; }
.indicar-how h2{ margin: 0 0 14px; font-size: 20px; color: var(--ink); }
.indicar-how ol{ list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.indicar-how li{ color: var(--ink); font-size: 15px; line-height: 1.5; }
.indicar-how li strong{ color: var(--color1); }
.indicar-how__note{ margin-top: 16px; font-size: 13px; color: var(--muted); }
.indicar-how__note .bi{ color: var(--color1); }

.indicar-form{ background: #fff; border: 1px solid var(--line, #dce8ed); border-radius: 16px; padding: 26px; box-shadow: 0 10px 30px rgba(16,41,56,.06); }
.indicar-form h2{ margin: 0 0 14px; font-size: 20px; color: var(--ink); }
.indicar-form fieldset{ border: 0; padding: 0; margin: 0 0 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.indicar-form legend{ grid-column: 1 / -1; font-weight: 800; color: var(--color1); font-size: 14px; margin-bottom: 4px; }
.indicar-field{ display: grid; gap: 6px; }
.indicar-field--full{ grid-column: 1 / -1; }
.indicar-field label{ font-weight: 700; font-size: 13.5px; color: var(--ink); }
.indicar-form input, .indicar-form textarea{
    width: 100%; padding: 12px 14px; border: 1px solid #d5e3ea; border-radius: 8px;
    font-size: 15px; color: var(--ink); font-family: inherit;
}
.indicar-form input:focus, .indicar-form textarea:focus{ outline: none; border-color: var(--color1); box-shadow: 0 0 0 3px rgba(9,94,131,.12); }
.indicar-form .form-erro{ color: #c0392b; font-size: 13px; font-weight: 600; }
.indicar-submit{
    margin-top: 4px; padding: 14px 24px; border: 0; border-radius: 10px;
    background: var(--color1); color: #fff; font-weight: 800; font-size: 15px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.indicar-submit:hover{ background: #07485f; }
.indicar-ok{ text-align: center; padding: 40px 28px; border: 1px solid #cdeacd; border-radius: 16px; background: #f3fbf3; }
.indicar-ok .bi{ font-size: 46px; color: #1a7f37; }
.indicar-ok h2{ margin: 12px 0 8px; color: var(--ink); }
.indicar-ok__code{ font-size: 17px; color: var(--ink); }
.indicar-ok__code strong{ color: var(--color1); letter-spacing: 1px; }
.indicar-ok__note{ color: var(--muted); font-size: 13px; }

@media(max-width: 860px){
    .refer-cta__box{ flex-direction: column; text-align: center; }
    .indicar-wrap{ grid-template-columns: 1fr; }
    .indicar-form fieldset{ grid-template-columns: 1fr; }
}

.footer-creci{
    display: inline-flex; align-items: center; gap: 10px;
    margin: 14px 0 12px; padding: 8px 16px 8px 13px;
    border: 1px solid rgba(255,255,255,.22); border-radius: 12px;
    color: rgba(255,255,255,.92);
}
.footer-creci .bi{ color: var(--color2, #38b0c8); font-size: 18px; }
.footer-creci__info{ display: flex; flex-direction: column; line-height: 1.4; }
.footer-creci__info strong{ font-size: 13px; font-weight: 700; letter-spacing: .4px; }
.footer-creci__info span{ font-size: 12px; font-weight: 500; color: rgba(255,255,255,.72); white-space: nowrap; }

/* ---------- Blog (escopado em .blog-page) ---------- */
.blog-page .blog-layout{ display: grid; grid-template-columns: 1fr 320px; gap: 34px; align-items: start; }
.blog-page .blog-context{ display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 14px; color: var(--muted); }
.blog-page .blog-context strong{ color: var(--ink); }
.blog-page .blog-context__clear{ color: var(--color1); font-weight: 700; }

.blog-page .blog-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.home-page .blog-card__ph,
.blog-page .blog-card__ph{ position: absolute; inset: 0; display: grid; place-items: center; margin: 0; color: #9db6c2; font-size: 40px; }
.home-page .blog-grid h3 a,
.blog-page .blog-grid h3 a{ color: inherit; font-size: inherit; font-weight: inherit; line-height: inherit; }
.home-page .blog-grid h3 a:hover,
.blog-page .blog-grid h3 a:hover{ color: var(--color1); }

.blog-page .blog-empty{ text-align: center; padding: 50px 20px; border: 1px dashed var(--line, #dce8ed); border-radius: 16px; }
.blog-page .blog-empty .bi{ font-size: 40px; color: #9db6c2; }
.blog-page .blog-empty h3{ margin: 12px 0 6px; color: var(--ink); }
.blog-page .blog-empty p{ color: var(--muted); margin-bottom: 16px; }

.blog-page .blog-aside{ display: grid; gap: 22px; position: sticky; top: 96px; }
.blog-page .blog-aside__block{ background: #fff; border: 1px solid var(--line, #dce8ed); border-radius: 16px; padding: 20px; }
.blog-page .blog-aside__block h3{ margin: 0 0 14px; font-size: 15px; color: var(--ink); }
.blog-page .blog-search{ display: flex; gap: 8px; }
.blog-page .blog-search input{ flex: 1 1 auto; min-width: 0; padding: 11px 12px; border: 1px solid #d5e3ea; border-radius: 8px; font-size: 14px; color: var(--ink); }
.blog-page .blog-search input:focus{ outline: none; border-color: var(--color1); box-shadow: 0 0 0 3px rgba(9,94,131,.12); }
.blog-page .blog-search button{ flex: 0 0 auto; width: 42px; border: 0; border-radius: 8px; background: var(--color1); color: #fff; cursor: pointer; }
.blog-page .blog-aside__cats{ list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.blog-page .blog-aside__cats a{ display: block; padding: 9px 12px; border-radius: 8px; color: var(--ink); font-size: 14px; font-weight: 600; }
.blog-page .blog-aside__cats a:hover{ background: var(--soft, #f6fafc); color: var(--color1); }
.blog-page .blog-aside__cats li.is-active a{ background: var(--color1); color: #fff; }
.blog-page .blog-aside__recent{ list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.blog-page .blog-aside__recent a{ display: flex; gap: 12px; align-items: center; }
.blog-page .recent-thumb{ flex: 0 0 60px; width: 60px; height: 46px; border-radius: 8px; overflow: hidden; background: #eef4f7; display: grid; place-items: center; color: #9db6c2; }
.blog-page .recent-thumb img{ width: 100%; height: 100%; object-fit: cover; }
.blog-page .recent-body strong{ display: block; color: var(--ink); font-size: 13.5px; line-height: 1.35; font-weight: 700; }
.blog-page .recent-body time{ color: var(--muted); font-size: 12px; }
.blog-page .blog-aside__recent a:hover .recent-body strong{ color: var(--color1); }
.blog-page .blog-aside__wpp{ background: linear-gradient(140deg, #095e83, #063951); color: #fff; border-radius: 16px; padding: 22px; text-align: center; }
.blog-page .blog-aside__wpp .bi{ font-size: 30px; color: #7fe3c0; }
.blog-page .blog-aside__wpp strong{ display: block; margin: 8px 0 4px; font-size: 16px; }
.blog-page .blog-aside__wpp p{ color: rgba(255,255,255,.9); font-size: 13.5px; margin: 0 0 14px; }
.blog-page .blog-aside__wpp a{ display: inline-block; padding: 11px 18px; border-radius: 10px; background: #25d366; color: #fff; font-weight: 800; font-size: 14px; }
.blog-page .blog-aside__wpp a:hover{ background: #1fb457; }

.blog-page .blog-detail__cover{ margin: 0 0 24px; border-radius: 16px; overflow: hidden; }
.blog-page .blog-detail__cover img{ width: 100%; display: block; }
.blog-page .blog-detail__article{ font-size: 16px; line-height: 1.7; }
.blog-page .blog-detail__share{ display: flex; align-items: center; gap: 14px; margin: 28px 0; padding-top: 18px; border-top: 1px solid var(--line, #dce8ed); font-size: 14px; }
.blog-page .blog-detail__share span{ color: var(--muted); font-weight: 700; }
.blog-page .blog-detail__share a{ color: var(--color1); font-weight: 700; }
.blog-page .blog-related{ margin-top: 36px; }
.blog-page .blog-related h2{ font-size: 20px; color: var(--ink); margin-bottom: 16px; }

@media(max-width: 940px){
    .blog-page .blog-layout{ grid-template-columns: 1fr; }
    .blog-page .blog-aside{ position: static; }
    .blog-page .blog-grid{ grid-template-columns: 1fr 1fr; }
}
@media(max-width: 560px){
    .blog-page .blog-grid{ grid-template-columns: 1fr; }
}

/* ---------- Pagina de contato ---------- */
.contato-page .contato-layout{ display: grid; grid-template-columns: 340px 1fr; gap: 34px; align-items: start; }
.contato-page .contato-info{ display: grid; gap: 14px; }
.contato-page .contato-info__card{
    display: flex; align-items: center; gap: 14px;
    padding: 18px; border: 1px solid var(--line, #dce8ed); border-radius: 14px; background: #fff;
    color: var(--ink);
}
.contato-page a.contato-info__card{ transition: transform .18s ease, box-shadow .18s ease; }
.contato-page a.contato-info__card:hover{ transform: translateY(-2px); box-shadow: 0 14px 34px rgba(16,41,56,.10); }
.contato-page .contato-info__ic{
    flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center;
    border-radius: 12px; background: #eef6fb; color: var(--color1); font-size: 20px;
}
.contato-page .contato-info__card--wpp .contato-info__ic{ background: #e7f8ee; color: #1fa855; }
.contato-page .contato-info__card strong{ display: block; color: var(--ink); font-size: 15px; }
.contato-page .contato-info__card small{ display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.contato-page .contato-info__social{ display: flex; gap: 10px; margin-top: 4px; }
.contato-page .contato-info__social a{
    width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px;
    border: 1px solid var(--line, #dce8ed); color: var(--color1); font-size: 18px; background: #fff;
}
.contato-page .contato-info__social a:hover{ background: var(--color1); color: #fff; }

.contato-page .contato-form{
    background: #fff; border: 1px solid var(--line, #dce8ed); border-radius: 16px;
    padding: 28px; box-shadow: 0 10px 30px rgba(16,41,56,.06);
}
.contato-page .contato-form h2{ margin: 0 0 18px; font-size: 21px; color: var(--ink); }
.contato-page .contato-field{ display: grid; gap: 6px; margin-bottom: 16px; }
.contato-page .contato-field label{ font-weight: 700; font-size: 13.5px; color: var(--ink); }
.contato-page .contato-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contato-page .contato-form input,
.contato-page .contato-form textarea{
    width: 100%; padding: 12px 14px; border: 1px solid #d5e3ea; border-radius: 8px;
    font-size: 15px; color: var(--ink); font-family: inherit;
}
.contato-page .contato-form input:focus,
.contato-page .contato-form textarea:focus{ outline: none; border-color: var(--color1); box-shadow: 0 0 0 3px rgba(9,94,131,.12); }
.contato-page .contato-form .form-erro{ color: #c0392b; font-size: 13px; font-weight: 600; }
.contato-page .contato-submit{
    margin-top: 4px; padding: 14px 24px; border: 0; border-radius: 10px;
    background: var(--color1); color: #fff; font-weight: 800; font-size: 15px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.contato-page .contato-submit:hover{ background: #07485f; }
.contato-page .contato-ok{ text-align: center; padding: 46px 28px; border: 1px solid #cdeacd; border-radius: 16px; background: #f3fbf3; }
.contato-page .contato-ok .bi{ font-size: 48px; color: #1a7f37; }
.contato-page .contato-ok h2{ margin: 12px 0 8px; color: var(--ink); }
.contato-page .contato-ok p{ color: var(--muted); }

@media(max-width: 860px){
    .contato-page .contato-layout{ grid-template-columns: 1fr; }
    .contato-page .contato-row{ grid-template-columns: 1fr; }
}
