
/* ============ Layout shell ============ */
.rm-shell[data-v-a3429dde] {
  --rm-bg: #ffffff;
  --rm-bg-soft: #f7f8fa;
  --rm-surface: #ffffff;
  --rm-border: #e6e8ec;
  --rm-text: #1f2937;
  --rm-text-soft: #6b7280;
  --rm-text-muted: #9ca3af;
  --rm-primary: #5e35b1;
  --rm-primary-soft: #ede9fe;
  --rm-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --rm-shadow-hover: 0 6px 16px rgba(15, 23, 42, 0.08);

  background: var(--rm-bg);
  color: var(--rm-text);
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.rm-shell.rm-dark[data-v-a3429dde] {
  --rm-bg: #0f1115;
  --rm-bg-soft: #161a22;
  --rm-surface: #1b2030;
  --rm-border: #262c3a;
  --rm-text: #e5e7eb;
  --rm-text-soft: #9ca3af;
  --rm-text-muted: #6b7280;
  --rm-primary: #a78bfa;
  --rm-primary-soft: #2a2143;
  --rm-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  --rm-shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.45);
}

/* ============ Header ============ */
.rm-header[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rm-border);
  background: var(--rm-bg);
}
.rm-header__left[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.rm-header__icon[data-v-a3429dde] {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--rm-primary-soft);
  color: var(--rm-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rm-header__title[data-v-a3429dde] {
  font-size: 16px;
  font-weight: 600;
  color: var(--rm-text);
  letter-spacing: 0.2px;
}
.rm-header__subtitle[data-v-a3429dde] {
  font-size: 12px;
  color: var(--rm-text-soft);
  margin-top: 2px;
}
.rm-header__right[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.rm-header__count[data-v-a3429dde] {
  font-size: 13px;
  color: var(--rm-text-soft);
}
.rm-icon-btn[data-v-a3429dde] {
  color: var(--rm-text-soft);
}

/* ============ Body ============ */
.rm-body[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
}

/* ============ Sidebar ============ */
.rm-sidebar[data-v-a3429dde] {
  width: 220px;
  border-right: 1px solid var(--rm-border);
  padding: 16px 12px;
  background: var(--rm-bg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rm-sidebar__section-title[data-v-a3429dde] {
  font-size: 11px;
  letter-spacing: 0.8px;
  color: var(--rm-text-muted);
  font-weight: 600;
  padding: 0 10px;
  margin-bottom: 8px;
}
.rm-sidebar__list[data-v-a3429dde] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.rm-sidebar__item[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--rm-text-soft);
  font-size: 13.5px;
  -webkit-transition: background 120ms ease, color 120ms ease;
  transition: background 120ms ease, color 120ms ease;
}
.rm-sidebar__item[data-v-a3429dde]:hover {
  background: var(--rm-bg-soft);
  color: var(--rm-text);
}
.rm-sidebar__item--active[data-v-a3429dde] {
  background: var(--rm-primary-soft);
  color: var(--rm-primary);
  font-weight: 600;
}
.rm-sidebar__item-icon[data-v-a3429dde] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rm-sidebar__item-label[data-v-a3429dde] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.rm-sidebar__item-count[data-v-a3429dde] {
  font-size: 12px;
  color: var(--rm-text-muted);
  background: transparent;
}
.rm-sidebar__item--active .rm-sidebar__item-count[data-v-a3429dde] {
  color: var(--rm-primary);
}

/* ============ Main ============ */
.rm-main[data-v-a3429dde] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  background: var(--rm-bg);
}
.rm-toolbar[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rm-border);
}
.rm-search[data-v-a3429dde] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0 10px;
  height: 36px;
  border: 1px solid var(--rm-border);
  border-radius: 9px;
  background: var(--rm-bg);
  -webkit-transition: border-color 120ms ease;
  transition: border-color 120ms ease;
}
.rm-search[data-v-a3429dde]:focus-within {
  border-color: var(--rm-primary);
}
.rm-search__icon[data-v-a3429dde] {
  color: var(--rm-text-muted);
}
.rm-search__input[data-v-a3429dde] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--rm-text);
  font-size: 13.5px;
}
.rm-search__input[data-v-a3429dde]::-webkit-input-placeholder {
  color: var(--rm-text-muted);
}
.rm-search__input[data-v-a3429dde]::-moz-placeholder {
  color: var(--rm-text-muted);
}
.rm-search__input[data-v-a3429dde]:-ms-input-placeholder {
  color: var(--rm-text-muted);
}
.rm-search__input[data-v-a3429dde]::-ms-input-placeholder {
  color: var(--rm-text-muted);
}
.rm-search__input[data-v-a3429dde]::placeholder {
  color: var(--rm-text-muted);
}
.rm-search__clear[data-v-a3429dde] {
  cursor: pointer;
  color: var(--rm-text-muted);
}
.rm-toolbar__actions[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.rm-tool-btn[data-v-a3429dde] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 36px;
  border: 1px solid var(--rm-border);
  border-radius: 9px;
  background: var(--rm-bg);
  color: var(--rm-text-soft);
  font-size: 13px;
  cursor: pointer;
  -webkit-transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.rm-tool-btn[data-v-a3429dde]:hover {
  background: var(--rm-bg-soft);
  color: var(--rm-text);
}
.rm-tool-btn--icon[data-v-a3429dde] {
  padding: 0;
  width: 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ============ Content ============ */
.rm-content[data-v-a3429dde] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 18px;
}
.rm-empty[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 20px;
  color: var(--rm-text-muted);
}
.rm-empty__icon[data-v-a3429dde] {
  margin-bottom: 12px;
  opacity: 0.5;
}
.rm-empty__text[data-v-a3429dde] {
  font-size: 14px;
}
.rm-list[data-v-a3429dde] {
  display: grid;
  gap: 14px;
}
.rm-list--grid[data-v-a3429dde] {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.rm-list--rows[data-v-a3429dde] {
  grid-template-columns: 1fr;
}

/* ============ Card ============ */
.rm-card[data-v-a3429dde] {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: 12px;
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-shadow: var(--rm-shadow);
          box-shadow: var(--rm-shadow);
  -webkit-transition: border-color 120ms ease, -webkit-box-shadow 120ms ease, -webkit-transform 120ms ease;
  transition: border-color 120ms ease, -webkit-box-shadow 120ms ease, -webkit-transform 120ms ease;
  transition: box-shadow 120ms ease, transform 120ms ease, border-color 120ms ease;
  transition: box-shadow 120ms ease, transform 120ms ease, border-color 120ms ease, -webkit-box-shadow 120ms ease, -webkit-transform 120ms ease;
}
.rm-card[data-v-a3429dde]:hover {
  -webkit-box-shadow: var(--rm-shadow-hover);
          box-shadow: var(--rm-shadow-hover);
  border-color: rgba(94, 53, 177, 0.25);
}
.rm-card__top[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rm-card__icon[data-v-a3429dde] {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rm-card__fav[data-v-a3429dde] {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--rm-text-muted);
  padding: 4px;
  border-radius: 6px;
  -webkit-transition: color 120ms ease, background 120ms ease;
  transition: color 120ms ease, background 120ms ease;
}
.rm-card__fav[data-v-a3429dde]:hover {
  color: #f59e0b;
  background: var(--rm-bg-soft);
}
.rm-card__fav--on[data-v-a3429dde] {
  color: #f59e0b;
}
.rm-card__title[data-v-a3429dde] {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--rm-text);
  line-height: 1.3;
}
.rm-card__subtitle[data-v-a3429dde] {
  font-size: 12.5px;
  color: var(--rm-text-soft);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rm-card__footer[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--rm-border);
}
.rm-card__time[data-v-a3429dde] {
  font-size: 11.5px;
  color: var(--rm-text-muted);
}
.rm-card__actions[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.rm-action-btn[data-v-a3429dde] {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--rm-text-soft);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 120ms ease, color 120ms ease;
  transition: background 120ms ease, color 120ms ease;
}
.rm-action-btn[data-v-a3429dde]:hover {
  background: var(--rm-bg-soft);
  color: var(--rm-primary);
}
.rm-action-btn--play[data-v-a3429dde] {
  background: var(--rm-primary-soft);
  color: var(--rm-primary);
}
.rm-action-btn--play[data-v-a3429dde]:hover {
  background: var(--rm-primary);
  color: #fff;
}

/* ============ Layout em linha ============ */
.rm-list--rows .rm-card[data-v-a3429dde] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.rm-list--rows .rm-card__top[data-v-a3429dde] {
  width: auto;
}
.rm-list--rows .rm-card__title[data-v-a3429dde],
.rm-list--rows .rm-card__subtitle[data-v-a3429dde] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.rm-list--rows .rm-card__footer[data-v-a3429dde] {
  border-top: 0;
  padding-top: 0;
  margin-left: auto;
  gap: 14px;
}

/* ============ Responsivo ============ */
@media (max-width: 900px) {
.rm-body[data-v-a3429dde] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.rm-sidebar[data-v-a3429dde] {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--rm-border);
}
.rm-sidebar__list[data-v-a3429dde] {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.rm-list--grid[data-v-a3429dde] {
    grid-template-columns: 1fr;
}
}

/* ============ Compat com classes legadas ============ */
.semRel[data-v-a3429dde] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}


/*# sourceMappingURL=chunk-64de02a9.c42cab09.css.map*/