/* public/css/hoteles.css */

.hero-hoteles {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    padding: 80px 0 40px;
    margin-bottom: 2rem;
}

.hero-titulo {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.hero-titulo span {
    color: #3b82f6;
}

/* Filtros */
.filtros-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

/* Cards de hotel */
.hotel-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: transform .2s, box-shadow .2s;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.13);
}

.hotel-foto {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.foto-placeholder {
    width: 100%;
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 2.5rem;
}

.hotel-precio {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

.hotel-nombre {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

.badge-destacado {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Botones card */
.btn-ver-hotel {
    flex: 1;
    text-align: center;
    padding: 7px 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    transition: background .2s;
}

.btn-ver-hotel:hover { background: #1e293b; color: #fff; }

.btn-wsp-hotel {
    flex: 1;
    text-align: center;
    padding: 7px 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    transition: background .2s;
}

.btn-wsp-hotel:hover { background: #1ebe5d; color: #fff; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
    font-size: 1.5rem;
}

.empty-state p { font-size: 1rem; margin-top: .5rem; }

/* Mapa */
#mapaHoteles {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
}
