/* Versão 1.0.0 */

.manual-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.search-input {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--color-neon);
  box-shadow: 0 0 0 2px rgba(12, 255, 185, 0.2);
  outline: none;
}

#searchInput::placeholder {
  color: var(--text-tertiary);
}

.category-tab {
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.category-tab:hover {
  border-color: var(--color-neon);
}

.category-tab.active {
  border-color: var(--color-neon);
  background-color: rgba(12, 255, 185, 0.1);
}

.manual-section {
  display: none;
}

.manual-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.doc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(12, 255, 185, 0.2), rgba(0, 179, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.doc-icon i {
  font-size: 1.5rem;
  background: linear-gradient(90deg, #0cffb9, #00b3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.manual-section-title {
  border-bottom: 1px solid var(--border-color);
}
