/* =========================================================
   CSS PRINCIPAL
========================================================= */

:root {
    --primary: #1769aa;
    --primary-dark: #0e4f82;
    --primary-light: #eaf4fb;

    --navy: #102a46;
    --text: #172536;
    --text-light: #647487;

    --background: #f7f9fb;
    --white: #ffffff;

    --border: #e4eaf0;

    --green: #168a57;

    --shadow-sm: 0 5px 20px rgba(16, 42, 70, .07);
    --shadow-md: 0 12px 35px rgba(16, 42, 70, .10);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, .18);

    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}


/* =========================================================
   NAVBAR
========================================================= */

.site-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    padding: 18px 0;

    background: rgba(10, 34, 57, .88);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #fff !important;

    font-size: 15px;
    font-weight: 700;
}

.brand-icon {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff;

    color: #fff;

    font-size: 20px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);
}

.brand-name span {
    color: #8bc8f5;
}


.brand-name small {
display: block;
margin-top: 3px;
font-size: 8px;
line-height: 1;
font-weight: 500;
letter-spacing: .2px;
color: #ccc;
}

 #sm{
        font-size:10px;
    }


.site-navbar .nav-link {
    position: relative;

    padding: 10px 15px !important;

    color: rgba(255,255,255,.82) !important;

    font-size: 14px;
    font-weight: 600;

    transition: .2s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: #fff !important;
}

.site-navbar .nav-link.active::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 2px;

    height: 2px;

    background: #8bc8f5;

    border-radius: 10px;
}

.btn-panel {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 17px;

    border-radius: 10px;

    background: #fff;

    color: var(--navy) !important;

    font-size: 13px;
    font-weight: 700;

    transition: .2s ease;
}

.btn-panel:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);
}

.site-navbar .navbar-toggler {
    border: 0;

    padding: 8px;

    box-shadow: none;
}

.site-navbar .navbar-toggler:focus {
    box-shadow: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    padding:
        150px
        0
        70px;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(70, 154, 208, .35),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0b2945 0%,
            #145783 50%,
            #277eb1 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    top: -280px;

    border-radius: 50%;

    background: rgba(255,255,255,.04);
}

.hero::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -230px;
    bottom: -260px;

    border-radius: 50%;

    background: rgba(255,255,255,.035);
}

.hero-decoration {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.07);
}

.hero-decoration-one {
    width: 500px;
    height: 500px;

    right: 5%;
    bottom: -350px;
}

.hero-decoration-two {
    width: 260px;
    height: 260px;

    left: 20%;
    top: 80px;
}

.hero .container {
    position: relative;

    z-index: 5;
}

.hero-content {
    max-width: 850px;
}

.hero-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #91d0f7;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero h1 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(42px, 5.4vw, 72px);

    line-height: 1.02;

    font-weight: 900;

    letter-spacing: -3px;
}

.hero-content p {
    max-width: 650px;

    margin:
        22px
        0
        0;

    color: rgba(255,255,255,.78);

    font-size: 18px;
    line-height: 1.65;
}


/* =========================================================
   SEARCH
========================================================= */

.search-box {
    position: relative;

    z-index: 20;

    margin-top: 42px;

    padding: 25px;

    background: #fff;

    border-radius: 20px;

    box-shadow: var(--shadow-lg);
}

.search-grid {
    display: grid;

    grid-template-columns:
        1.8fr
        1fr
        1fr
        1fr
        .8fr
        auto;

    gap: 12px;

    align-items: end;
}

.search-field label {
    display: block;

    margin-bottom: 7px;

    color: #526275;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.search-field input,
.search-field select {
    width: 100%;

    height: 50px;

    padding:
        0
        14px;

    border:
        1px solid
        #dfe6ed;

    border-radius: 10px;

    outline: none;

    background: #fff;

    color: var(--text);

    font-family: inherit;
    font-size: 13px;

    transition: .2s ease;
}

.search-field input:focus,
.search-field select:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(23,105,170,.10);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--primary);

    pointer-events: none;
}

.input-icon input {
    padding-left: 42px;
}

