.main-content {
  padding: 30px 60px;
}

.oportunidades-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-top: 20px;
  margin-left: 40px; /* Mueve todo un poco a la izquierda */
}

.oportunidad-item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px; /* Espacio entre izquierda y derecha */
  width: 100%;
  max-width: 1000px;
}

/* Asegura que ambas tarjetas sean del mismo alto */
.uni-card, .info-card {
  flex: 1;
  height: 100%;
  background: #111729;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease;
}

.uni-card:hover, .info-card:hover {
  transform: scale(1.03);
}

.uni-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.uni-card h3, .info-card h2 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.uni-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff;
  color: #111729;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: .25s ease;
}

.uni-btn:hover {
  background: #dce3f8;
}

.info-card p {
  color: #dcdcdc;
  font-size: 1rem;
}
