.spaces-toolbar {
  max-width: 720px;
}

/* Detalhe */
.space-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 992px) {
  .space-detail-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
  }
}

.space-hero-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.space-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  background: linear-gradient(135deg, rgba(169,12,21,0.08), rgba(0,0,0,0.03));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.space-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.space-hero-img--fallback {
  color: rgba(0,0,0,0.35);
  font-size: 40px;
}

.space-hero-body {
  padding: 14px 14px 16px 14px;
}

.space-desc {
  color: rgba(0,0,0,0.72);
  line-height: 1.55;
  white-space: pre-wrap;
}

.space-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 768px) {
  .space-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

.space-thumb {
  border-radius: 14px;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  position: relative;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}

.space-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.space-meta-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  padding: 14px 14px 16px 14px;
}

.space-meta-title {
  font-weight: 800;
  margin-bottom: 10px;
}

.space-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.space-meta-row:last-child {
  border-bottom: 0;
}

.space-meta-row span {
  color: rgba(0,0,0,0.65);
}

.space-utens {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.space-utens li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 10px 10px;
}

.space-docs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.space-doc {
  display: inline-flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.04);
  color: inherit;
  text-decoration: none;
}

.space-doc:hover {
  background: rgba(169,12,21,0.06);
  border-color: rgba(169,12,21,0.18);
}

