.programa {
  display: inline-block;
  width: 300px;           
  height: 350px;         
  margin: 15px;
  padding: 20px;
  background: #111;
  border-radius: 10px;
  border: 1px solid #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  vertical-align: top;
  box-sizing: border-box; 
  overflow: hidden;       
}

.programa:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--verde);
}

.programa img.logo-programa {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 15px;
}

.programa h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.programa p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  overflow: hidden;
}

.descargar {
  display: inline-block;
  padding: 8px 16px;
  background: #00cc66;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.descargar:hover {
  background: #2c6b47;
}
