.download-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6c27a;
  font-family: 'Cinzel', serif;
  overflow: hidden;
}

.download-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
    url('../img/pngtree-an-image-of-a-mountain-valley-with-a-snowy-castle-image_2642761.jpg')
    center / cover no-repeat;
  z-index: 1;
}


.download-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
}

.download-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
}

.download-tag {
  font-size: 18px;
  letter-spacing: 2px;
  padding: 8px 24px;
}

.download-title {
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(230,194,122,0.35);
}

.download-subtitle {
  font-size: 22px;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto 35px;
}


/* MODAL */
.download-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.download-modal-content {
  background: #0b0b0b;
  padding: 40px;
  width: 90%;
  max-width: 900px;
  border: 1px solid #e6c27a;
  position: relative;
  color: #ddd;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 22px;
}

.download-links {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.download-box {
  flex: 1;
  padding: 20px;
  border: 1px solid #333;
  text-align: center;
  color: #e6c27a;
  text-decoration: none;
  transition: 0.3s;
}

.download-box:hover {
  background: rgba(230,194,122,0.1);
}

.requirements {
  margin-top: 30px;
}

.req-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #222;
}

/* ANIMAÇÃO */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
