body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #000;
  color: #fff;
}
.container {
  max-width: 740px;
  margin: 36px auto;
  background: #111;
  border-radius: 20px;
  box-shadow: 0 8px 48px #000a;
  padding: 30px 14px 20px 14px;
  border: 1.5px solid #181818;
  text-align: center;
}
.logo_href {
  display: inline-block;
  margin-bottom: 12px;
  width: 48px;
  height: 48px;
  background-color: #333; /* adiciona cor de fundo */
  background-image: url('../img/apk.png');
  background-size: cover; /* ou contain, mas cover costuma ficar melhor */
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  border: 2px solid #222;
  box-shadow: 0 0 0 2px #212121;
  transition: box-shadow 0.18s;
}
.logo_href:hover {
  box-shadow: 0 0 0 5px #1b1b1b, 0 3px 18px #1115;
}
.download_top p {
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px #000c;
  opacity: 0.95;
}
.category-title {
  font-size: 1.12rem;
  font-weight: 600;
  background: #181818;
  padding: 7px 0 7px 29px;
  border-radius: 10px;
  color: #5be3a1;
  background-image: url('.../img/apk.png');
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 19px;
  box-shadow: 0 1px 5px #0003;
  letter-spacing: .5px;
  margin: 20px 0 8px 0;
}
.heading-line {
  display: block;
  width: 58px;
  height: 2.5px;
  margin: 0 auto 18px auto;
  border-radius: 3px;
  background: linear-gradient(90deg, #5be3a1 40%, #212121 90%);
  border: none;
  opacity: 0.66;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 18px 11px;
  margin-bottom: 8px;
}

.item_download {
  background: #181818;
  border-radius: 14px;
  box-shadow: 0 2px 20px #0005;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 9px 14px 9px;
  min-height: 154px;
  justify-content: center;
  transition: transform 0.10s, box-shadow 0.12s;
  border: 1.5px solid #222;
}
.item_download:hover {
  transform: scale(1.036) translateY(-2px);
  box-shadow: 0 8px 32px #1a1a1ad4;
  border-color: #5be3a1;
}
.img-container {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #111;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1.5px solid #222;
  margin-bottom: 9px;
  box-shadow: 0 1px 4px #0008;
}
.download-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download-info input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  margin-bottom: 7px;
  padding: 0 0 0 0;
  letter-spacing: .2px;
  opacity: .93;
}
.downloading {
  display: flex;
  gap: 7px;
  justify-content: center;
  flex-direction: column;
  gap: 10px; /* espaço entre os botões, aumenta ou diminui se quiser */
  margin-top: 0px;
}
.download-btn {
  background: linear-gradient(90deg, #222 15%, #5be3a1 90%);
  color: #111;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: 0.93rem;
  padding: 6px 13px 6px 13px;
  text-decoration: none;
  box-shadow: 0 2px 10px #5be3a144;
  transition: background .15s, box-shadow .15s, color .1s;
  cursor: pointer;
  outline: none;
}
.download-btn:hover, .download-btn:focus {
  background: linear-gradient(90deg, #5be3a1 0%, #212121 100%);
  color: #212;
  box-shadow: 0 4px 22px #5be3a199;
  border: 1.5px solid #5be3a1;
}

@media (max-width: 660px) {
  .container {
    padding: 11px 0vw 11px 0vw;
  }
  .downloads-grid {
    grid-template-columns: 1fr;
  }
  .item_download {
    min-height: unset;
    padding: 10px 3px;
  }
}
