.subitem {
  font-size: small;
  color: #555;
  margin-left: 8px;
  opacity: 0;
  transform: translateY(-4px);
  display: inline-block;
 transition: opacity 0.3s ease, transform 0.3s ease;
}

.subitem.visible {
  opacity: 1;
  transform: translateY(0);
}


.bookmark-completed {
    background-color: transparent;
    color: #155724;
    border: 1px solid #c3e6cb;
    cursor: default;
    pointer-events: none;
    opacity: 1; /* Evita efeito de "desligado" */
    border: none;
}

.bookmark-completed:hover {
    background-color: transparent;
    color: #155724;
    border: 1px solid #c3e6cb;
    cursor: default;
    border: none;
}


.bookmark-bloqued {
    background-color: transparent;
    color: #f05252;
    border: 1px solid #c3e6cb;
    cursor: default;
    pointer-events: none;
    opacity: 1; /* Evita efeito de "desligado" */
    border: none;
}

/* =========================[ PAGE HEADER - MODERNO CARD STYLE ]========================= */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 6px 20px 10px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-tiny);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.page-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 10px;
}

.page-header h2 i {
  background: var(--color-blue-primary);
  color: #fff;
  font-size: 16px;
  padding: 18px;
  border-radius: var(--radius-tiny);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.page-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Bookmark atualizado */
.page-header .bookmark {
  font-size: 18px;
  color: var(--color-gray);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.page-header .bookmark:hover {
  transform: scale(1.15);
  color: var(--color-blue-primary);
}

/* =========================[ SECTION TITLE - MODERNO CARD STYLE ]========================= */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  padding: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-tiny);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  width: 100%;
  margin-bottom: 10px;
}

.section-title i {
  background: var(--color-blue-primary);
  color: #fff;
  padding: 12px 8px 8px 7px;
  border-radius: var(--radius-tiny);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}
