body {
  font-family: Arial;
  text-align: center;
}

#resultados {
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

img {
  width: 200px;
  border-radius: 10px;
}

.banner {
  width: 100%;
  background-color: #111; /* fondo oscuro */
  padding: 15px 0;
  display: flex;
  justify-content: center;
}

.logo {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.descarga {
  position: relative;
  display: inline-block;
}

.descarga::after {
  content: "⬇ Descargar";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  transition: 0.3s;
}

.descarga:hover::after {
  opacity: 1;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #f5f5f5;
}

input {
  padding: 10px;
  width: 250px;
}

button {
  padding: 10px 15px;
  cursor: pointer;
}