/* Seções de conteúdo */
.content-sections {
  width: 100%;
}

.content-section {
  width: 100%;
  display: none;
  opacity: 0;
  transform: translateX(10px);
}

.content-section.active {
  display: block;
  animation: fadeInRight 0.2s ease-out forwards;
}

/* Botões de download */
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  align-items: center;
  animation: fadeInRight 0.2s ease-out 0.2s backwards;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.download-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(145deg, var(--button-color), var(--button-hover));
  border: 1px solid var(--border-color);
  border-radius: 14px;
  color: var(--text-color-primary);
  text-decoration: none;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.download-button:hover {
  background: linear-gradient(145deg, #323238, #323238);
}

.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  padding: 6px;
  transition: all var(--transition-speed);
}

.button-text {
  flex-grow: 1;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.button-spacer {
  width: 20px;
}