@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

.descargas-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  max-width: 460px;
  margin: auto;
  font-family: "Rubik", sans-serif;
}

.descargas-box h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.titulo-fino {
  font-weight: 400;
  color: #0f3d63;
}

.descargas-box h3 strong {
  color: #0f3d63;
  font-weight: 700;
}

.scroll-area {
  max-height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
  scrollbar-width: thin;
  scrollbar-color: #a9b4ba #e5e9ec;
}

.scroll-area::-webkit-scrollbar { width: 6px; }
.scroll-area::-webkit-scrollbar-track { background: #e5e9ec; border-radius: 10px; }
.scroll-area::-webkit-scrollbar-thumb { background-color: #a9b4ba; border-radius: 10px; }
.scroll-area::-webkit-scrollbar-thumb:hover { background-color: #8a979d; }

.lista-descargas {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-descargas li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fafb;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 10px;
  gap: 10px;
}

.icono-doc {
  width: 30px;
  min-width: 30px;
  margin-right: 0;
}

.lista-descargas span {
  flex: 1;
  color: #333;
  font-size: 1.05rem;
  text-align: left;
}

.btn-descargar {
  background-color: #6aa57a;
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-descargar:hover {
  background-color: #588c68;
}

@media (max-width: 480px) {
  .descargas-box {
    padding: 22px;
  }

  .lista-descargas li {
    flex-wrap: wrap;
  }

  .btn-descargar {
    width: 100%;
    text-align: center;
  }
}