.search-action button {
    height: 50px;

    min-width: 145px;

    padding:
        0
        20px;

    border: 0;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1975b8,
            #155f98
        );

    color: #fff;

    font-family: inherit;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;

    cursor: pointer;

    transition: .2s ease;

    box-shadow:
        0 7px 18px
        rgba(23,105,170,.20);
}

.search-action button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(23,105,170,.28);
}


/* =========================================================
   SECTIONS
========================================================= */

.properties-section {
    padding: 90px 0 100px;

    background: #fff;
}

.section-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}

.section-label {
    margin-bottom: 8px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.section-header h2 {
    margin: 0;

    color: var(--text);

    font-size: 38px;
    line-height: 1.15;

    font-weight: 900;

    letter-spacing: -1.5px;
}

.section-header p {
    margin:
        8px
        0
        0;

    color: var(--text-light);

    font-size: 15px;
}

.property-count {
    padding:
        9px
        15px;

    border:
        1px solid
        var(--border);

    border-radius: 100px;

    background: #fff;

    color: var(--text-light);

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   PROPERTY GRID
========================================================= */

.property-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   PROPERTY CARD
========================================================= */

.property-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    box-shadow:
        0 6px 22px
        rgba(16,42,70,.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.property-card:hover {
    transform: translateY(-6px);

    border-color: #d7e2eb;

    box-shadow:
        0 18px 42px
        rgba(16,42,70,.13);
}


/* =========================================================
   PROPERTY IMAGE
========================================================= */

.property-image {
    position: relative;

    display: block;

    height: 245px;

    overflow: hidden;

    background: #edf2f6;
}

.property-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.045);
}

.property-no-image {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    background:
        linear-gradient(
            135deg,
            #edf3f7,
            #e1e9ef
        );

    color: #9aaaba;
}

.property-no-image i {
    font-size: 48px;
}

.property-no-image span {
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   BADGES
========================================================= */

.property-badges {
    position: absolute;

    top: 15px;
    left: 15px;

    display: flex;

    align-items: center;

    gap: 7px;
}

.badge-purpose,
.badge-featured {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding:
        7px
        10px;

    border-radius: 7px;

    font-size: 10px;
    font-weight: 800;

    line-height: 1;

    box-shadow:
        0 3px 10px rgba(0,0,0,.12);
}

.badge-purpose {
    background: var(--primary);

    color: #fff;
}

.badge-featured {
    background: #fff;

    color: #a06e00;
}

.badge-featured i {
    color: #d69a18;
}

.photo-count {
    position: absolute;

    right: 15px;
    bottom: 14px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        7px
        10px;

    border-radius: 7px;

    background: rgba(0,0,0,.58);

    color: #fff;

    font-size: 10px;
    font-weight: 700;

    backdrop-filter: blur(5px);
}


/* =========================================================
   PROPERTY CONTENT
========================================================= */

.property-content {
    display: flex;

    flex: 1;

    flex-direction: column;

    padding: 21px;
}

.property-code {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #8b98a7;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .3px;
}

.property-title {
    min-height: 50px;

    margin:
        8px
        0
        7px;

    font-size: 17px;
    line-height: 1.45;

    font-weight: 800;
}

.property-title a {
    color: var(--text);

    transition: .2s ease;
}

.property-title a:hover {
    color: var(--primary);
}

.property-location {
    min-height: 38px;

    display: flex;

    align-items: flex-start;

    gap: 7px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.5;
}

.property-location i {
    flex-shrink: 0;

    margin-top: 2px;

    color: var(--primary);
}


/* =========================================================
   FEATURES
========================================================= */

.property-features {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 5px;

    margin-top: 19px;

    padding:
        15px
        0;

    border-top:
        1px solid
        #edf1f4;

    border-bottom:
        1px solid
        #edf1f4;
}

.feature {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    min-width: 0;
}

.feature > i {
    flex-shrink: 0;

    color: var(--primary);

    font-size: 15px;
}

.feature div {
    min-width: 0;
}

.feature strong {
    color: var(--text);

    font-size: 12px;
    font-weight: 800;
}

.feature small {
    margin-left: 2px;

    color: #8290a0;

    font-size: 9px;
}


/* =========================================================
   PROPERTY FOOTER
========================================================= */

.property-footer {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin-top: 18px;
}

.property-price small {
    display: block;

    margin-bottom: 3px;

    color: #8a96a4;

    font-size: 10px;
}

.property-price strong {
    color: var(--primary);

    font-size: 19px;
    font-weight: 900;

    line-height: 1.1;
}

.property-button {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        10px
        13px;

    border:
        1px solid
        #cbdce9;

    border-radius: 9px;

    background: #fff;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    transition: .2s ease;
}

.property-button:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: #fff;

    transform: translateX(2px);
}


/* =========================================================
   EMPTY
========================================================= */

.empty-state {
    padding: 75px 20px;

    text-align: center;

    border:
        1px dashed
        #ccd7e1;

    border-radius: 18px;

    background: #fafcfd;
}

.empty-icon {
    width: 65px;
    height: 65px;

    margin:
        0
        auto
        18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 25px;
}

.empty-state h3 {
    margin: 0;

    font-size: 20px;
    font-weight: 800;
}

.empty-state p {
    margin:
        8px
        0
        20px;

    color: var(--text-light);
}

.empty-button {
    display: inline-flex;

    padding:
        10px
        16px;

    border-radius: 9px;

    background: var(--primary);

    color: #fff;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 100px 0;

    background: #f4f7fa;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        .75fr;

    align-items: center;

    gap: 90px;
}

.about-content h2 {
    max-width: 680px;

    margin:
        0
        0
        22px;

    color: var(--text);

    font-size: 42px;
    line-height: 1.12;

    font-weight: 900;

    letter-spacing: -1.7px;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content > p {
    max-width: 650px;

    margin: 0;

    color: var(--text-light);

    font-size: 16px;

    line-height: 1.75;
}

.about-points {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 28px;
}

.about-points div {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #536476;

    font-size: 12px;
    font-weight: 700;
}

.about-points i {
    color: var(--green);

    font-size: 16px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-card {
    padding: 35px;

    border-radius: 20px;

    background: #fff;

    box-shadow:
        var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 13px;

    background: #e9f8f0;

    color: #14945a;

    font-size: 23px;
}

.contact-card h3 {
    margin:
        5px
        0
        10px;

    font-size: 25px;

    font-weight: 900;
}

.contact-card p {
    margin:
        0
        0
        23px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.65;
}

.whatsapp-button {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    width: 100%;

    min-height: 48px;

    border-radius: 10px;

    background: #15945a;

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    transition: .2s ease;
}

.whatsapp-button:hover {
    background: #107a4a;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px
        rgba(21,148,90,.20);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 25px 0;

    background: #0d2945;

    color: #fff;
}

.footer-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-brand {
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
}

.footer-brand span {
    color: #8bc8f5;
}

.brand-icon-f{
     width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff;

    color: #fff;

    font-size: 20px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);
}


.footer-copy {
    color: rgba(255,255,255,.55);

    font-size: 11px;
}





/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1199px) {

    .search-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .search-field-large {
        grid-column: span 2;
    }

    .search-action {
        grid-column: span 1;
    }

    .property-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .about-grid {
        gap: 50px;
    }

}


@media (max-width: 991px) {

    .site-navbar {
        position: absolute;
    }

    .site-navbar .navbar-collapse {
        margin-top: 15px;

        padding: 12px;

        border-radius: 14px;

        background: #102a46;
    }

    .site-navbar .nav-link.active::after {
        display: none;
    }

    .btn-panel {
        margin-top: 8px;

        justify-content: center;
    }

    .hero {
        min-height: auto;

        padding:
            140px
            0
            60px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .search-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .search-field-large {
        grid-column: span 2;
    }

    .search-action {
        grid-column: span 2;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 767px) {

    .site-navbar {
        padding: 12px 0;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding:
            120px
            0
            40px;
    }

    .hero h1 {
        font-size: 42px;

        letter-spacing: -1.8px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .search-box {
        margin-top: 30px;

        padding: 17px;

        border-radius: 15px;
    }

    .search-grid {
        grid-template-columns: 1fr;

        gap: 11px;
    }

    .search-field-large,
    .search-action {
        grid-column: span 1;
    }

    .search-action button {
        width: 100%;
    }

    .properties-section,
    .about-section {
        padding:
            65px
            0;
    }

    .section-header {
        display: block;

        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .property-count {
        display: inline-block;

        margin-top: 15px;
    }

    .property-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .property-image {
        height: 235px;
    }

    .property-features {
        gap: 2px;
    }

    .feature {
        flex-direction: column;

        gap: 2px;
    }

    .feature > i {
        font-size: 16px;
    }

    .feature strong {
        font-size: 11px;
    }

    .feature small {
        display: none;
    }

    .about-content h2 {
        font-size: 31px;

        letter-spacing: -1px;
    }

    .about-points {
        display: grid;

        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 27px;
    }

    .footer-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 420px) {

    .hero h1 {
        font-size: 36px;
    }

    .property-content {
        padding: 18px;
    }

    .property-image {
        height: 220px;
    }

    .property-footer {
        align-items: center;
    }

    .property-price strong {
        font-size: 17px;
    }

    .property-button {
        padding:
            9px
            10px;
    }

}


/* acrescentado*/


/* =========================================================
P���GINA INDIVIDUAL DO IM���VEL
========================================================= */

.property-detail-page {
padding: 125px 0 90px;
background: #f7f9fb;
min-height: calc(100vh - 80px);
}

.detail-back {
margin-bottom: 25px;
}

.detail-back a {
display: inline-flex;
align-items: center;
gap: 7px;


color: #647487;

font-size: 12px;
font-weight: 700;

transition: .2s ease;


}

.detail-back a:hover {
color: #1769aa;
}

.detail-layout {
display: grid;

grid-template-columns:
    minmax(0, 1.45fr)
    minmax(360px, .75fr);

gap: 42px;

align-items: start;


}

/* =========================================================
GALERIA PRINCIPAL
========================================================= */

.detail-gallery {
min-width: 0;
}

.main-photo-wrapper {
position: relative;


width: 100%;

overflow: hidden;

border-radius: 20px;

background: #e9eef2;

box-shadow:
    0 12px 35px rgba(16,42,70,.10);


}

.property-main-gallery {
width: 100%;
}

.property-main-gallery .carousel-inner {
width: 100%;
}

.property-main-gallery .carousel-item {
width: 100%;
}

.main-property-photo {
display: block;


width: 100%;

height: 540px;

object-fit: cover;

}

/* =========================================================
GALERIA - SETAS
========================================================= */

.gallery-arrow {
position: absolute;

`top: 50%;

z-index: 5;

width: 44px;
height: 44px;

display: flex;

align-items: center;
justify-content: center;

border: 0;

border-radius: 50%;

background: rgba(0,0,0,.58);

color: #fff;

transform: translateY(-50%);

transition: .2s ease;

opacity: .95;

}

.gallery-arrow:hover {
background: #1769aa;

transform:
    translateY(-50%)
    scale(1.05);

}

.gallery-arrow i {
font-size: 20px;
}

.gallery-prev {
left: 18px;
}

.gallery-next {
right: 18px;
}

.gallery-counter {
position: absolute;
ight: 18px;
bottom: 18px;

z-index: 5;

padding: 8px 12px;

border-radius: 8px;

background: rgba(0,0,0,.58);

color: #fff;

font-size: 11px;
font-weight: 700;
}

/* =========================================================
MINIATURAS
========================================================= */

.property-thumbnails {
display: flex;

ap: 9px;

margin-top: 10px;

overflow-x: auto;

padding:
    2px
    2px
    8px;
}

.property-thumbnail {
flex: 0 0 88px;

idth: 88px;
height: 65px;

padding: 0;

overflow: hidden;

border:
    2px solid
    transparent;

border-radius: 9px;

background: #fff;

cursor: pointer;

opacity: .65;

transition: .2s ease;


}

.property-thumbnail:hover {
opacity: 1;
}

.property-thumbnail.active {
border-color: #1769aa;


opacity: 1;


}

.property-thumbnail img {
display: block;

width: 100%;
height: 100%;

object-fit: cover;


.property-no-photo-large {
height: 540px;

splay: flex;

flex-direction: column;

align-items: center;
justify-content: center;

gap: 10px;

border-radius: 20px;

background:
    linear-gradient(
        135deg,
        #e9eef2,
        #dfe7ed
    );

color: #9aa8b6;


.property-no-photo-large i {
font-size: 65px;
}

.property-no-photo-large span {
font-size: 13px;
font-weight: 700;
}

/* =========================================================
INFORMA������ES DO IM���VEL
========================================================= */

.detail-info {
min-width: 0;

dding:
    5px
    0;


.detail-badges {
display: flex;

ex-wrap: wrap;

gap: 7px;

margin-bottom: 12px;


.detail-purpose,
.detail-featured {
display: inline-flex;


align-items: center;

gap: 5px;

padding:
    7px
    10px;

border-radius: 7px;

font-size: 10px;
font-weight: 800;


}

.detail-purpose {
background: #1769aa;

color: #fff;


}

.detail-featured {
background: #fff5dc;


color: #9a6b00;


}

.detail-code {
color: #8997a6;


font-size: 10px;
font-weight: 700;

text-transform: uppercase;

letter-spacing: .4px;


}

.detail-code span {
margin: 0 4px;
}

.detail-title {
margin:
10px
0
10px;


color: #172536;

font-size:
    clamp(28px, 3vw, 40px);

line-height: 1.12;

font-weight: 900;

letter-spacing: -1.5px;


}

.detail-location {
display: flex;


align-items: flex-start;

gap: 7px;

color: #647487;

font-size: 13px;

line-height: 1.5;


}

.detail-location i {
margin-top: 2px;


color: #1769aa;


}

.detail-price {
margin:
22px
0;

color: #1769aa;

font-size: 32px;
line-height: 1.1;

font-weight: 900;


}

/* =========================================================
GRID DE CARACTER���STICAS
========================================================= */

.detail-info .detail-grid {
display: grid;

```
grid-template-columns:
    repeat(4, 1fr);

overflow: hidden;

border:
    1px solid
    #e1e8ee;

border-radius: 14px;

background: #fff;
```

}

.detail-info .detail-grid > div {
min-width: 0;

```
padding:
    15px
    8px;

text-align: center;

border-right:
    1px solid
    #e7edf2;
```

}

.detail-info .detail-grid > div:last-child {
border-right: 0;
}

.detail-info .detail-grid i {
display: block;

```
margin-bottom: 7px;

color: #1769aa;

font-size: 18px;
```

}

.detail-info .detail-grid strong {
display: block;

```
color: #172536;

font-size: 13px;
font-weight: 800;
```

}

.detail-info .detail-grid small {
display: block;

```
margin-top: 3px;

color: #8996a4;

font-size: 10px;
```

}

/* =========================================================
CUSTOS
========================================================= */

.detail-costs {
display: flex;

```
flex-wrap: wrap;

gap: 10px;

margin-top: 12px;
```

}

.detail-costs > div {
flex: 1;

```
min-width: 120px;

padding:
    12px
    14px;

border-radius: 10px;

background: #edf3f7;
```

}

.detail-costs small {
display: block;

```
margin-bottom: 4px;

color: #7c8b99;

font-size: 10px;
```

}

.detail-costs strong {
color: #172536;

```
font-size: 13px;
font-weight: 800;
```

}

/* =========================================================
WHATSAPP
========================================================= */

.detail-whatsapp {
width: 100%;

```
min-height: 53px;

display: flex;

align-items: center;
justify-content: center;

gap: 9px;

margin-top: 18px;

border-radius: 11px;

background: #15945a;

color: #fff;

font-size: 13px;
font-weight: 800;

box-shadow:
    0 10px 22px rgba(21,148,90,.18);

transition: .2s ease;
```

}

.detail-whatsapp:hover {
background: #107c4c;

```
color: #fff;

transform: translateY(-2px);
```

}

/* =========================================================
PARTE INFERIOR DO IM���VEL
========================================================= */

.detail-bottom-grid {
display: grid;

```
grid-template-columns:
    minmax(0, 1.5fr)
    minmax(280px, .6fr);

gap: 28px;

margin-top: 32px;
```

}

.detail-description-card {
padding: 32px;

```
border:
    1px solid
    #e2e8ed;

border-radius: 18px;

background: #fff;

box-shadow:
    0 6px 22px rgba(16,42,70,.05);
```

}

.detail-section-label {
margin-bottom: 7px;

```
color: #1769aa;

font-size: 10px;
font-weight: 900;

letter-spacing: 1.7px;
```

}

.detail-description-card h2 {
margin:
0
0
18px;

```
color: #172536;

font-size: 26px;

font-weight: 900;
```

}

.description {
color: #647487;

```
font-size: 14px;

line-height: 1.8;

white-space: pre-line;
```

}

.description-empty {
color: #8997a6;

```
font-size: 13px;
```

}

/* =========================================================
CARACTER���STICAS
========================================================= */

.detail-characteristics {
margin-top: 32px;

```
padding-top: 25px;

border-top:
    1px solid
    #edf1f4;
```

}

.detail-characteristics h3 {
margin:
0
0
16px;

```
color: #172536;

font-size: 19px;

font-weight: 800;
```

}

.detail-characteristics .char-list {
display: grid;

```
grid-template-columns:
    repeat(2, 1fr);

gap: 10px;
```

}

.detail-characteristics .char-list span {
display: flex;

```
align-items: flex-start;

gap: 7px;

color: #617182;

font-size: 12px;

line-height: 1.5;
```

}

.detail-characteristics .char-list i {
flex-shrink: 0;

```
color: #15945a;
```

}

/* =========================================================
CARDS LATERAIS
========================================================= */

.detail-side {
display: flex;

```
flex-direction: column;

gap: 13px;
```

}

.detail-address-card,
.detail-map-card {
display: flex;

```
align-items: flex-start;

gap: 13px;

padding: 20px;

border:
    1px solid
    #e2e8ed;

border-radius: 15px;

background: #fff;

box-shadow:
    0 6px 22px rgba(16,42,70,.05);
```

}

.side-icon {
flex-shrink: 0;

```
width: 42px;
height: 42px;

display: flex;

align-items: center;
justify-content: center;

border-radius: 10px;

background: #eaf4fb;

color: #1769aa;

font-size: 19px;
```

}

.detail-address-card small,
.detail-map-card small {
display: block;

```
margin-bottom: 5px;

color: #8997a6;

font-size: 10px;
font-weight: 700;

text-transform: uppercase;
```

}

.detail-address-card strong {
display: block;

```
color: #425466;

font-size: 12px;

line-height: 1.5;
```

}

.detail-map-card a {
color: #1769aa;

```
font-size: 12px;
font-weight: 800;
```

}

.detail-map-card a:hover {
text-decoration: underline;
}

/* =========================================================
LOGIN
========================================================= */

.login-page {
min-height: 100vh;

```
margin: 0;

display: flex;

align-items: center;
justify-content: center;

padding: 30px 15px;

background:
    radial-gradient(
        circle at 80% 20%,
        rgba(63,139,190,.28),
        transparent 30%
    ),
    linear-gradient(
        135deg,
        #0b2945,
        #17618e
    );
```

}

.login-wrapper {
width: 100%;

```
display: flex;

align-items: center;
justify-content: center;
```

}

.login-card {
width: 100% !important;

```
max-width: 430px !important;

margin: 0 auto;

padding: 38px !important;

border-radius: 20px;

background: #fff;

box-shadow:
    0 30px 70px rgba(0,0,0,.25);
```

}

.login-brand {
display: inline-flex;

```
align-items: center;

gap: 9px;

margin-bottom: 32px;

color: #172536;

font-size: 19px;
font-weight: 900;
```

}

.login-brand:hover {
color: #172536;
}

.login-brand > span:last-child > span {
color: #1769aa;
}

.login-brand-icon {
width: 40px;
height: 40px;


display: flex;

align-items: center;
justify-content: center;

border-radius: 11px;

background: #1769aa;

color: #fff;

font-size: 19px;


}

.login-header {
margin-bottom: 25px;
}

.login-header h1 {
margin:
0
0
7px;


color: #172536;

font-size: 25px;

line-height: 1.2;

font-weight: 900;

letter-spacing: -.7px;


}

.login-header p {
margin: 0;


color: #718093;

font-size: 12px;

line-height: 1.5;


}

/* =========================================================
ERRO LOGIN
========================================================= */

.login-error {
display: flex;

```
align-items: center;

gap: 9px;

margin-bottom: 20px;

padding: 12px 14px;

border:
    1px solid
    #f2c8c8;

border-radius: 9px;

background: #fff3f3;

color: #a92d2d;

font-size: 12px;
```

}

.login-error i {
font-size: 15px;
}

/* =========================================================
CAMPOS LOGIN
========================================================= */

.login-form {
width: 100%;
}

.login-field {
width: 100%;

```
margin-bottom: 17px;
```

}

.login-field label {
display: block;

```
margin-bottom: 7px;

color: #4f6072;

font-size: 11px;
font-weight: 800;
```

}

.login-input {
position: relative;

```
width: 100%;
```

}

.login-input i {
position: absolute;

```
left: 14px;
top: 50%;

z-index: 2;

transform: translateY(-50%);

color: #8a98a6;

font-size: 15px;

pointer-events: none;
```

}

.login-input input {
display: block;

```
width: 100% !important;

height: 48px !important;

margin: 0 !important;

padding:
    0
    14px
    0
    40px !important;

border:
    1px solid
    #dce4ea !important;

border-radius: 9px !important;

outline: none;

background: #fff !important;

color: #172536 !important;

font-family: inherit;

font-size: 13px !important;

box-shadow: none !important;

transition: .2s ease;
```

}

.login-input input:focus {
border-color: #1769aa !important;

```
box-shadow:
    0 0 0 3px
    rgba(23,105,170,.10) !important;
```

}

/* =========================================================
BOT���O LOGIN
========================================================= */

.login-submit {
width: 100% !important;

```
height: 50px !important;

display: flex;

align-items: center;
justify-content: center;

gap: 8px;

margin-top: 8px;

padding: 0 20px;

border: 0 !important;

border-radius: 9px !important;

background:
    linear-gradient(
        135deg,
        #1975b8,
        #155f98
    ) !important;

color: #fff !important;

font-family: inherit;

font-size: 13px !important;
font-weight: 800;

cursor: pointer;

transition: .2s ease;
```

}

.login-submit:hover {
transform: translateY(-2px);

```
box-shadow:
    0 10px 22px
    rgba(23,105,170,.22);
```

}

.login-back {
display: flex;

```
align-items: center;
justify-content: center;

gap: 6px;

margin-top: 22px;

color: #718093;

font-size: 11px;
font-weight: 700;
```

}

.login-back:hover {
color: #1769aa;
}

/* =========================================================
RESPONSIVO DA P���GINA DO IM���VEL
========================================================= */

@media (max-width: 991px) {

```
.detail-layout {
    grid-template-columns: 1fr;

    gap: 30px;
}

.detail-info {
    padding: 0;
}

.main-property-photo,
.property-no-photo-large {
    height: 480px;
}

.detail-bottom-grid {
    grid-template-columns: 1fr;
}
```

}

@media (max-width: 767px) {

```
.property-detail-page {
    padding:
        105px
        0
        60px;
}

.main-property-photo,
.property-no-photo-large {
    height: 330px;
}

.property-main-gallery,
.main-photo-wrapper,
.property-no-photo-large {
    border-radius: 14px;
}

.property-thumbnail {
    flex-basis: 75px;

    width: 75px;
    height: 55px;
}

.detail-title {
    font-size: 29px;

    letter-spacing: -1px;
}

.detail-price {
    font-size: 27px;
}

.detail-info .detail-grid {
    grid-template-columns:
        repeat(2, 1fr);
}

.detail-info .detail-grid > div:nth-child(2) {
    border-right: 0;
}

.detail-info .detail-grid > div:nth-child(-n+2) {
    border-bottom:
        1px solid
        #e7edf2;
}

.detail-bottom-grid {
    margin-top: 24px;
}

.detail-description-card {
    padding: 23px;
}

.detail-characteristics .char-list {
    grid-template-columns: 1fr;
}

.gallery-arrow {
    width: 38px;
    height: 38px;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-counter {
    right: 10px;
    bottom: 10px;
}

.login-card {
    max-width: 400px !important;

    padding: 30px 24px !important;
}




@media (max-width: 400px) {


.main-property-photo,
.property-no-photo-large {
    height: 280px;
}

.detail-title {
    font-size: 25px;
}

.login-card {
    padding:
        27px
        20px !important;


}
}


.admin-search {
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
margin-bottom: 18px;
}

.admin-search-box {
width: 100%;
max-width: 520px;
height: 46px;
display: flex;
align-items: center;
background: #ffffff;
border: 1px solid #dfe5eb;
border-radius: 10px;
padding: 0 13px;
box-shadow: 0 3px 12px rgba(23,43,77,.04);
transition: .2s ease;
}

.admin-search-box:focus-within {
border-color: #1769aa;
box-shadow: 0 0 0 3px rgba(23,105,170,.08);
}

.admin-search-box > i {
color: #8a96a5;
font-size: 16px;
margin-right: 10px;
}

.admin-search-box input {
width: 100%;
height: 100%;
border: 0;
outline: 0;
background: transparent;
color: #172b4d;
font-size: 12px;
font-family: inherit;
}

.admin-search-box input::placeholder {
color: #9aa5b1;
}

.admin-search-box button {
width: 28px;
height: 28px;
padding: 0;
border: 0;
background: transparent;
color: #98a2b3;
display: none;
align-items: center;
justify-content: center;
border-radius: 6px;
cursor: pointer;
}

.admin-search-box button:hover {
background: #f1f4f7;
color: #172b4d;
}

#resultadoPesquisa {
color: #8a96a5;
font-size: 11px;
white-space: nowrap;
}

.admin-table tbody tr.search-hidden {
display: none;
}






.offcanvas {
border: 0;
}

#captarImovelDrawer .offcanvas-header {
padding: 22px 30px;
background: #fff;
}

#captarImovelDrawer .offcanvas-body {
padding: 28px 30px 35px;
background: #f8f9fa;
}

#captarImovelDrawer form {
background: #fff;
border: 1px solid #e7e9ec;
border-radius: 12px;
padding: 28px;
box-shadow: 0 2px 10px rgba(0,0,0,.03);
}

#captarImovelDrawer h5 {
font-size: 17px;
font-weight: 600;
margin-bottom: 18px;
}

#captarImovelDrawer .form-label {
font-size: 13px;
font-weight: 600;
color: #343a40;
margin-bottom: 7px;
}

#captarImovelDrawer .form-control,
#captarImovelDrawer .form-select {
min-height: 46px;
border: 1px solid #dfe3e7;
border-radius: 7px;
padding: 10px 13px;
font-size: 14px;
box-shadow: none;
}

