.card-programa {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  height: 100%;
  background: #fff;
}

.card-programa:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}

.icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

/* Colores por tipo de programa */
.bg-vacunacion {
  background-color: #e3f2fd;
  color: #1976d2;
}
.bg-asma {
  background-color: #f1f8e9;
  color: #689f38;
}
.bg-diabetes {
  background-color: #fff3e0;
  color: #ef6c00;
}
.bg-otros {
  background-color: #f3e5f5;
  color: #8e24aa;
}

.card-title {
  font-weight: 700;
  color: #334155;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card-text {
  color: #64748b;
  font-size: 0.9rem;
}
