/* =====================================================
   HERO
===================================================== */

.hero-hotel{
    height:420px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
    background:url('/images/hotel.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;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:#fff;

    padding:40px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    background:#f59e0b;

    color:#fff;

    padding:10px 18px;

    border-radius:12px;

    font-weight:700;

    margin-bottom:20px;
}

.hero-content h1{
    font-size:52px;
    font-weight:900;
    margin-bottom:12px;
}

.hero-content p{
    font-size:18px;
    opacity:.95;
    margin-bottom:30px;
}

/* =====================================================
   HERO SEARCH
===================================================== */

.hero-search{

    width:100%;
    max-width:900px;

    display:flex;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    margin:0 auto;
}

.hero-search input{

    flex:1;

    border:none;

    padding:20px;

    outline:none;

    font-size:15px;
}

.hero-search button{

    border:none;

    background:#2563eb;

    color:#fff;

    padding:0 35px;

    font-weight:700;

    transition:.3s;
}

.hero-search button:hover{

    background:#1d4ed8;
}

/* =====================================================
   ESTATÍSTICAS
===================================================== */

.market-stats{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    margin:40px 0;
}

.stat-card{

    background:#fff;

    border-radius:24px;

    padding:30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;
}

.stat-card:hover{

    transform:translateY(-5px);
}

.stat-card h3{

    color:#2563eb;

    font-size:38px;

    font-weight:900;

    margin-bottom:8px;
}

.stat-card p{

    color:#64748b;

    margin:0;
}

/* =====================================================
   SIDEBAR
===================================================== */

.sidebar-stack{
    position:sticky;
    top:20px;
}

.sidebar-card{

    background:#fff;

    border-radius:24px;

    padding:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.sidebar-title{

    font-size:18px;

    font-weight:800;

    margin-bottom:20px;
}

.sidebar-card label{

    font-weight:600;

    margin-bottom:6px;

    color:#334155;
}

.sidebar-card .form-control,
.sidebar-card .form-select{

    min-height:48px;

    border-radius:12px;

    border:1px solid #e5e7eb;
}

.sidebar-card .btn{

    min-height:50px;

    border-radius:12px;

    font-weight:700;
}

/* =====================================================
   RESULTADOS
===================================================== */

.resultado-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;
}

.resultado-header h3{

    font-size:30px;

    font-weight:900;

    margin:0;
}

.resultado-header p{

    margin-top:5px;

    color:#64748b;
}

/* =====================================================
   CARD HOTEL HORIZONTAL
===================================================== */

.hotel-card-horizontal{

    display:flex;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    min-height:220px;
}

.hotel-card-horizontal:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

/* =====================================================
   IMAGEM
===================================================== */

.hotel-image{

    width:280px;

    min-width:280px;

    position:relative;
}

.hotel-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.hotel-badge{

    position:absolute;

    top:15px;
    left:15px;

    background:#10b981;

    color:#fff;

    padding:8px 14px;

    border-radius:12px;

    font-size:12px;

    font-weight:700;
}

/* =====================================================
   CONTEÚDO
===================================================== */

.hotel-content{

    flex:1;

    padding:22px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;
}

.hotel-header{

    display:flex;

    justify-content:space-between;

    gap:20px;
}

.hotel-header h4{

    font-size:22px;

    font-weight:800;

    color:#111827;

    margin-bottom:8px;
}

.hotel-location{

    color:#64748b;

    font-size:14px;
}

/* =====================================================
   RATING
===================================================== */

.rating-box{

    width:55px;
    height:55px;

    border-radius:14px;

    background:#1d4ed8;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:16px;

    font-weight:800;
}

/* =====================================================
   FEATURES
===================================================== */

.hotel-features{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin:18px 0;
}

.hotel-features span{

    background:#f8fafc;

    border:1px solid #e2e8f0;

    padding:8px 12px;

    border-radius:12px;

    font-size:13px;

    color:#334155;
}

/* =====================================================
   PREÇO
===================================================== */

.hotel-footer{

    display:flex;

    justify-content:space-between;

    align-items:end;
}

.hotel-price small{

    display:block;

    color:#64748b;

    font-size:12px;

    font-weight:500;
}

.price-value{

    font-size:32px;

    font-weight:900;

    color:#0f172a;

    line-height:1.1;
}

.price-value span{

    font-size:13px;

    font-weight:600;

    color:#64748b;
}

/* =====================================================
   CTA
===================================================== */

.hotel-cta{

    margin-top:50px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1e40af
        );

    color:#fff;

    border-radius:24px;

    padding:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.hotel-cta h3{

    font-size:30px;

    font-weight:900;

    margin-bottom:10px;
}

.hotel-cta p{

    margin:0;

    opacity:.9;
}

.hotel-cta .btn{

    border-radius:14px;

    padding:12px 25px;

    font-weight:700;
}

/* =====================================================
   PAGINAÇÃO
===================================================== */

.pagination{

    justify-content:center;
}

.page-link{

    border:none;

    margin:0 3px;

    border-radius:12px;

    min-width:42px;

    text-align:center;

    color:#2563eb;

    box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.page-item.active .page-link{

    background:#2563eb;

    border-color:#2563eb;
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:992px){

    .hotel-card-horizontal{

        flex-direction:column;
    }

    .hotel-image{

        width:100%;
        min-width:100%;

        height:220px;
    }

    .hotel-footer{

        flex-direction:column;

        align-items:flex-start;

        gap:15px;
    }
}

@media(max-width:768px){

    .hero-content{

        padding:25px;
    }

    .hero-content h1{

        font-size:34px;
    }

    .hero-content p{

        font-size:15px;
    }

    .hero-search{

        flex-direction:column;
    }

    .hero-search button{

        height:55px;
    }

    .hotel-cta{

        flex-direction:column;

        text-align:center;

        gap:20px;
    }

    .resultado-header h3{

        font-size:24px;
    }
}