#captarImovelDrawer textarea.form-control {
min-height: auto;
resize: vertical;
}

#captarImovelDrawer .form-control:focus,
#captarImovelDrawer .form-select:focus {
border-color: #86b7fe;
box-shadow: 0 0 0 .2rem rgba(13,110,253,.08);
}

#captarImovelDrawer hr {
border-color: #e9ecef;
opacity: 1;
margin: 28px 0;
}

#captarImovelDrawer .alert {
border-radius: 8px;
line-height: 1.5;
}

#captarImovelDrawer button[type="submit"] {
min-height: 52px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
}

@media (max-width: 700px) {

#captarImovelDrawer {
    width: 100% !important;
}

#captarImovelDrawer .offcanvas-header {
    padding: 18px 20px;
}

#captarImovelDrawer .offcanvas-body {
    padding: 20px 15px 30px;
}

#captarImovelDrawer form {
    padding: 20px 16px;
    border-radius: 10px;
}

}

.btn-anunciar { white-space: nowrap; } @media (max-width: 575.98px) { .btn-anunciar { font-size: 12px; padding: 8px 10px; } .brand-name small { display: none; } }




.privacy-consent-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1rem;
}

.privacy-consent-title {
    font-size: .88rem;
}

.privacy-consent-text p {
    font-size: .75rem;
}


