/* download.css */
.download-box {
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid #b8860b;
  border-radius: 15px;
  padding: 30px;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.download-box h2 {
  color: #ffd700;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'MedievalSharp', cursive;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  border-bottom: 2px solid #b8860b;
  padding-bottom: 15px;
}

.download-option {
  background: rgba(139, 69, 19, 0.2);
  border: 1px solid #8b4513;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.download-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.download-header i {
  color: #ffd700;
  font-size: 2rem;
}

.download-header h3 {
  color: #ffd700;
  margin: 0;
  font-family: 'MedievalSharp', cursive;
  font-size: 1.5rem;
}

.file-size {
  color: #22c55e;
  font-weight: bold;
  margin-left: auto;
}

.download-option p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
}

.download-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.download-btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.download-btn.primary {
  background: linear-gradient(135deg, #b8860b, #ffd700);
  color: #000;
  border: 2px solid #ffd700;
}

.download-btn.secondary {
  background: rgba(139, 69, 19, 0.3);
  color: #ffd700;
  border: 2px solid #8b4513;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.installation-guide,
.system-requirements {
  background: rgba(139, 69, 19, 0.2);
  border: 1px solid #8b4513;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
}

.installation-guide h3,
.system-requirements h3 {
  color: #ffd700;
  margin-bottom: 20px;
  font-family: 'MedievalSharp', cursive;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.step-number {
  background: #ffd700;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: 'MedievalSharp', cursive;
}

.step p {
  margin: 0;
  color: #fff;
}

.step code {
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 6px;
  border-radius: 4px;
  color: #ffd700;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.req-column h4 {
  color: #ffd700;
  margin-bottom: 15px;
  font-family: 'MedievalSharp', cursive;
}

.req-column ul {
  list-style: none;
  padding: 0;
}

.req-column li {
  padding: 5px 0;
  color: #ccc;
  border-bottom: 1px solid rgba(139, 69, 19, 0.3);
}

.req-column li:last-child {
  border-bottom: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .download-links {
    flex-direction: column;
  }
  
  .guide-steps {
    grid-template-columns: 1fr;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}