.hero-imovel{
    height:420px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
    background:url('/images/imovel.jpg');
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.hero-content{
    position:relative;
    z-index:2;
    padding:80px;
    color:#fff;
    text-align:center;
}

.hero-search{
    max-width:900px;
    margin:auto;
    display:flex;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
}

.hero-search input{
    flex:1;
    border:none;
    padding:18px;
}

.hero-search button{
    border:none;
    background:#16a34a;
    color:#fff;
    padding:0 30px;
}

.market-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:40px 0;
}

.stat-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.property-card-horizontal{
    display:flex;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}
.property-card-mini{

    display:flex;

    align-items:center;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    min-height:190px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;
}

.property-card-mini:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.property-image{

    width:220px;

    min-width:220px;

    height:190px;

    position:relative;
}

.property-image img{

    width:100%;

    height:100%;

    object-fit:cover;
}

.property-badge{

    position:absolute;

    top:12px;

    left:12px;

    background:#16a34a;

    color:#fff;

    padding:6px 12px;

    border-radius:999px;

    font-size:11px;

    font-weight:700;
}

.property-body{

    flex:1;

    padding:18px 22px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;
}

.property-header{

    display:flex;

    justify-content:space-between;

    gap:20px;
}

.property-header h5{

    font-size:20px;

    font-weight:800;

    color:#111827;

    margin-bottom:6px;
}

.property-location{

    font-size:14px;

    color:#64748b;
}

.property-features{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin:15px 0;
}

.property-features span{

    background:#f8fafc;

    border:1px solid #e2e8f0;

    padding:8px 12px;

    border-radius:12px;

    font-size:13px;

    color:#475569;
}

.rating-box{

    width:50px;

    height:50px;

    border-radius:12px;

    background:#16a34a;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:15px;

    font-weight:800;
}

.property-footer{

    display:flex;

    justify-content:space-between;

    align-items:end;
}

.property-price small{

    display:block;

    font-size:12px;

    color:#64748b;

    margin-bottom:3px;
}

.price-value{

    font-size:28px;

    font-weight:900;

    color:#16a34a;

    line-height:1;
}

.price-value span{

    font-size:13px;

    font-weight:600;

    color:#64748b;
}

@media(max-width:768px){

    .property-card-mini{

        flex-direction:column;
    }

    .property-image{

        width:100%;

        height:220px;
    }

    .property-footer{

        flex-direction:column;

        align-items:flex-start;

        gap:15px;
    }
}

.property-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#16a34a;
    color:#fff;
    padding:8px 14px;
    border-radius:12px;
}

.rating-box{
    width:55px;
    height:55px;
    border-radius:14px;
    background:#15803d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.price-value{
    font-size:34px;
    font-weight:900;
    color:#15803d;
}

.sidebar-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.imovel-promo{
    margin-top:50px;
    background:linear-gradient(
        135deg,
        #15803d,
        #166534
    );
    color:#fff;
    border-radius:24px;
    padding:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.pagination{
    justify-content:center;
}

@media(max-width:768px){

    .property-card-horizontal{
        flex-direction:column;
    }

    .property-image{
        width:100%;
    }

    .hero-content{
        padding:35px;
    }

    .hero-search{
        flex-direction:column;
    }

    .imovel-promo{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }
}