.card-carrera {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.card-carrera:hover { transform: translateY(-5px); }

.card-img-box {
  height: 320px; /* Como pediste: más alto */
  overflow: hidden;
}
.card-img-box img { width: 100%; height: 100%; object-fit: cover; }

.mv-card {
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(229,231,235,.9);
  padding: 30px;
  text-align: center;
}
.mv-icon {
  width: 60px; height: 60px;
  background: rgba(154,46,219,0.1);
  color: var(--primary);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}