/* public/css/hotel-detalle.css */

.foto-galeria {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 14px;
}

.foto-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s, opacity .2s;
    opacity: .7;
}

.foto-thumb.activa,
.foto-thumb:hover {
    border-color: #0d6efd;
    opacity: 1;
}

/* Ficha */
.ficha-card {
    border-radius: 16px;
    position: sticky;
    top: 90px;
}

.ficha-titulo {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.precio-grande {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.precio-noche {
    font-size: .9rem;
    font-weight: 400;
    color: #64748b;
}

.ficha-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .6rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: .9rem;
}

.ficha-item i {
    font-size: 1.1rem;
    color: #3b82f6;
    margin-top: 2px;
}

.ficha-label {
    font-size: .75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ficha-valor {
    font-weight: 600;
    color: #1e293b;
}

.ficha-valor a {
    color: #3b82f6;
    text-decoration: none;
}

/* Botón WhatsApp grande */
.btn-wsp-grande {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .85rem;
    border-radius: 10px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s;
}

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

/* Mapa detalle */
#mapaDetalle {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}
